-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
84 lines (70 loc) · 1.47 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
75
76
77
78
79
80
81
82
83
84
h1, h2, p, li, ul, body, a {
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: #f6e0c3;
color: #29103b;
padding: 120px;
}
body.isDark, body.isDark a, body.isDark h1 {
color: rgba(255, 255, 255, .87);
border-bottom-color: rgba(255, 255, 255, .87);
}
body.isLight, body.isLight a, body.isLight h1 {
color: rgba(0, 0, 0, .87);
border-bottom-color: rgba(0, 0, 0, .87);
}
body.isClickable img {
cursor: pointer;
}
body, header, section, footer {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-column-gap: 30px;
grid-row-gap: 30px;
}
header, section, footer {
grid-column: 1/-1;
margin: 10px 0 10px 0;
}
header {
padding-bottom: 120px;
}
@media only screen and (max-width: 700px) {
body, header, section, footer {
grid-template-columns: 1fr;
}
body {
padding: 30px;
}
}
h1, h2, p, li, a {
font-size: 17px;
font-weight: normal;
line-height: 1.5;
}
a {
color: #29103b;
border-bottom: #29103b solid 1px;
transition: opacity 0.2s ease-in-out;
}
a:hover, a:focus {
outline: none;
opacity: 0.5;
}
.wide, img, video {
grid-column: 1/-1;
width: 100%;
justify-self: center;
margin-top: 60px;
}
.wide {
background: #334cfb;
height: 450px;
}