-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
157 lines (141 loc) · 3.05 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/* General Reset */
body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: black;
color: white;
overflow-x: hidden;
}
/* Navigation Bar */
.navbar {
background: black;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
border-bottom: 2px solid rgba(255, 255, 255, 0.1);
position: fixed;
top: 0;
width: 100%;
z-index: 10;
}
.navbar-brand {
font-size: 1.5rem;
font-weight: bold;
}
.navbar-links .btn {
margin-left: 15px;
background: transparent;
color: white;
border: 1px solid rgba(255, 255, 255, 0.5);
border-radius: 5px;
padding: 5px 15px;
cursor: pointer;
transition: all 0.3s ease;
}
.navbar-links .btn:hover {
background: rgba(255, 255, 255, 0.5);
color: black;
}
/* Rainbow Glow Button */
.btn-rainbow {
position: relative;
background: black;
color: white;
border: 2px solid transparent;
padding: 10px 20px;
font-size: 1rem;
cursor: pointer;
border-radius: 5px;
overflow: hidden;
z-index: 1;
}
.btn-rainbow::before {
content: "";
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
z-index: -1;
background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
background-size: 200%;
animation: rainbowGlow 4s infinite linear;
border-radius: 7px;
}
@keyframes rainbowGlow {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
/* Hero Section */
.hero {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
background: linear-gradient(145deg, #000, #1a1a1a);
position: relative;
}
.hero-content {
position: relative;
z-index: 2;
max-width: 600px;
text-align: center;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 20px;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 20px;
}
.btn-primary {
background: black;
color: white;
border: 2px solid white;
padding: 10px 20px;
font-size: 1rem;
cursor: pointer;
border-radius: 5px;
transition: all 0.3s ease;
}
.btn-primary:hover {
background: white;
color: black;
}
/* Slime Background */
.slime-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: radial-gradient(circle, rgba(50, 205, 50, 0.2) 20%, transparent 80%),
radial-gradient(circle, rgba(34, 139, 34, 0.2) 15%, transparent 85%);
background-size: 300px 300px;
background-position: center;
opacity: 0.8;
z-index: 1;
filter: blur(10px);
}
/* Animated Rainbow Text */
.animated-rainbow {
font-size: 1.5rem;
font-weight: bold;
background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: rainbowGlow 5s infinite linear;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* Rainbow Animation */
@keyframes rainbowGlow {
0% { background-position: 0%; }
50% { background-position: 100%; }
100% { background-position: 0%; }
}