mvaloatto commited on
Commit
2197991
·
verified ·
1 Parent(s): 786a576

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +29 -0
style.css CHANGED
@@ -148,4 +148,33 @@
148
 
149
  .contact button:hover {
150
  background-color: #0062cc;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151
  }
 
148
 
149
  .contact button:hover {
150
  background-color: #0062cc;
151
+ }
152
+
153
+ .tabs {
154
+ display: flex;
155
+ justify-content: space-between;
156
+ border-bottom: 1px solid #ddd;
157
+ margin-bottom: 32px;
158
+ }
159
+
160
+ .tabs label {
161
+ padding: 16px;
162
+ cursor: pointer;
163
+ transition: background-color 0.2s ease-in-out;
164
+ }
165
+
166
+ .tabs label:hover {
167
+ background-color: #f5f5f5;
168
+ }
169
+
170
+ .tabs input[type="radio"] {
171
+ display: none;
172
+ }
173
+
174
+ .tab-content {
175
+ display: none;
176
+ }
177
+
178
+ .tab-content.active {
179
+ display: block;
180
  }