tee342 commited on
Commit
9d21f18
·
verified ·
1 Parent(s): 825b041

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +19 -24
style.css CHANGED
@@ -25,21 +25,7 @@ body {
25
  50% { transform: translateY(-10px); }
26
  }
27
 
28
- /* === Interface Boxes & Cards === */
29
- .gr-box, .gr-interface {
30
- background-color: #161b22 !important;
31
- border-radius: 12px;
32
- padding: 15px;
33
- box-shadow: 0 0 10px #1f7bbd44;
34
- border: none;
35
- transition: all 0.3s ease;
36
- }
37
-
38
- .gr-box:hover, .gr-interface:hover {
39
- box-shadow: 0 0 15px #1f7bbd88;
40
- }
41
-
42
- /* === Buttons === */
43
  .gr-button {
44
  background-color: #2563eb !important;
45
  color: white !important;
@@ -49,6 +35,7 @@ body {
49
  box-shadow: 0 0 10px #2563eb44;
50
  border: none;
51
  font-size: 16px;
 
52
  }
53
 
54
  .gr-button:hover {
@@ -82,7 +69,6 @@ input[type="text"], input[type="number"], select, textarea {
82
  padding: 10px;
83
  }
84
 
85
- /* === Checkbox Groups === */
86
  .gr-checkboxgroup label {
87
  background: #334155;
88
  color: white;
@@ -109,12 +95,21 @@ input[type="text"], input[type="number"], select, textarea {
109
  box-shadow: 0 0 12px #2563eb44;
110
  }
111
 
112
- .gr-gallery__item-label {
113
- background: rgba(0, 0, 0, 0.7);
114
- backdrop-filter: blur(3px);
115
- border-radius: 0 0 12px 12px;
116
- padding: 10px;
117
- font-size: 14px;
118
- font-weight: bold;
119
- text-align: center;
 
 
 
 
 
 
 
 
 
120
  }
 
25
  50% { transform: translateY(-10px); }
26
  }
27
 
28
+ /* === Buttons & Inputs === */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  .gr-button {
30
  background-color: #2563eb !important;
31
  color: white !important;
 
35
  box-shadow: 0 0 10px #2563eb44;
36
  border: none;
37
  font-size: 16px;
38
+ transition: all 0.3s ease;
39
  }
40
 
41
  .gr-button:hover {
 
69
  padding: 10px;
70
  }
71
 
 
72
  .gr-checkboxgroup label {
73
  background: #334155;
74
  color: white;
 
95
  box-shadow: 0 0 12px #2563eb44;
96
  }
97
 
98
+ /* === Responsive Layout === */
99
+ @media (max-width: 768px) {
100
+ .gr-column {
101
+ min-width: 100%;
102
+ }
103
+
104
+ .gr-row {
105
+ flex-direction: column;
106
+ }
107
+
108
+ .studio-header img {
109
+ width: 90%;
110
+ }
111
+
112
+ .gr-button {
113
+ width: 100%;
114
+ }
115
  }