-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
90 lines (84 loc) · 1.65 KB
/
App.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
body {
background-image: url('./assets/valley.jpeg');
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
width: 100vw;
margin: 0px;
}
.background {
width: 100vw;
height: 100vh;
background: linear-gradient(75deg, rgb(20, 23, 33) 0%, rgb(20, 23, 33) 50%, rgba(20, 23, 33,0.8) 100%);
/* Vertical center */
display: table-cell;
vertical-align: middle;
}
.form-card {
width: 50%;
max-width: 350px;
padding: 0% 25% 0% 25%;
}
.form-title {
font-size: 42px;
font-family: 'Avenir';
font-weight: 800;
letter-spacing: 0.5px;
color: #e8e8e8;
padding-bottom: 12px;
}
.form-subtitle {
font-size: 18px;
font-family: 'Avenir';
letter-spacing: 0.5px;
color: #afafaf;
padding-bottom: 24px;
}
.auth {
position: relative;
display: inline-block;
width: 100%;
padding-bottom: 12px;
}
.auth-label {
position: absolute;
top: 8px;
left: 18px;
font-size: 11px;
color: rgb(175, 175, 175);
font-family: Avenir;
width: 100px;
}
.auth-input {
background-color: #3e404b;
color: white;
font-family: "Avenir";
outline: none;
border: none;
border-radius: 8px;
padding: 24px 18px 12px 18px;
width: calc(100% - 18px - 18px);
margin-bottom: 12px;
}
.auth-button {
width: 100%;
height: 53px;
color: white;
background-color: #fa541c;
border: none;
outline: none;
border-radius: 8px;
font-family: "Avenir";
cursor: pointer;
transition: all .44s ease;
-webkit-transition: all .44s ease;
-moz-transition: all .44s ease;
}
.auth-button:hover { filter: brightness(145%); }
.chat-wrapper {
height: 80vh;
width: 80%;
margin-left: 10%;
color: white;
background: rgb(43, 47, 60);
}