forked from dhairyagothi/100_days_100_web_project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpageloader.css
85 lines (66 loc) · 1.5 KB
/
pageloader.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
*{
margin: 1px;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Poppins', sans-serif;
line-height: 1.6;
background-color: #000000;
color: #ffffff;
display: flex;
flex-direction: column;
min-height: 100vh;
overflow: hidden;
}
.container {
margin: auto;
width: 80%;
max-width: 800px;
padding: 20px;
background-color: #000000;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
/* Navigation styles */
.navbar {
margin-bottom: 20px;
}
.navbar ul {
list-style: none;
padding: 0;
text-align: center;
}
.navbar ul li {
display: inline-block;
margin-right: 20px;
}
.navbar ul li:last-child {
margin-right: 0;
}
.navbar ul li a {
text-decoration: none;
color: #333;
font-weight: bold;
transition: color 0.3s;
}
.navbar ul li a:hover {
color: #555;
}
header, section, footer {
text-align: center;
padding: 40px 0;
}
#loading {
background: url('https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExMm41bHQ1Y2c1YTE2NHc1a2lxMW5tYzV5dGZqN3JhNmpsd3FkYTN1dCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/uIJBFZoOaifHf52MER/giphy.webp');
background-color: rgba(0, 0, 0, 0.8);
background-repeat: no-repeat;
background-position: center;
background-size: 10%;
position: fixed;
z-index: 999;
top: 0;
left: 0;
right: 0;
bottom: 0;
}