-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (42 loc) · 823 Bytes
/
Copy pathstyle.css
File metadata and controls
50 lines (42 loc) · 823 Bytes
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
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
font-family: "Poppins", sans-serif;
color: black;
margin: 0;
box-sizing: border-box;
}
html{
background-color: #444444;
}
body {
border-radius: 7px;
padding: 20px;
display: flex;
flex-direction: column;
align-items: first baseline;
justify-content: center;
gap: 10px;
width: 600px;
margin: 0 auto;
background: #ff9500;
padding: 10px 10px 10px 10px;
}
p {
padding: 10px 20px;
/* color: blue; */
background-color: #f1f1f1;
/* width: 600px; */
/* border: 1px solid black; */
border-radius: 10px;
}
h4 {
font-size: 18px;
font-weight: 600;
/* width: 600px; */
}
ol {
/* width: 500px; */
}
li {
font-weight: 400;
}