-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
74 lines (63 loc) · 1.17 KB
/
styles.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
/* latin */
@font-face {
font-family: "Roboto";
font-style: normal;
font-weight: 400;
font-display: swap;
src: local("Roboto"), local("Roboto-Regular"),
url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.woff2)
format("woff2");
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
body {
font-family: "Roboto", sans-serif;
font-size: 18px;
}
h1,
h2,
h3,
h4,
h5 {
font-family: Helvetica, "Roboto", sans-serif;
}
h1 {
font-size: 2.5rem;
}
header {
margin-top: 50px;
display: grid;
grid-template-columns: 1fr 250px;
grid-gap: 30px;
}
header,
main {
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
header > img {
border-radius: 150px;
box-shadow: 0px 0px 15px 5px #3f3334;
}
footer > p {
margin: auto;
width: fit-content;
}
@media (prefers-color-scheme: dark) {
html {
background-color: #1f262f;
color: #dedede;
}
header > img {
border-radius: 150px;
box-shadow: 0px 0px 15px 5px #4e626f;
}
a {
color: #80d8ec;
}
a:visited {
color: #e89f51;
}
}