-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (48 loc) · 897 Bytes
/
Copy pathstyle.css
File metadata and controls
58 lines (48 loc) · 897 Bytes
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
body {
display: flex;
background-color: darkgray;
align-items: center;
height: 100vh;
overflow: hidden;
justify-content: center;
}
h1 {
color: white;
display: inline-block;
width: 40vw;
max-width: 100%;
margin: 0 20vw;
animation: grow .5s linear;
transform: scale(1);
}
h1 strong {
color: chartreuse;
text-transform: uppercase;
}
@keyframes grow {
to {
{
transform: scale(10);
opacity: 0;
}
}
}
div {
position: absolute;
bottom: .5em;
background: rgba(0, 0, 0, 0.3);
padding: .6em;
font-size: 1.2em;
color: chartreuse;
}
div input {
color: chartreuse;
text-transform: uppercase;
font-weight: bolder;
font-size: .8em;
width: 4vw;
min-width: 2em;
text-align: center;
background: rgba(0, 0, 0, 0.1);
border: none;
}