Update style.css
Browse files
style.css
CHANGED
@@ -1,28 +1,63 @@
|
|
1 |
body {
|
2 |
padding: 2rem;
|
3 |
-
font-family:
|
|
|
|
|
4 |
}
|
5 |
|
6 |
h1 {
|
7 |
-
font-size:
|
8 |
margin-top: 0;
|
|
|
|
|
|
|
9 |
}
|
10 |
|
11 |
p {
|
12 |
-
color:
|
13 |
-
font-size:
|
14 |
margin-bottom: 10px;
|
15 |
margin-top: 5px;
|
|
|
16 |
}
|
17 |
|
18 |
.card {
|
19 |
max-width: 620px;
|
20 |
margin: 0 auto;
|
21 |
-
padding:
|
22 |
-
border: 1px solid
|
23 |
border-radius: 16px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
}
|
25 |
|
26 |
.card p:last-child {
|
27 |
margin-bottom: 0;
|
28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
body {
|
2 |
padding: 2rem;
|
3 |
+
font-family: "Orbitron", "Arial", sans-serif;
|
4 |
+
background: radial-gradient(circle, #0f2027, #203a43, #2c5364);
|
5 |
+
color: #e0e0e0;
|
6 |
}
|
7 |
|
8 |
h1 {
|
9 |
+
font-size: 20px;
|
10 |
margin-top: 0;
|
11 |
+
color: #00eaff;
|
12 |
+
text-transform: uppercase;
|
13 |
+
text-shadow: 0 0 8px #00eaff, 0 0 15px #00eaff;
|
14 |
}
|
15 |
|
16 |
p {
|
17 |
+
color: #b0bec5;
|
18 |
+
font-size: 14px;
|
19 |
margin-bottom: 10px;
|
20 |
margin-top: 5px;
|
21 |
+
line-height: 1.6;
|
22 |
}
|
23 |
|
24 |
.card {
|
25 |
max-width: 620px;
|
26 |
margin: 0 auto;
|
27 |
+
padding: 20px;
|
28 |
+
border: 1px solid rgba(0, 255, 255, 0.3);
|
29 |
border-radius: 16px;
|
30 |
+
background: linear-gradient(145deg, #112233, #334455);
|
31 |
+
box-shadow: 0 4px 20px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.1);
|
32 |
+
}
|
33 |
+
|
34 |
+
.card:hover {
|
35 |
+
box-shadow: 0 8px 30px rgba(0, 255, 255, 0.7), inset 0 0 20px rgba(0, 255, 255, 0.2);
|
36 |
+
transform: scale(1.02);
|
37 |
+
transition: all 0.3s ease;
|
38 |
}
|
39 |
|
40 |
.card p:last-child {
|
41 |
margin-bottom: 0;
|
42 |
}
|
43 |
+
|
44 |
+
button {
|
45 |
+
display: block;
|
46 |
+
margin: 20px auto 0;
|
47 |
+
padding: 10px 20px;
|
48 |
+
font-size: 14px;
|
49 |
+
color: #00eaff;
|
50 |
+
background: transparent;
|
51 |
+
border: 2px solid #00eaff;
|
52 |
+
border-radius: 8px;
|
53 |
+
cursor: pointer;
|
54 |
+
text-transform: uppercase;
|
55 |
+
box-shadow: 0 0 10px #00eaff, 0 0 20px rgba(0, 255, 255, 0.5);
|
56 |
+
transition: all 0.3s ease;
|
57 |
+
}
|
58 |
+
|
59 |
+
button:hover {
|
60 |
+
background: #00eaff;
|
61 |
+
color: #0f2027;
|
62 |
+
box-shadow: 0 0 20px #00eaff, 0 0 30px rgba(0, 255, 255, 0.7);
|
63 |
+
}
|