mvaloatto commited on
Commit
a17bceb
1 Parent(s): 1711e89

Update styles.css

Browse files
Files changed (1) hide show
  1. styles.css +81 -7
styles.css CHANGED
@@ -41,6 +41,23 @@ section {
41
  overflow: hidden;
42
  }
43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  .leaderboard ul {
45
  list-style: none;
46
  padding: 0;
@@ -91,6 +108,25 @@ section {
91
  padding: 24px;
92
  border-radius: 8px;
93
  background-color: #f5f5f5;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  }
95
 
96
  .testimonials p {
@@ -122,7 +158,8 @@ section {
122
  margin-bottom: 16px;
123
  }
124
 
125
- .contact input:focus, .contact textarea:focus {
 
126
  outline: none;
127
  border-color: #007bff;
128
  }
@@ -133,12 +170,31 @@ section {
133
 
134
  .contact button {
135
  background-color: #007bff;
136
- color: #fff;
137
  border: none;
138
  padding: 12px 24px;
139
  border-radius: 4px;
140
  cursor: pointer;
141
  transition: background-color 0.2s ease-in-out;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  }
143
 
144
  .contact button:hover {
@@ -152,18 +208,36 @@ section {
152
  margin-bottom: 32px;
153
  }
154
 
 
 
 
 
155
  .tabs label {
156
  padding: 16px;
157
  cursor: pointer;
158
- transition: background-color 0.2s ease-in-out;
 
159
  }
160
 
161
- .tabs label:hover {
162
- background-color: #f5f5f5;
 
 
 
 
 
 
 
 
 
163
  }
164
 
165
- .tabs input[type="radio"] {
166
- display: none;
 
 
 
 
167
  }
168
 
169
  .tab-content {
 
41
  overflow: hidden;
42
  }
43
 
44
+ section::before,
45
+ section::after {
46
+ content: '';
47
+ position: absolute;
48
+ top: 0;
49
+ right: 0;
50
+ bottom: 0;
51
+ left: 0;
52
+ z-index: -1;
53
+ margin: -10px;
54
+ background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
55
+ }
56
+
57
+ section::after {
58
+ filter: blur(10px);
59
+ }
60
+
61
  .leaderboard ul {
62
  list-style: none;
63
  padding: 0;
 
108
  padding: 24px;
109
  border-radius: 8px;
110
  background-color: #f5f5f5;
111
+ position: relative;
112
+ overflow: hidden;
113
+ }
114
+
115
+ .testimonials blockquote::before,
116
+ .testimonials blockquote::after {
117
+ content: '';
118
+ position: absolute;
119
+ top: 0;
120
+ right: 0;
121
+ bottom: 0;
122
+ left: 0;
123
+ z-index: -1;
124
+ margin: -10px;
125
+ background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
126
+ }
127
+
128
+ .testimonials blockquote::after {
129
+ filter: blur(10px);
130
  }
131
 
132
  .testimonials p {
 
158
  margin-bottom: 16px;
159
  }
160
 
161
+ .contact input:focus,
162
+ .contact textarea:focus {
163
  outline: none;
164
  border-color: #007bff;
165
  }
 
170
 
171
  .contact button {
172
  background-color: #007bff;
173
+ color: white;
174
  border: none;
175
  padding: 12px 24px;
176
  border-radius: 4px;
177
  cursor: pointer;
178
  transition: background-color 0.2s ease-in-out;
179
+ position: relative;
180
+ overflow: hidden;
181
+ }
182
+
183
+ .contact button::before,
184
+ .contact button::after {
185
+ content: '';
186
+ position: absolute;
187
+ top: 0;
188
+ right: 0;
189
+ bottom: 0;
190
+ left: 0;
191
+ z-index: -1;
192
+ margin: -10px;
193
+ background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
194
+ }
195
+
196
+ .contact button::after {
197
+ filter: blur(10px);
198
  }
199
 
200
  .contact button:hover {
 
208
  margin-bottom: 32px;
209
  }
210
 
211
+ .tabs input[type="radio"] {
212
+ display: none;
213
+ }
214
+
215
  .tabs label {
216
  padding: 16px;
217
  cursor: pointer;
218
+ position: relative;
219
+ overflow: hidden;
220
  }
221
 
222
+ .tabs label::before,
223
+ .tabs label::after {
224
+ content: '';
225
+ position: absolute;
226
+ top: 0;
227
+ right: 0;
228
+ bottom: 0;
229
+ left: 0;
230
+ z-index: -1;
231
+ margin: -10px;
232
+ background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
233
  }
234
 
235
+ .tabs label::after {
236
+ filter: blur(10px);
237
+ }
238
+
239
+ .tabs label:hover {
240
+ background-color: #f5f5f5;
241
  }
242
 
243
  .tab-content {