-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
86 lines (74 loc) · 1.81 KB
/
styles.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
/* Global Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #1f1f1f;
color: #fff;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
position: absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
z-index: 1;
background-color: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(10px);
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
/* Navigation Styles */
nav {
background-color: rgba(0, 0, 0, 0.8);
padding: 10px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
justify-content: space-around;
}
nav ul li {
margin-right: 10px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
/* Homepage Styles */
body.index {
background-image: url("https://media1.giphy.com/media/l1Kdd40otLiszFTMs/giphy.gif?ep=v1_gifs_related");
background-size: cover;
background-position: top;
}
/* Achievements Page Styles */
body.index_1 {
background-image: url("https://media1.giphy.com/media/3ohs7R2GceFRJfCKqs/giphy.gif?ep=v1_gifs_related");
background-size: cover;
background-position: top;
}
/* About Me Page Styles */
body.index_2 {
background-image: url("https://66.media.tumblr.com/99818963a48628f26e5cedb153898934/tumblr_p5977kGA9j1x6ms67o5_500.gif");
background-size: cover;
background-position: top;
}
/* More Page Styles */
body.index_3 {
background-image: url("https://media1.giphy.com/media/l1Kdd40otLiszFTMs/giphy.gif?ep=v1_gifs_related");
background-size: cover;
background-position: top;
}
/* Footer Styles */
footer {
margin-top: 20px;
text-align: center;
color: #888;
}
footer p {
font-size: 12px;
}