forked from ohemilyy/guildmedia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyless.css
More file actions
112 lines (97 loc) · 2.41 KB
/
Copy pathstyless.css
File metadata and controls
112 lines (97 loc) · 2.41 KB
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
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #0b1120;
background-image: radial-gradient(circle at top, rgba(125, 211, 252, 0.18), transparent 35%), radial-gradient(circle at bottom right, rgba(248, 113, 113, 0.12), transparent 20%), radial-gradient(circle at center, rgba(250, 204, 21, 0.14), transparent 22%), linear-gradient(to bottom, #1f2937 0%, #0b1120 40%, #020617 100%);
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
color: #f8fafc;
text-align: center;
}
header {
padding: 40px 20px;
background: rgba(8, 231, 127, 0.08);
border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}
h1 {
font-size: 48px;
color: #facc15;
text-shadow: 0 0 16px rgba(250, 204, 21, 0.4);
margin-bottom: 10px;
}
h2 {
font-size: 32px;
color: #7dd3fc;
margin-bottom: 16px;
text-shadow: 0 0 8px rgba(125, 211, 252, 0.3);
}
p {
opacity: 0.95;
}
.section {
padding: 40px 20px;
}
.section:nth-child(odd) {
background: rgba(255, 255, 255, 0.02);
}
.section:nth-child(even) {
background: rgba(125, 211, 252, 0.05);
}
.btn {
display: inline-block;
margin: 10px;
padding: 14px 30px;
background: linear-gradient(135deg, #facc15 0%, #f97316 100%);
color: #080808;
border-radius: 10px;
text-decoration: none;
font-weight: bold;
box-shadow: 0 12px 24px rgba(250, 204, 21, 0.18);
transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.btn:hover {
transform: translateY(-2px) scale(1.02);
box-shadow: 0 18px 32px rgba(250, 204, 21, 0.28);
filter: brightness(1.05);
}
iframe {
border-radius: 18px;
margin-top: 20px;
max-width: 100%;
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.card {
background: rgba(15, 23, 42, 0.85);
margin: 20px auto;
padding: 24px;
border-radius: 18px;
max-width: 640px;
border: 1px solid rgba(125, 211, 252, 0.12);
box-shadow: 0 0 25px rgba(34, 211, 238, 0.08);
}
.cta-card {
background: linear-gradient(180deg, rgba(255, 215, 0, 0.18), rgba(15, 23, 42, 0.9));
border: 1px solid rgba(255, 215, 0, 0.28);
}
.cta-card p {
font-size: 18px;
line-height: 1.8;
margin-bottom: 20px;
color: #f8fafc;
}
input, textarea {
width: 90%;
padding: 14px;
margin: 10px 0;
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.1);
background: rgba(15, 23, 42, 0.95);
color: #f8fafc;
}
footer {
padding: 20px;
font-size: 14px;
opacity: 0.75;
color: #cbd5e1;
}