-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
113 lines (98 loc) · 1.75 KB
/
Copy pathApp.css
File metadata and controls
113 lines (98 loc) · 1.75 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
.flex-align-center {
display: flex;
align-items: center;
}
.App {
text-align: center;
display: flex;
justify-content: center;
}
.App-logo {
height: 12vmin;
pointer-events: none;
}
.App header {
position: fixed;
width: 80%;
height: 51px;
display: flex;
color: white;
font-size: 20px;
font-weight: 700;
align-items: center;
vertical-align: middle;
justify-content: space-between;
padding: 0 60px 0 60px;
box-sizing: border-box;
}
.App header a {
text-decoration: none;
color: white;
}
.App header :first-child:hover, .App header div div:hover {
color: #00bceb;
text-decoration: underline;
cursor: pointer;
}
.App-main {
background-color: #212529;
height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
background: radial-gradient(#0a0d16, #282c30);
}
.App-main h2 {
margin-bottom: 0;
}
.App-main p {
margin-top: 0;
}
.App-form {
display: flex;
flex-direction: column;
gap: 18px;
}
.App-input {
}
.App-link, .App-input {
text-shadow: none;
text-decoration: none;
border-radius: 9px;
padding: 13px;
text-align: center;
line-height: 100%;
vertical-align: middle;
font-weight: 700;
font-size: 20px;
border: 1px solid #00bceb;
}
.App-link {
background-color: #00bceb;
color: white;
cursor: pointer;
}
.App-emergency {
position: absolute;
bottom: 30px;
left: 30px;
z-index: 10;
text-shadow: none;
text-decoration: none;
border-radius: 9px;
padding: 13px;
text-align: center;
line-height: 100%;
vertical-align: middle;
font-weight: 700;
font-size: 20px;
background-color: #db1550;
border: 1px solid #db1550;
cursor: pointer;
}
.App-link:hover {
}