-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
192 lines (170 loc) · 3.55 KB
/
style.css
File metadata and controls
192 lines (170 loc) · 3.55 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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/* GLOBAL STYLING */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Poppins, sans-serif;
}
body {
background: #0b001d;
color: #fff;
cursor: none;
}
/* HEADER */
header {
display: flex;
justify-content: space-between;
padding: 20px 40px;
backdrop-filter: blur(20px);
background: rgba(255, 255, 255, 0.05);
border-bottom: 1px solid rgba(255,255,255,0.1);
}
nav a {
margin-left: 20px;
color: #bfaaff;
text-decoration: none;
}
nav .active {
color: #fff;
font-weight: bold;
}
/* HERO */
.hero {
text-align: center;
padding: 100px 20px;
}
.btn {
padding: 12px 25px;
margin-top: 20px;
display: inline-block;
background: rgba(255,255,255,0.1);
backdrop-filter: blur(20px);
border-radius: 10px;
color: #fff;
text-decoration: none;
border: 1px solid rgba(255,255,255,0.2);
transition: 0.3s;
}
.btn:hover {
background: rgba(255,255,255,0.2);
}
/* GALLERY GRID */
.gallery {
padding: 40px;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 20px;
}
.gallery img {
width: 100%;
border-radius: 15px;
object-fit: cover;
height: 260px;
transition: 0.3s;
}
.gallery img:hover {
transform: scale(1.05);
}
/* ABOUT PAGE GRID */
.about {
padding: 40px;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 25px;
}
.about div {
grid-column: span 2;
background: rgba(255,255,255,0.08);
backdrop-filter: blur(20px);
padding: 30px;
border-radius: 15px;
}
/* UPLOAD + CONTACT + COMMISSION */
.section-box,
.commission {
margin: 50px auto;
width: 80%;
padding: 40px;
background: rgba(255,255,255,0.08);
backdrop-filter: blur(20px);
border-radius: 20px;
text-align: center;
}
/* CUSTOM CURSOR */
#cursor {
width: 20px;
height: 20px;
background: white;
border-radius: 50%;
position: fixed;
pointer-events: none;
transform: translate(-50%, -50%);
mix-blend-mode: difference;
z-index: 9999;
transition: transform 0.1s linear;
}
/* -------------------------
COMMISSION PAGE FIXED DESIGN
--------------------------*/
.commission {
width: 70%;
margin: 80px auto;
padding: 50px;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.15);
border-radius: 20px;
backdrop-filter: blur(20px);
text-align: center;
box-shadow: 0 0 20px rgba(170, 75, 255, 0.2);
}
.commission h2 {
font-size: 32px;
margin-bottom: 15px;
color: #e4c2ff;
text-shadow: 0 0 10px #c77cff;
}
.commission p {
margin-bottom: 25px;
font-size: 16px;
opacity: 0.8;
}
/* Input fields */
.commission input,
.commission textarea {
width: 100%;
padding: 14px;
margin: 12px 0;
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.25);
background: rgba(255,255,255,0.09);
color: #fff;
font-size: 16px;
resize: none;
backdrop-filter: blur(10px);
transition: 0.3s ease;
}
/* Focus glow */
.commission input:focus,
.commission textarea:focus {
border-color: #c77cff;
box-shadow: 0 0 12px #b56aff;
outline: none;
}
/* Submit button */
.commission button {
padding: 12px 30px;
margin-top: 15px;
background: rgba(170,75,255,0.35);
border-radius: 12px;
border: none;
color: #fff;
font-size: 18px;
cursor: pointer;
transition: 0.3s;
box-shadow: 0 0 10px #b56aff;
}
.commission button:hover {
background: rgba(170,75,255,0.55);
transform: scale(1.05);
box-shadow: 0 0 16px #d59aff;
}