cr8 commited on
Commit
a62fe83
·
verified ·
1 Parent(s): b78851e

Delete styles.css

Browse files
Files changed (1) hide show
  1. styles.css +0 -155
styles.css DELETED
@@ -1,155 +0,0 @@
1
- body {
2
- margin: 0;
3
- padding: 0;
4
- background: linear-gradient(45deg, #0a0a1f, #1a1a3a), radial-gradient(circle at top left, rgba(255, 0, 136, 0.2), transparent 50%), radial-gradient(circle at bottom right, rgba(0, 219, 255, 0.2), transparent 50%);
5
- background-blend-mode: overlay;
6
- font-family: 'Impact', sans-serif; /* Fallback; use 'Fugaz One' in GitHub */
7
- color: #fff;
8
- }
9
-
10
- .container {
11
- max-width: 1200px;
12
- margin: 0 auto;
13
- padding: 40px 20px;
14
- }
15
-
16
- .header {
17
- font-size: 5em;
18
- text-align: center;
19
- color: #ff0088;
20
- -webkit-text-stroke: 2px #00dbff;
21
- text-shadow: 0 0 10px #00dbff;
22
- letter-spacing: 4px;
23
- margin: 0 0 20px;
24
- text-transform: uppercase;
25
- }
26
-
27
- .tagline {
28
- text-align: center;
29
- font-size: 1.6em;
30
- color: #00dbff;
31
- text-shadow: 0 0 5px #ff0088;
32
- margin-bottom: 40px;
33
- text-transform: uppercase;
34
- }
35
-
36
- .card-flow {
37
- display: flex;
38
- flex-direction: column;
39
- gap: 30px;
40
- align-items: center;
41
- }
42
-
43
- .card {
44
- width: 320px;
45
- padding: 25px;
46
- background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
47
- border: 3px solid #ff0088;
48
- border-radius: 12px;
49
- box-shadow: 0 0 15px rgba(255, 0, 136, 0.5);
50
- transform: rotate(-1deg);
51
- transition: transform 0.3s, box-shadow 0.3s;
52
- }
53
-
54
- .card:nth-child(even) {
55
- transform: rotate(1deg);
56
- }
57
-
58
- .card:hover {
59
- transform: scale(1.03) rotate(0deg);
60
- box-shadow: 0 0 25px rgba(0, 219, 255, 0.6);
61
- }
62
-
63
- .card-3 {
64
- width: 450px;
65
- }
66
-
67
- h2 {
68
- font-size: 2.5em;
69
- color: #00dbff;
70
- -webkit-text-stroke: 1px #ff0088;
71
- text-shadow: 0 0 5px #ff0088;
72
- margin: 0 0 10px;
73
- text-transform: uppercase;
74
- }
75
-
76
- p {
77
- font-size: 1.2em;
78
- color: #fff;
79
- margin: 0 0 15px;
80
- text-shadow: 0 0 3px #00dbff;
81
- }
82
-
83
- select, input[type="file"] {
84
- width: 100%;
85
- padding: 12px;
86
- background: #0a0a15;
87
- color: #fff;
88
- border: 2px solid #00dbff;
89
- border-radius: 8px;
90
- font-size: 1em;
91
- margin-bottom: 15px;
92
- text-transform: uppercase;
93
- }
94
-
95
- .btn {
96
- width: 100%;
97
- padding: 12px;
98
- background: #ff0088;
99
- color: #fff;
100
- border: none;
101
- border-radius: 8px;
102
- font-size: 1.2em;
103
- text-transform: uppercase;
104
- cursor: pointer;
105
- box-shadow: 0 0 10px #ff0088;
106
- transition: background 0.3s, box-shadow 0.3s;
107
- }
108
-
109
- .btn:hover {
110
- background: #00dbff;
111
- box-shadow: 0 0 20px #00dbff;
112
- }
113
-
114
- #preview img {
115
- max-width: 80px;
116
- max-height: 80px;
117
- margin: 5px;
118
- cursor: move;
119
- border: 2px solid #00dbff;
120
- box-shadow: 0 0 8px #00dbff;
121
- transition: transform 0.2s;
122
- }
123
-
124
- #preview img:hover {
125
- transform: scale(1.1);
126
- }
127
-
128
- #gridPreview {
129
- display: inline-block;
130
- border: 2px dashed #ff0088;
131
- padding: 10px;
132
- background: rgba(0, 0, 0, 0.7);
133
- }
134
-
135
- .grid-slot {
136
- width: 80px;
137
- height: 80px;
138
- border: 2px solid #00dbff;
139
- display: inline-block;
140
- margin: 2px;
141
- background: #1a1a2e;
142
- overflow: hidden;
143
- box-shadow: 0 0 5px #00dbff;
144
- }
145
-
146
- .grid-slot img {
147
- max-width: 100%;
148
- max-height: 100%;
149
- }
150
-
151
- #canvas {
152
- max-width: 100%;
153
- border: 3px solid #ff0088;
154
- box-shadow: 0 0 20px #ff0088;
155
- }