-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathApp.css
79 lines (70 loc) · 1.19 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
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
.App {
text-align: center;
font-size: 2rem;
font-family: 'Poppins', sans-serif;
background-color: #f6f9fc;
min-height: 100vh;
}
span,
input {
display: block;
}
input,
input::placeholder {
font-size: 1rem;
}
button {
font-size: 1.3rem;
}
.App-logo {
height: 30vmin;
max-height: 80px;
max-width: 80%;
pointer-events: none;
margin: 20px;
}
.App-header {
background-color: #fff;
box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
max-height: 150px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-header-ws {
background-color: #2e2e37;
}
.App-link {
color: #008ad1;
}
.App-body {
padding: 5%;
max-width: 400px;
margin: auto;
}
.App-body > * {
width: 100%;
}
.App-body > * + * {
margin-top: 1em;
}
button {
background: #19305a;
color: #fff;
border: none;
border-radius: 0.3em;
box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.fixed {
width: 96vw;
height: 96vh;
background-color: #000000aa;
color: white;
position: fixed;
top: 2vh;
left: 2vw;
}