-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (81 loc) · 1.2 KB
/
Copy pathstyle.css
File metadata and controls
98 lines (81 loc) · 1.2 KB
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
90
91
92
93
94
95
96
97
98
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html {
font-size: 62.5%;
}
body {
background: #F9F4FB;
color: #A54328;
font-size: 1.6rem;
text-align: justify;
}
body, button {
font-family: "Source Serif 4", serif;
}
main {
display: flex;
flex-direction: column;
gap: 3.2rem;
margin-inline: auto;
max-width: 40rem;
padding: 5.4rem 3.7rem;
}
h1, h2 {
font-size: 2.8rem;
line-height: 3.8rem;
}
h1 {
text-align: center;
}
img {
margin-block: 3.2rem;
width: 100%;
}
h2 {
margin-bottom: 3.2rem;
}
ul, ol {
padding-left: 2rem;
}
ul {
margin-bottom: 2.4rem;
}
p, li {
font-size: 1.4rem;
line-height: 1.8rem;
}
button {
background: #A54328;
border: none;
border-radius: 6px;
color: white;
font-size: 1.4rem;
font-weight: 500;
line-height: 2.4rem;
margin-top: 3.2rem;
padding: 1rem 2rem;
}
@media (min-width: 900px) {
main {
flex-direction: row;
max-width: fit-content;
gap: 16rem;
}
main > div {
flex: 1;
max-width: 50rem;
}
h1, h2 {
font-size: 4rem;
line-height: 5rem;
}
p, li {
font-size: 2rem;
line-height: 2.5rem;
}
}