-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
172 lines (152 loc) · 3.42 KB
/
main.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/* General Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', sans-serif;
background-color: #1e1e1e;
color: #e0e0e0;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
header {
text-align: center;
margin-bottom: 40px;
}
header h1 {
font-size: 2.8rem;
color: #00ff90;
margin-bottom: 10px;
text-shadow: 0 0 5px #00ff90;
}
.quote {
font-size: 1.2rem;
font-style: italic;
color: #bbb;
}
.cta-button {
display: inline-block;
margin-top: 20px;
padding: 15px 30px;
background-color: #ff007f;
color: #fff;
border-radius: 10px;
text-decoration: none;
font-size: 1.2rem;
font-weight: bold;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-button:hover {
background-color: #e6006c;
transform: scale(1.05);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2), 0 0 3px #ff007f;
}
/* Highlight Announcement */
.highlight-announcement {
background-color: #282c34;
color: #39ff14;
padding: 15px;
text-align: center;
font-weight: bold;
border-radius: 10px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
margin-bottom: 20px;
position: relative;
overflow: hidden;
}
.highlight-announcement marquee {
font-size: 1.2rem;
font-weight: bold;
color: #39ff14;
}
.new-badge {
background-color: #ff007f;
color: white;
padding: 6px 10px;
border-radius: 8px;
font-size: 0.8rem;
font-weight: bold;
position: absolute;
top: -10px;
left: -25px;
transform: rotate(-15deg);
box-shadow: 0 0 5px rgba(255, 0, 127, 0.4);
}
/* Highlighted Feature */
.highlighted-feature {
font-size: 1.2rem;
color: #39ff14;
position: relative;
padding: 10px 20px;
border-radius: 10px;
transition: color 0.3s ease, background-color 0.3s ease;
list-style: none;
background-color: rgba(0, 255, 144, 0.1);
box-shadow: 0 3px 6px rgba(0, 255, 144, 0.2);
}
.highlighted-feature:hover {
color: rgb(255, 0, 128);
background-color: rgba(255, 0, 127, 0.4);
box-shadow: none;
}
.highlighted-feature sub {
font-size: 1.2rem;
color: white;
}
/* Features and Future Plans Sections */
.features, .future-plans {
background-color: #2a2a2a;
padding: 20px;
border-radius: 15px;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
margin-bottom: 20px;
}
.features h2, .future-plans h2 {
font-size: 1.8rem;
margin-bottom: 10px;
color: #00ff90;
text-shadow: 0 0 5px #00ff90;
}
.features ul, .future-plans ul {
list-style: none;
padding: 0;
}
.features li, .future-plans li {
margin-bottom: 15px;
font-size: 1.1rem;
color: #e0e0e0;
position: relative;
padding: 10px 20px;
border-radius: 10px;
transition: background-color 0.3s ease;
background-color: rgba(255, 0, 127, 0.1);
box-shadow: 0 3px 6px rgba(0, 255, 144, 0.1);
}
.features li:hover, .future-plans li:hover {
color: #e0e0e0;
background-color: rgba(0, 255, 144, 0.2);
box-shadow: none;
}
footer {
text-align: center;
margin-top: 40px;
}
footer p {
font-size: 1rem;
color: #bbb;
}
/* .welcome-text {
color: #add8e6;
text-shadow: 0 0 5px #add8e6;
}
header h1 {
font-size: 2.8rem;
color: #0000ff;
margin-bottom: 10px;
text-shadow: 0 0 5px #0000ff;
} */