-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (77 loc) · 1.31 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
* {
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
body {
background: url(/texture.png), #e2dfd6;
font-family: 'Inconsolata', monospace;
margin: 0;
}
main {
width: min(810px, 100%);
margin: 0 auto;
margin-top: 60px;
padding: 60px;
background: #ffffff80;
box-shadow: 0px 6px 8px #00000059;
}
h1 {
font-size: 2.375em;
margin: 0;
margin-bottom: 16px;
}
h2 {
font-weight: normal;
font-size: 1.375em;
margin: 0;
margin-bottom: 30px;
line-height: 1.4;
}
p {
margin: 0;
margin-top: 16px;
line-height: 1.5;
}
a.button {
background: linear-gradient(180deg, #bae1f1 0%, #93bdee 100%);
box-shadow: 0px 4px 4px #003c8366;
padding: 10px 20px;
color: #000000;
font-weight: bold;
text-decoration: none;
display: inline-block;
margin-top: 30px;
user-select: none;
}
a.button:active {
box-shadow: inset 0px 4px 8px #003c8366;
background: linear-gradient(180deg, #93bdee 0%, #bae1f1 100%);
}
.badges {
margin: 30px 0;
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
gap: 2px;
user-select: none;
}
.badges div {
display: flex;
flex-direction: column;
gap: 1px;
}
.badges img {
image-rendering: pixelated;
display: block;
}
#quote {
margin: 30px 0;
text-align: center;
}
@media (max-width: 810px) {
main {
margin-top: 0;
padding: 60px 30px;
}
}