pvanand commited on
Commit
2fb6b2c
·
verified ·
1 Parent(s): a702d0a

Delete style.css

Browse files
Files changed (1) hide show
  1. style.css +0 -280
style.css DELETED
@@ -1,280 +0,0 @@
1
- :root {
2
- --primary-color: #00ff00;
3
- --bg-dark: #0a0a0a;
4
- --card-bg: #1a1a1a;
5
- --text-main: #ffffff;
6
- --text-dim: #888888;
7
- --border-color: #333333;
8
- --accent-glow: rgba(0, 255, 0, 0.2);
9
- }
10
-
11
- * {
12
- box-sizing: border-box;
13
- margin: 0;
14
- padding: 0;
15
- }
16
-
17
- body {
18
- font-family: 'Inter', sans-serif;
19
- background-color: var(--bg-dark);
20
- color: var(--text-main);
21
- line-height: 1.6;
22
- min-height: 100vh;
23
- }
24
-
25
- .container {
26
- max-width: 1200px;
27
- margin: 0 auto;
28
- padding: 2rem;
29
- }
30
-
31
- header {
32
- margin-bottom: 2rem;
33
- display: flex;
34
- justify-content: space-between;
35
- align-items: flex-end;
36
- }
37
-
38
- header h1 {
39
- font-family: 'Outfit', sans-serif;
40
- font-size: 3.5rem;
41
- color: var(--primary-color);
42
- letter-spacing: -2px;
43
- }
44
-
45
- .nav-buttons {
46
- display: flex;
47
- gap: 1rem;
48
- margin-bottom: 1rem;
49
- }
50
-
51
- .nav-btn {
52
- background: transparent;
53
- border: 1px solid var(--border-color);
54
- color: var(--text-dim);
55
- padding: 0.5rem 1rem;
56
- font-size: 0.8rem;
57
- cursor: pointer;
58
- transition: all 0.3s;
59
- }
60
-
61
- .nav-btn.active {
62
- background: var(--card-bg);
63
- color: var(--text-main);
64
- border-color: var(--text-main);
65
- }
66
-
67
- .subtitle {
68
- color: var(--text-dim);
69
- font-size: 0.9rem;
70
- margin-bottom: 2rem;
71
- padding-bottom: 1rem;
72
- border-bottom: 1px solid var(--border-color);
73
- }
74
-
75
- .dashboard-grid {
76
- display: grid;
77
- grid-template-columns: 1fr 1fr;
78
- gap: 2rem;
79
- }
80
-
81
- .config-column {
82
- display: flex;
83
- flex-direction: column;
84
- gap: 1rem;
85
- }
86
-
87
- .card {
88
- background: var(--card-bg);
89
- border: 1px solid var(--border-color);
90
- padding: 1.5rem;
91
- border-radius: 4px;
92
- }
93
-
94
- .card h2 {
95
- font-size: 0.8rem;
96
- text-transform: uppercase;
97
- color: var(--text-dim);
98
- margin-bottom: 1rem;
99
- letter-spacing: 1px;
100
- }
101
-
102
- .input-grid {
103
- display: grid;
104
- grid-template-columns: repeat(2, 1fr);
105
- gap: 1rem;
106
- }
107
-
108
- .input-group {
109
- display: flex;
110
- flex-direction: column;
111
- gap: 0.5rem;
112
- }
113
-
114
- .input-group label {
115
- font-size: 0.75rem;
116
- color: var(--text-dim);
117
- text-transform: uppercase;
118
- }
119
-
120
- .input-wrapper {
121
- display: flex;
122
- align-items: center;
123
- background: #111;
124
- border: 1px solid var(--border-color);
125
- padding: 0.5rem;
126
- border-radius: 4px;
127
- }
128
-
129
- .input-wrapper input {
130
- background: transparent;
131
- border: none;
132
- color: white;
133
- font-size: 1.2rem;
134
- width: 100%;
135
- outline: none;
136
- }
137
-
138
- #calculate-btn {
139
- margin-top: 1rem;
140
- background: var(--primary-color);
141
- color: black;
142
- border: none;
143
- padding: 1rem;
144
- font-weight: bold;
145
- text-transform: uppercase;
146
- cursor: pointer;
147
- transition: filter 0.3s;
148
- }
149
-
150
- #calculate-btn:hover {
151
- filter: brightness(1.2);
152
- }
153
-
154
- /* Results Column */
155
- .visuals-column {
156
- display: flex;
157
- flex-direction: column;
158
- gap: 1.5rem;
159
- }
160
-
161
- .usage-bars {
162
- display: flex;
163
- flex-direction: column;
164
- gap: 1rem;
165
- }
166
-
167
- .bar-item {
168
- display: flex;
169
- flex-direction: column;
170
- gap: 0.25rem;
171
- }
172
-
173
- .bar-info {
174
- display: flex;
175
- justify-content: space-between;
176
- font-size: 0.8rem;
177
- }
178
-
179
- .bar-track {
180
- height: 4px;
181
- background: #222;
182
- width: 100%;
183
- border-radius: 2px;
184
- }
185
-
186
- .bar-fill {
187
- height: 100%;
188
- background: var(--primary-color);
189
- width: 0%;
190
- transition: width 1s ease-out;
191
- }
192
-
193
- .projection-section {
194
- margin-top: 1rem;
195
- }
196
-
197
- .projection-table {
198
- width: 100%;
199
- border-collapse: collapse;
200
- font-size: 0.85rem;
201
- }
202
-
203
- .projection-table th {
204
- text-align: left;
205
- color: var(--text-dim);
206
- padding: 0.5rem 0;
207
- font-weight: normal;
208
- }
209
-
210
- .projection-table td {
211
- padding: 0.75rem 0;
212
- border-bottom: 1px solid var(--border-color);
213
- }
214
-
215
- .summary-visual {
216
- position: relative;
217
- background: #111;
218
- border-radius: 4px;
219
- overflow: hidden;
220
- aspect-ratio: 16/10;
221
- }
222
-
223
- .summary-visual img {
224
- width: 100%;
225
- height: 100%;
226
- object-fit: cover;
227
- opacity: 0.6;
228
- }
229
-
230
- .summary-overlay {
231
- position: absolute;
232
- top: 0;
233
- left: 0;
234
- width: 100%;
235
- height: 100%;
236
- padding: 2rem;
237
- display: flex;
238
- flex-direction: column;
239
- justify-content: space-between;
240
- background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
241
- }
242
-
243
- .overall-stat {
244
- display: flex;
245
- gap: 2rem;
246
- }
247
-
248
- .stat-box h4 {
249
- font-size: 0.7rem;
250
- text-transform: uppercase;
251
- color: var(--text-dim);
252
- }
253
-
254
- .stat-box p {
255
- font-size: 1.5rem;
256
- font-weight: bold;
257
- }
258
-
259
- .survival-big {
260
- margin-top: auto;
261
- }
262
-
263
- .survival-big h3 {
264
- font-size: 0.7rem;
265
- text-transform: uppercase;
266
- color: var(--text-dim);
267
- }
268
-
269
- .survival-big span {
270
- font-size: 4rem;
271
- display: block;
272
- line-height: 1;
273
- font-weight: 800;
274
- }
275
-
276
- @media (max-width: 900px) {
277
- .dashboard-grid {
278
- grid-template-columns: 1fr;
279
- }
280
- }