-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (69 loc) · 1.24 KB
/
style.css
File metadata and controls
82 lines (69 loc) · 1.24 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
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: Georgia, "Palatino Linotype", Palatino, "Book Antiqua", serif;
color: #444;
background: #fff;
min-height: 100vh;
display: flex;
flex-direction: column;
}
main {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
#prompt {
font-size: clamp(1.4rem, 4vw, 2.4rem);
max-width: 36rem;
text-align: center;
line-height: 1.4;
cursor: pointer;
transition: transform 0.3s ease, opacity 0.15s ease;
user-select: none;
-webkit-user-select: none;
}
#prompt:hover {
transform: scale(1.03) rotate(0.4deg);
}
#prompt.spinning,
#prompt.spinning:hover {
opacity: 0.4;
transform: none;
}
footer {
padding: 1.5rem 2rem;
text-align: center;
font-size: 0.85rem;
color: #aaa;
line-height: 2;
}
footer a {
color: #999;
text-decoration: none;
}
footer a:hover {
color: #444;
}
footer .links a + a::before {
content: " · ";
color: #ccc;
}
footer .icons {
margin-top: 0.25rem;
}
footer .icons a {
display: inline-block;
vertical-align: middle;
margin: 0 0.35rem;
}
footer .icons svg {
width: 18px;
height: 18px;
fill: #bbb;
transition: fill 0.2s;
}
footer .icons a:hover svg {
fill: #444;
}