-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
style.css
86 lines (70 loc) · 963 Bytes
/
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
html, body {
background-color: black;
color: white;
font-family: helvetica, arial, sans-serif;
font-size: 14px;
line-height: 1.5;
margin: 0;
padding: 0;
}
.container {
margin: 0 auto;
max-width: 768px;
padding: 20px 5%;
}
section {
background-color: #171717;
}
h1, h2 {
line-height: 1;
text-transform: uppercase;
}
h2 {
margin-top: 40px;
}
h2:first-of-type {
margin-top: 20px;
}
.logo {
display: block;
}
img {
height: auto;
max-width: 100%;
}
.logo img {
width: 500px;
}
@media all and (max-width: 768px) {
.logo img {
width: 450px;
}
}
@media all and (max-width: 479px) {
.logo img {
width: 350px;
}
}
.icon.heart {
color: lightcoral;
}
a {
color: aquamarine;
font-weight: bold;
}
a:hover, a:active {
color: mediumaquamarine;
}
a code {
color: black;
}
code {
background-color: aquamarine;
color: black;
font-family: monospace;
padding: 1px;
user-select: all;
}
code.image {
background-color: lightyellow;
}