-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (85 loc) · 1.46 KB
/
style.css
File metadata and controls
105 lines (85 loc) · 1.46 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
99
100
101
102
103
104
105
* {
font-family: 'Poppins', sans-serif;
}
body {
background-color: #FAF1E4;
display: flex;
justify-content: center;
align-items: center;
}
.links {
color: #435334;
}
.links ul {
list-style: none;
padding: 0;
width: 100%;
}
.links ul li {
padding: 5px;
cursor: pointer;
}
.links ul li:hover {
background-color: #ffecd2;
color: #435334;
}
i {
margin-right: 5px;
}
a {
text-decoration: none;
color: #435334;
font-weight: 600;
}
.links ul li a:hover {
color: #435334;
}
p {
font-size: 18px;
font-style: italic;
font-weight: 200;
margin: 0;
}
h1 {
color: #435334;
text-align: center;
font-size: 70px;
margin-bottom: 0;
padding: 0;
}
@media only screen and (max-width: 767px) {
h1 {
font-size: 52px;
}
}
@media only screen and (max-width: 425px) {
h1 {
font-size: 38px;
}
a {
font-size: 18px;
}
p {
font-size: 14px;
}
}
.popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 300px;
padding: 20px;
background-color: #fff;
border: 1px solid #ccc;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
z-index: 9999;
}
.material-symbols-outlined {
font-variation-settings:
'FILL' 0,
'wght' 400,
'GRAD' 0,
'opsz' 24
}