-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (94 loc) · 1.49 KB
/
style.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
html {
line-height: 1.15;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
font-family: Seravek, "Gill Sans Nova", Ubuntu, Calibri, "DejaVu Sans", source-sans-pro, sans-serif;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #031a50;
color: #ffffff;
}
}
a {
color: #fff;
text-decoration: none;
}
h1,
p {
margin: 0;
padding: 0;
text-align: center;
}
h1 {
font-size: 3rem;
line-height: 1;
}
p {
font-size: 2rem;
font-weight: 300;
letter-spacing: -0.25px;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
max-width: 640px;
margin: 0 auto;
}
#app {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
margin-top: 2.5rem;
padding: 0 1rem;
}
section {
display: flex;
margin-top: 2rem;
}
button {
font-size: 1.55rem;
font-family: inherit;
line-height: 1.15;
margin: 0 0.5rem;
cursor: pointer;
border-radius: 6px;
background: #003b8f;
color: #b7d5ff;
border: 1px solid #084c86;
padding: 1rem;
transition: background 100ms ease-in-out;
min-width: 150px;
}
button:hover {
background: #0a3c81;
}
.fadeIn {
animation: fadeInAnimation 0.5s ease-in;
}
@keyframes fadeInAnimation {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeOut {
animation: fadeOutAnimation 0.5s ease-in;
}
@keyframes fadeOutAnimation {
from {
opacity: 1;
}
to {
opacity: 0;
}
}