-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
162 lines (136 loc) · 3.54 KB
/
style.css
File metadata and controls
162 lines (136 loc) · 3.54 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
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
:root {
--glass: rgba(255,255,255,0.15);
--border: rgba(255,255,255,0.25);
--blur: blur(18px);
}
* { box-sizing: border-box; font-family: system-ui; }
body {
margin:0; color:white;
}
.bg {
position:fixed; inset:0;
background: linear-gradient(120deg,#0f2027,#203a43,#2c5364);
z-index:-1;
}
.glass {
background:var(--glass);
backdrop-filter:var(--blur);
border:1px solid var(--border);
border-radius:20px;
}
.topbar {
display:flex; justify-content:space-between;
padding:15px 25px;
}
.center {
text-align:center;
margin:40px auto;
padding:30px;
width:60%;
}
#time { font-size:4rem; margin:0; }
.search {
display:flex; gap:10px; margin-top:20px;
}
.search input, select {
padding:12px; border-radius:12px; border:none;
}
.widgets {
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px; padding:20px;
}
.card { padding:15px; }
.grid {
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px;
}
.drawer {
position:fixed; top:70px; right:20px;
padding:20px; width:200px;
}
.hidden { display:none; }
ul { list-style:none; padding:0; }
li { cursor:pointer; padding:4px 0; }
/* OVERRIDE WITH FUTURISTIC THEME */
/* NEON-GLASS FUTURISTIC THEME INJECTED BY MASTER BOT */
:root {
--glass-bg: rgba(255, 255, 255, 0.05);
--glass-border: rgba(255, 255, 255, 0.1);
--neon-cyan: #00f3ff;
--neon-purple: #bc13fe;
--deep-space: #050510;
--text-glow: 0 0 10px rgba(0, 243, 255, 0.5);
}
body {
background-color: var(--deep-space);
color: #e0e0ff;
font-family: 'Inter', 'Roboto', sans-serif;
background-image:
radial-gradient(circle at 15% 50%, rgba(188, 19, 254, 0.1), transparent 25%),
radial-gradient(circle at 85% 30%, rgba(0, 243, 255, 0.1), transparent 25%);
min-height: 100vh;
margin: 0;
overflow-x: hidden;
}
/* Glassmorphism Containers */
.card, .container, section, header, footer, div[class*="box"], div[class*="wrapper"] {
background: var(--glass-bg);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid var(--glass-border);
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
border-radius: 16px;
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
/* Hover Effects */
.card:hover, .container:hover, button:hover {
transform: translateY(-5px) scale(1.02);
box-shadow: 0 12px 40px 0 rgba(0, 243, 255, 0.2);
border-color: var(--neon-cyan);
}
/* Futuristic Buttons */
button, .btn, a.button {
background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
border: 1px solid var(--neon-cyan);
color: var(--neon-cyan);
padding: 12px 24px;
border-radius: 8px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
text-shadow: 0 0 5px var(--neon-cyan);
}
button:hover, .btn:hover {
background: var(--neon-cyan);
color: var(--deep-space);
box-shadow: 0 0 20px var(--neon-cyan);
}
/* Text Glow */
h1, h2, h3, h4, h5, h6 {
text-transform: uppercase;
letter-spacing: 2px;
background: linear-gradient(90deg, #fff, #aaa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0px 0px 15px rgba(255,255,255,0.3);
}
/* Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: var(--deep-space);
}
::-webkit-scrollbar-thumb {
background: var(--neon-purple);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--neon-cyan);
}