mvaloatto commited on
Commit
90522c1
1 Parent(s): 25c2a97

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +179 -180
style.css CHANGED
@@ -1,180 +1,179 @@
1
-
2
- * {
3
- box-sizing: border-box;
4
- }
5
-
6
- body {
7
- background-color: #f5f5f5;
8
- font-family: Arial, sans-serif;
9
- }
10
-
11
- header, main {
12
- max-width: 960px;
13
- margin: 0 auto;
14
- }
15
-
16
- header {
17
- padding: 32px 0;
18
- text-align: center;
19
- }
20
-
21
- h1 {
22
- font-size: 48px;
23
- font-weight: bold;
24
- color: #333;
25
- margin-bottom: 16px;
26
- }
27
-
28
- p {
29
- font-size: 18px;
30
- color: #666;
31
- }
32
-
33
- main {
34
- padding: 32px 0;
35
- }
36
-
37
- section {
38
- padding: 32px;
39
- border-radius: 8px;
40
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
41
- }
42
-
43
- .leaderboard ul {
44
- list-style: none;
45
- padding: 0;
46
- margin: 0;
47
- }
48
-
49
- .leaderboard li {
50
- display: flex;
51
- align-items: center;
52
- border-bottom: 1px solid #ddd;
53
- padding: 16px 0;
54
- }
55
-
56
- .leaderboard img {
57
- width: 50px;
58
- height: 50px;
59
- border-radius: 50%;
60
- margin-right: 16px;
61
- }
62
-
63
- .leaderboard h3 {
64
- font-size: 24px;
65
- font-weight: bold;
66
- color: #333;
67
- margin-bottom: 4px;
68
- }
69
-
70
- .leaderboard p {
71
- font-size: 16px;
72
- color: #666;
73
- }
74
-
75
- .leaderboard a {
76
- color: #007bff;
77
- text-decoration: none;
78
- }
79
-
80
- .leaderboard a:hover {
81
- text-decoration: underline;
82
- }
83
-
84
- .testimonials h2 {
85
- font-size: 28px;
86
- font-weight: bold;
87
- color: #333;
88
- margin-bottom: 24px;
89
- }
90
-
91
- .testimonials blockquote {
92
- padding: 24px;
93
- border-radius: 8px;
94
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
95
- background-color: #fff;
96
- }
97
-
98
- .testimonials p {
99
- font-size: 18px;
100
- color: #666;
101
- margin-bottom: 8px;
102
- }
103
-
104
- .testimonials cite {
105
- font-size: 14px;
106
- color: #999;
107
- font-style: italic;
108
- }
109
-
110
- .contact h2 {
111
- font-size: 28px;
112
- font-weight: bold;
113
- color: #333;
114
- margin-bottom: 24px;
115
- }
116
-
117
- .contact form {
118
- display: flex;
119
- flex-direction: column;
120
- }
121
-
122
- .contact input, .contact textarea {
123
- width: 100%;
124
- padding: 12px;
125
- border: 1px solid #ddd;
126
- border-radius: 4px;
127
- margin-bottom: 16px;
128
- }
129
-
130
- .contact input:focus, .contact textarea:focus {
131
- outline: none;
132
- border-color: #007bff;
133
- }
134
-
135
- .contact textarea {
136
- resize: vertical;
137
- }
138
-
139
- .contact button {
140
- background-color: #007bff;
141
- color: #fff;
142
- border: none;
143
- padding: 12px 24px;
144
- border-radius: 4px;
145
- cursor: pointer;
146
- transition: background-color 0.2s ease-in-out;
147
- }
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
- }
 
1
+ * {
2
+ box-sizing: border-box;
3
+ }
4
+
5
+ body {
6
+ background-color: #f5f5f5;
7
+ font-family: Arial, sans-serif;
8
+ }
9
+
10
+ header, main {
11
+ max-width: 960px;
12
+ margin: 0 auto;
13
+ }
14
+
15
+ header {
16
+ padding: 32px 0;
17
+ text-align: center;
18
+ }
19
+
20
+ h1 {
21
+ font-size: 48px;
22
+ font-weight: bold;
23
+ color: #333;
24
+ margin-bottom: 16px;
25
+ }
26
+
27
+ p {
28
+ font-size: 18px;
29
+ color: #666;
30
+ }
31
+
32
+ main {
33
+ padding: 32px 0;
34
+ }
35
+
36
+ section {
37
+ padding: 32px;
38
+ border-radius: 8px;
39
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
40
+ }
41
+
42
+ .leaderboard ul {
43
+ list-style: none;
44
+ padding: 0;
45
+ margin: 0;
46
+ }
47
+
48
+ .leaderboard li {
49
+ display: flex;
50
+ align-items: center;
51
+ border-bottom: 1px solid #ddd;
52
+ padding: 16px 0;
53
+ }
54
+
55
+ .leaderboard img {
56
+ width: 50px;
57
+ height: 50px;
58
+ border-radius: 50%;
59
+ margin-right: 16px;
60
+ }
61
+
62
+ .leaderboard h3 {
63
+ font-size: 24px;
64
+ font-weight: bold;
65
+ color: #333;
66
+ margin-bottom: 4px;
67
+ }
68
+
69
+ .leaderboard p {
70
+ font-size: 16px;
71
+ color: #666;
72
+ }
73
+
74
+ .leaderboard a {
75
+ color: #007bff;
76
+ text-decoration: none;
77
+ }
78
+
79
+ .leaderboard a:hover {
80
+ text-decoration: underline;
81
+ }
82
+
83
+ .testimonials h2 {
84
+ font-size: 28px;
85
+ font-weight: bold;
86
+ color: #333;
87
+ margin-bottom: 24px;
88
+ }
89
+
90
+ .testimonials blockquote {
91
+ padding: 24px;
92
+ border-radius: 8px;
93
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
94
+ background-color: #fff;
95
+ }
96
+
97
+ .testimonials p {
98
+ font-size: 18px;
99
+ color: #666;
100
+ margin-bottom: 8px;
101
+ }
102
+
103
+ .testimonials cite {
104
+ font-size: 14px;
105
+ color: #999;
106
+ font-style: italic;
107
+ }
108
+
109
+ .contact h2 {
110
+ font-size: 28px;
111
+ font-weight: bold;
112
+ color: #333;
113
+ margin-bottom: 24px;
114
+ }
115
+
116
+ .contact form {
117
+ display: flex;
118
+ flex-direction: column;
119
+ }
120
+
121
+ .contact input, .contact textarea {
122
+ width: 100%;
123
+ padding: 12px;
124
+ border: 1px solid #ddd;
125
+ border-radius: 4px;
126
+ margin-bottom: 16px;
127
+ }
128
+
129
+ .contact input:focus, .contact textarea:focus {
130
+ outline: none;
131
+ border-color: #007bff;
132
+ }
133
+
134
+ .contact textarea {
135
+ resize: vertical;
136
+ }
137
+
138
+ .contact button {
139
+ background-color: #007bff;
140
+ color: #fff;
141
+ border: none;
142
+ padding: 12px 24px;
143
+ border-radius: 4px;
144
+ cursor: pointer;
145
+ transition: background-color 0.2s ease-in-out;
146
+ }
147
+
148
+ .contact button:hover {
149
+ background-color: #0062cc;
150
+ }
151
+
152
+ .tabs {
153
+ display: flex;
154
+ justify-content: space-between;
155
+ border-bottom: 1px solid #ddd;
156
+ margin-bottom: 32px;
157
+ }
158
+
159
+ .tabs label {
160
+ padding: 16px;
161
+ cursor: pointer;
162
+ transition: background-color 0.2s ease-in-out;
163
+ }
164
+
165
+ .tabs label:hover {
166
+ background-color: #f5f5f5;
167
+ }
168
+
169
+ .tabs input[type="radio"] {
170
+ display: none;
171
+ }
172
+
173
+ .tab-content {
174
+ display: none;
175
+ }
176
+
177
+ .tab-content.active {
178
+ display: block;
179
+ }