-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
68 lines (62 loc) · 1.24 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
html,
body {
-webkit-tap-highlight-color: transparent;
margin: 0;
padding: 0;
background: #252525;
color: #fff;
font-size: 16px;
line-height: 1.4;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
"Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
main {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
text-align: center;
padding: 20px;
}
#title {
padding: 20vh 20px;
text-align: center;
}
.shuffler.fixed {
position: fixed;
bottom: 10vh;
left: 25vw;
}
.shuffler {
width: 50vw;
background: red;
border-radius: 32px;
color: #fff;
border: 0;
padding: 12px 20px;
font-weight: bold;
font-size: 20px;
cursor: pointer;
box-shadow: 0 8px 0 rgb(183, 9, 0), 0 15px 20px rgba(0, 0, 0, 0.35);
transition: all 0.2s;
}
.shuffler:active {
box-shadow: 0 5px 0 rgb(183, 9, 0), 0 10px 20px rgba(0, 0, 0, 0.35);
transform: translateY(5px);
}
svg {
display: inline-block;
height: 12px;
width: auto;
}
a {
color: #aaa;
text-decoration: none;
border-bottom: 1px solid currentColor;
}
small {
color: #757575;
padding: 8px;
width: calc(100% - 16px);
}