tee342 commited on
Commit
055867e
·
verified ·
1 Parent(s): 162a3e6

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +24 -77
style.css CHANGED
@@ -1,39 +1,21 @@
1
- /* === Base Reset & Fonts === */
2
- * {
3
- margin: 0;
4
- padding: 0;
5
- box-sizing: border-box;
6
- }
7
-
8
  body {
 
 
9
  font-family: 'Segoe UI', sans-serif;
10
- background-color: #121b2c;
11
- color: darkblue;
12
  padding: 20px;
13
  }
14
 
15
- /* === Header Logo Styles === */
16
  .studio-header {
17
  text-align: center;
18
  margin-bottom: 30px;
19
  animation: float 3s ease-in-out infinite;
20
  }
21
 
22
- .studio-header img {
23
- width: 400px;
24
- max-width: 100%;
25
- border-radius: 12px;
26
- box-shadow: 0 0 15px #1f7bbd88;
27
- transition: transform 0.3s ease;
28
- }
29
-
30
- .studio-header img:hover {
31
- transform: scale(1.02);
32
- }
33
-
34
  .studio-header h3 {
35
  font-size: 18px;
36
- color: #8892aa;
37
  margin-top: -5px;
38
  font-style: italic;
39
  }
@@ -43,37 +25,20 @@ body {
43
  50% { transform: translateY(-10px); }
44
  }
45
 
46
- /* === Interface Cards & Boxes === */
47
- .gr-box, .gr-interface {
48
- background-color: #161b22 !important;
49
- border-radius: 12px;
50
- padding: 15px;
51
- box-shadow: 0 0 10px #1f7bbd44;
52
- border: none;
53
- transition: all 0.3s ease;
54
- }
55
-
56
- .gr-box:hover,
57
- .gr-interface:hover {
58
- box-shadow: 0 0 15px #1f7bbd88;
59
- }
60
-
61
  /* === Buttons === */
62
  .gr-button {
63
- background-color: #1f7bbd !important;
64
  color: white !important;
65
- border-radius: 10px;
66
  padding: 10px 20px;
67
  font-weight: bold;
68
- box-shadow: 0 0 10px #1f7bbd44;
69
- border: none;
70
- font-size: 16px;
71
  transition: all 0.3s ease;
72
  }
73
 
74
  .gr-button:hover {
75
- background-color: #298eff !important;
76
- box-shadow: 0 0 15px #298effaa;
77
  }
78
 
79
  /* === Tabs === */
@@ -81,46 +46,42 @@ body {
81
  font-size: 16px;
82
  padding: 10px 20px;
83
  border-radius: 8px;
84
- background: #161b22;
85
  color: white;
86
  transition: all 0.3s ease;
87
  }
88
 
89
  .gr-tabs button:hover {
90
- background: #298eff;
91
  color: black;
92
- box-shadow: 0 0 10px #298effaa;
93
  }
94
 
95
- /* === Inputs / Textboxes === */
96
- input[type="text"],
97
- input[type="number"],
98
- select,
99
- textarea {
100
- background-color: #21262d !important;
101
  color: white !important;
102
- border: 1px solid #30363f !important;
103
- border-radius: 8px;
104
- width: 100%;
105
  padding: 10px;
106
  }
107
 
108
  /* === Checkbox Groups === */
109
  .gr-checkboxgroup label {
110
- background: #21262d;
111
  color: white;
112
- border: 1px solid #30363f;
113
- border-radius: 8px;
114
  padding: 8px 12px;
115
  transition: background 0.3s;
116
  }
117
 
118
  .gr-checkboxgroup label:hover {
119
- background: #2a3036;
120
  cursor: pointer;
121
  }
122
 
123
- /* === Gallery (Preset Cards) === */
124
  .gr-gallery__items > div {
125
  border-radius: 12px;
126
  overflow: hidden;
@@ -129,17 +90,7 @@ textarea {
129
 
130
  .gr-gallery__items > div:hover {
131
  transform: scale(1.02);
132
- box-shadow: 0 0 12px #298eff44;
133
- }
134
-
135
- .gr-gallery__item-label {
136
- background: rgba(0, 0, 0, 0.6);
137
- backdrop-filter: blur(3px);
138
- border-radius: 0 0 12px 12px;
139
- padding: 10px;
140
- font-size: 14px;
141
- font-weight: bold;
142
- text-align: center;
143
  }
144
 
145
  /* === Responsive Layout === */
@@ -152,10 +103,6 @@ textarea {
152
  min-width: 100%;
153
  }
154
 
155
- .gr-row {
156
- flex-direction: column;
157
- }
158
-
159
  .gr-button {
160
  width: 100%;
161
  }
 
1
+ /* === Base Styles === */
 
 
 
 
 
 
2
  body {
3
+ background-color: #1f2937;
4
+ color: white;
5
  font-family: 'Segoe UI', sans-serif;
 
 
6
  padding: 20px;
7
  }
8
 
9
+ /* === Logo & Header === */
10
  .studio-header {
11
  text-align: center;
12
  margin-bottom: 30px;
13
  animation: float 3s ease-in-out infinite;
14
  }
15
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  .studio-header h3 {
17
  font-size: 18px;
18
+ color: #9ca3af;
19
  margin-top: -5px;
20
  font-style: italic;
21
  }
 
25
  50% { transform: translateY(-10px); }
26
  }
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  /* === Buttons === */
29
  .gr-button {
30
+ background-color: #2563eb !important;
31
  color: white !important;
32
+ border-radius: 8px;
33
  padding: 10px 20px;
34
  font-weight: bold;
35
+ box-shadow: 0 0 10px #2563eb88;
 
 
36
  transition: all 0.3s ease;
37
  }
38
 
39
  .gr-button:hover {
40
+ background-color: #3b82f6 !important;
41
+ box-shadow: 0 0 15px #3b82f6aa;
42
  }
43
 
44
  /* === Tabs === */
 
46
  font-size: 16px;
47
  padding: 10px 20px;
48
  border-radius: 8px;
49
+ background: #1e293b;
50
  color: white;
51
  transition: all 0.3s ease;
52
  }
53
 
54
  .gr-tabs button:hover {
55
+ background: #3b82f6;
56
  color: black;
57
+ box-shadow: 0 0 10px #3b82f6aa;
58
  }
59
 
60
+ /* === Inputs / Dropdowns === */
61
+ input[type="text"], input[type="number"], select, textarea {
62
+ background-color: #334155 !important;
 
 
 
63
  color: white !important;
64
+ border: 1px solid #475569 !important;
65
+ border-radius: 6px;
 
66
  padding: 10px;
67
  }
68
 
69
  /* === Checkbox Groups === */
70
  .gr-checkboxgroup label {
71
+ background: #334155;
72
  color: white;
73
+ border: 1px solid #475569;
74
+ border-radius: 6px;
75
  padding: 8px 12px;
76
  transition: background 0.3s;
77
  }
78
 
79
  .gr-checkboxgroup label:hover {
80
+ background: #475569;
81
  cursor: pointer;
82
  }
83
 
84
+ /* === Gallery Cards Hover Effect === */
85
  .gr-gallery__items > div {
86
  border-radius: 12px;
87
  overflow: hidden;
 
90
 
91
  .gr-gallery__items > div:hover {
92
  transform: scale(1.02);
93
+ box-shadow: 0 0 12px #3b82f644;
 
 
 
 
 
 
 
 
 
 
94
  }
95
 
96
  /* === Responsive Layout === */
 
103
  min-width: 100%;
104
  }
105
 
 
 
 
 
106
  .gr-button {
107
  width: 100%;
108
  }