-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
styles.css
61 lines (51 loc) · 815 Bytes
/
styles.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
.intro {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.intro h1 {
font-size: 2em;
}
.app {
display: none;
}
body {
font-family: monospace;
font-weight: 800;
margin: 0;
}
button {
font-family: monospace;
border: 2px solid rgb(34, 39, 63);
background: none;
border-radius: 3px;
font-size: 1.2em;
padding: .5em 1em;
cursor: pointer;
}
p {
font-size: 1.2em;
}
.blink-me {
font-size: 1.5em;
animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
.data {
font-size: 1.5em;
overflow-y: scroll;
height: 90vh;
padding: 1em;
}
footer {
position: absolute;
bottom: 1em;
text-align: center;
width: 100%;
}