-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (106 loc) · 1.97 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
body {
font-family: 'Comic Sans MS', cursive;
background-color: #ff00ff;
color: #00ff00;
margin: 0;
padding: 0;
overflow-x: hidden;
}
#background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
header {
background-color: #ffff00;
padding: 20px;
text-align: center;
}
h1 {
font-size: 48px;
text-shadow: 2px 2px #ff0000;
}
main {
padding: 20px;
}
#wallpapers {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.wallpaper {
margin: 20px;
text-align: center;
}
.wallpaper img {
width: 200px;
height: 150px;
border: 5px solid #00ffff;
box-shadow: 0 0 10px #ff00ff;
}
.wallpaper a {
display: block;
margin-top: 10px;
padding: 5px 10px;
background-color: #ff6600;
color: #ffffff;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}
.wallpaper a:hover {
background-color: #ff9900;
}
footer {
background-color: #00ff00;
color: #ff00ff;
padding: 10px;
text-align: center;
}
.footer-content {
margin-top: 20px;
font-size: 14px;
}
.project-list {
list-style-type: none;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
margin-top: 10px;
}
.project-list li {
max-width: 80%;
}
.project-list a {
color: #0000ff;
text-decoration: none;
font-weight: bold;
}
.project-list a:hover {
text-decoration: underline;
color: #ff00ff;
}
@keyframes sparkle {
0% { transform: scale(0); opacity: 0; }
50% { transform: scale(1); opacity: 1; }
100% { transform: scale(0); opacity: 0; }
}
.sparkle {
position: fixed;
width: 5px;
height: 5px;
background-color: #ffffff;
border-radius: 50%;
pointer-events: none;
animation: sparkle linear infinite;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
// ... existing styles ...