-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·74 lines (63 loc) · 1.17 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
@import "reset.css";
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap');
html {
background-color: #f9faff;
}
h1 {
margin: 0;
}
.title {
padding: 40px 0 10px 0;
text-align: center;
font-size: 26px;
font-weight: 600;
}
.container {
font-family: 'Lexend', sans-serif;
max-width: 600px;
margin: 0 auto;
padding: 20px 40px;
}
li {
padding: 20px;
margin: 10px 0;
}
p {
padding: 20px 0;
}
.images {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.images img:hover {
cursor: pointer;
position: relative;
top: 1px;
}
#loader-wrapper {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
background-color: rgba(255,255,255,0.8);
}
#loader {
border: 16px solid #f3f3f3;
border-top: 16px solid #3498db;
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
position: absolute;
top: 50%;
left: 50%;
margin-top: -60px;
margin-left: -60px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}