-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
141 lines (128 loc) · 2.46 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #1e1e1e;
color: #ffffff;
overflow-x: hidden;
}
header {
background-color: #121212;
padding: 20px;
text-align: center;
}
header h1 {
margin: 0;
}
.content {
padding: 60px;
text-align: center;
position: relative; /* Added position */
overflow: hidden; /* Added overflow */
}
h2 {
font-size: 28px;
}
p {
font-size: 18px;
margin-top: 20px;
}
/* Added styles for blurring the middle part */
.content::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(10px);
z-index: -1;
}
/* Added styles for random color array in the background */
.content::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -2;
background-image: linear-gradient(
45deg,
#ff8a00,
#e52e71,
#0073ff,
#00e0ff,
#44c662,
#ff512f,
#ff6a00
);
opacity: 0.5;
animation: gradientAnimation 20s linear infinite;
pointer-events: none;
}
@keyframes gradientAnimation {
0% {
background-position: 0% 50%;
}
100% {
background-position: 100% 50%;
}
}
button {
background-color: #3498db;
color: #ffffff;
border: none;
padding: 10px 20px;
border-radius: 25px; /* Rounded edge */
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #2980b9;
}
/* Added styles for blurring the footer */
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(10px);
z-index: -1;
}
/* Added styles for random color array in the background */
footer::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -2;
background-image: linear-gradient(
45deg,
#ff8a00,
#e52e71,
#0073ff,
#00e0ff,
#44c662,
#ff512f,
#ff6a00
);
opacity: 0.5;
animation: gradientAnimation 20s linear infinite;
pointer-events: none;
}
footer {
background-color: #121212;
padding: 10px;
text-align: center;
position: absolute;
bottom: 0;
width: 100%;
}