-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (56 loc) · 1.13 KB
/
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
* {
margin: 0px;
padding: 0px;
}
body {
background-image: radial-gradient(circle, #de6262, #ffb88c);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
div {
border-radius: 50%;
background-color: lightblue;
padding: 100px 50px;
margin: 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-wrap: wrap;
max-width: 500px;
max-height: 500px;
}
div ol {
padding: 25px;
display: flex;
flex-direction: column;
align-items: left;
}
div ol h1 {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
color: darkred;
}
div ol li {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
color: midnightblue;
font-size: larger;
padding: 5px;
margin-left: 20px;
}
@media only screen and (max-width: 480px) {
div {
padding: 40px;
margin: 15px;
}
div ol li,
h1 {
font-size: medium;
margin: 0px;
padding: 5px;
}
}