-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (71 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
*,
*::after,
*::before,
html,
body {
margin: 0;
padding: 0;
box-sizing: border-box;
border: 0;
font-family: "Sofia Sans", sans-serif;
line-height: 1.7;
-webkit-font-smoothing: antialiased;
text-decoration: none;
}
body,
html {
background-color: #201f2b;
color: color;
}
ul,
li {
list-style: none;
}
img {
display: block;
max-width: 100%;
}
h1 {
font-weight: 800;
font-size: min(2rem, 5vw);
text-align: center;
}
h2 {
font-weight: 500;
font-size: min(1.6rem, 4vw);
}
main {
width: 100%;
padding: 24px 0;
display: flex;
justify-content: center;
align-items: center;
background: url("./images/light.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
article {
min-width: 90%;
padding: 24px;
display: flex;
flex-direction: column;
gap: 1rem;
border-radius: 26px;
background-color: #a3a090a4;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.102);
backdrop-filter: blur(10px);
color: #000000;
}
section ul {
margin: 0 24px;
}
section ul li {
list-style: decimal;
font-weight: 400;
font-size: min(1.1rem, 3vw);
}
section ul li:hover {
color: #ffffff;
cursor: default;
}