|
1 | | -*{ |
2 | | - margin: 0; |
3 | | - padding: 0; |
4 | | - outline: 0; |
5 | | - box-sizing: border-box; |
| 1 | +* { |
| 2 | + margin: 0; |
| 3 | + padding: 0; |
| 4 | + outline: 0; |
| 5 | + box-sizing: border-box; |
6 | 6 | } |
7 | 7 |
|
8 | | -a{ |
9 | | - text-decoration: none; |
10 | | - color: inherit; |
| 8 | +a { |
| 9 | + text-decoration: none; |
| 10 | + color: inherit; |
11 | 11 | } |
12 | | -body{ |
13 | | - width: 100%; |
14 | | - height: 100%; |
15 | | - font-family: 'Roboto', sans-serif;; |
| 12 | +body { |
| 13 | + width: 100%; |
| 14 | + height: 100%; |
| 15 | + font-family: "Roboto", sans-serif; |
16 | 16 | } |
17 | 17 |
|
18 | | -.top_header{ |
19 | | - display: flex; |
20 | | - flex-direction: row; |
21 | | - justify-content: space-between; |
22 | | - background-color: #2e3786; |
23 | | - padding: 1rem; |
| 18 | +.top_header { |
| 19 | + display: flex; |
| 20 | + flex-direction: row; |
| 21 | + justify-content: space-between; |
| 22 | + background-color: #2e3786; |
| 23 | + padding: 1rem; |
24 | 24 | } |
25 | 25 |
|
26 | | -.top_header i{ |
27 | | - font-size: 1rem; |
28 | | - color: white; |
| 26 | +.top_header i { |
| 27 | + font-size: 1rem; |
| 28 | + color: white; |
29 | 29 | } |
30 | 30 |
|
31 | | -.main_nav{ |
32 | | - display: flex; |
33 | | - flex-direction: row; |
34 | | - justify-content: space-around; |
35 | | - background-color: #00c699; |
36 | | - color: #101757; |
37 | | - margin-bottom: 1rem; |
38 | | -} |
39 | | - |
40 | | -.main_nav a{ |
41 | | - display: block; |
42 | | - text-align: center; |
43 | | - text-decoration: none; |
44 | | - width: 100%; |
45 | | - display: flex; |
46 | | - flex-direction: column; |
47 | | - align-items: center; |
48 | | - row-gap: .3rem; |
49 | | - padding: 1rem 0; |
| 31 | +.main_nav { |
| 32 | + display: flex; |
| 33 | + flex-direction: row; |
| 34 | + justify-content: space-around; |
| 35 | + background-color: #00c699; |
| 36 | + color: #101757; |
| 37 | + margin-bottom: 1rem; |
50 | 38 | } |
51 | 39 |
|
52 | | -.active { |
53 | | - background-color: #00c699; |
54 | | - font-size: 1.2rem; |
55 | | - color: white; |
| 40 | +.main_nav a { |
| 41 | + display: block; |
| 42 | + text-align: center; |
| 43 | + text-decoration: none; |
| 44 | + width: 100%; |
| 45 | + display: flex; |
| 46 | + flex-direction: column; |
| 47 | + align-items: center; |
| 48 | + row-gap: 0.3rem; |
| 49 | + padding: 1rem 0; |
56 | 50 | } |
57 | 51 |
|
58 | | -.main_nav i{ |
59 | | - font-size: 1.5rem; |
| 52 | +.active { |
| 53 | + background-color: #00c699; |
| 54 | + font-size: 1.2rem; |
| 55 | + color: white; |
60 | 56 | } |
61 | 57 |
|
62 | | -.game_opt{ |
63 | | - display: flex; |
64 | | - justify-content: space-around; |
65 | | - width: 90%; |
66 | | - margin: auto; |
67 | | - background-color: #2e3786; |
68 | | - color: white; |
69 | | - margin-top: 1rem auto; |
70 | | - border-radius: 12px; |
| 58 | +.main_nav i { |
| 59 | + font-size: 1.5rem; |
| 60 | +} |
71 | 61 |
|
72 | | - |
| 62 | +.game_opt { |
| 63 | + display: flex; |
| 64 | + justify-content: space-around; |
| 65 | + width: 90%; |
| 66 | + margin: auto; |
| 67 | + background-color: #2e3786; |
| 68 | + color: white; |
| 69 | + margin-top: 1rem auto; |
| 70 | + border-radius: 12px; |
73 | 71 | } |
74 | 72 |
|
75 | | -.game_opt div{ |
76 | | - width: 100%; |
77 | | - padding: .8rem 0; |
78 | | - text-align: center; |
| 73 | +.game_opt div { |
| 74 | + width: 100%; |
| 75 | + padding: 0.8rem 0; |
| 76 | + text-align: center; |
79 | 77 | } |
80 | 78 |
|
81 | | -.opt_active{ |
82 | | - background-color: #00c699; |
83 | | - border-radius: 5px; |
| 79 | +.opt_active { |
| 80 | + background-color: #00c699; |
| 81 | + border-radius: 5px; |
84 | 82 | } |
85 | 83 |
|
86 | | -.contest_card{ |
87 | | - |
88 | | - width: 90%; |
89 | | - display: flex; |
90 | | - margin: 1.5rem auto; |
91 | | - flex-direction: column; |
92 | | - align-items: center; |
93 | | - row-gap: 1rem; |
94 | | - border-radius: 50px; |
95 | | - padding: 2.5rem 0; |
96 | | - border-radius: 38px; |
97 | | -background: #ffffff; |
98 | | -box-shadow: 12px 12px 24px #d3d3d3, |
99 | | - -12px -12px 24px #ededed; |
| 84 | +.contest_card { |
| 85 | + width: 90%; |
| 86 | + display: flex; |
| 87 | + margin: 1.5rem auto; |
| 88 | + flex-direction: column; |
| 89 | + align-items: center; |
| 90 | + row-gap: 1rem; |
| 91 | + border-radius: 50px; |
| 92 | + padding: 2.5rem 0; |
| 93 | + border-radius: 38px; |
| 94 | + background: #ffffff; |
| 95 | + box-shadow: 12px 12px 24px #d3d3d3, -12px -12px 24px #ededed; |
100 | 96 | } |
101 | 97 |
|
102 | | -.contest_card p{ |
103 | | - font-size: .8rem; |
| 98 | +.contest_card p { |
| 99 | + font-size: 0.8rem; |
104 | 100 | } |
105 | | -.contest_header{ |
106 | | - display: flex; |
107 | | - flex-direction: row; |
| 101 | +.contest_header { |
| 102 | + display: flex; |
| 103 | + flex-direction: row; |
108 | 104 | } |
109 | | -.trophy{ |
110 | | - display: flex; |
111 | | - flex-direction: column; |
112 | | - align-items: center; |
| 105 | +.trophy { |
| 106 | + display: flex; |
| 107 | + flex-direction: column; |
| 108 | + align-items: center; |
113 | 109 | } |
114 | 110 |
|
115 | | -.trophy i{ |
116 | | - font-size: 3rem; |
117 | | - color: #0a104e; |
| 111 | +.trophy i { |
| 112 | + font-size: 3rem; |
| 113 | + color: #0a104e; |
118 | 114 | } |
119 | | -.progress_bar{ |
120 | | - height: 3px; |
121 | | - width: 90%; |
122 | | - background-color: #2e3786; |
123 | | - border-radius: 5px; |
| 115 | +.progress_bar { |
| 116 | + height: 3px; |
| 117 | + width: 90%; |
| 118 | + background-color: #2e3786; |
| 119 | + border-radius: 5px; |
124 | 120 | } |
125 | 121 |
|
126 | | -.bar{ |
127 | | - background-color: #00c699; |
128 | | - height: 100%; |
129 | | - border-radius: 5px; |
130 | | - width: 80%; |
| 122 | +.bar { |
| 123 | + background-color: #00c699; |
| 124 | + height: 100%; |
| 125 | + border-radius: 5px; |
| 126 | + width: 80%; |
131 | 127 | } |
132 | 128 |
|
133 | | -.stat{ |
134 | | - width: 90%; |
135 | | - display: flex; |
136 | | - justify-content: space-between; |
| 129 | +.stat { |
| 130 | + width: 90%; |
| 131 | + display: flex; |
| 132 | + justify-content: space-between; |
137 | 133 | } |
138 | 134 |
|
139 | | -.stat i{ |
140 | | - color: #101757; |
| 135 | +.stat i { |
| 136 | + color: #101757; |
141 | 137 | } |
142 | 138 |
|
143 | | -.foot_nav{ |
144 | | - |
145 | | -border-radius: 1rem 1rem 0 0; |
146 | | - position: absolute; |
147 | | - bottom: 0; |
| 139 | +.timeline{ |
| 140 | + width: 90%; |
148 | 141 | display: flex; |
149 | | - width: 100%; |
150 | | - justify-content: space-around; |
151 | | - background: #00c699; |
152 | | - padding: .9rem 0; |
153 | | - color: #02062c; |
154 | | - position: fixed; |
| 142 | + flex-direction: column; |
| 143 | + align-items: center; |
| 144 | + row-gap: 1rem; |
| 145 | +} |
| 146 | +.foot_nav { |
| 147 | + border-radius: 1rem 1rem 0 0; |
| 148 | + position: absolute; |
| 149 | + bottom: 0; |
| 150 | + display: flex; |
| 151 | + width: 100%; |
| 152 | + justify-content: space-around; |
| 153 | + background: #00c699; |
| 154 | + padding: 0.9rem 0; |
| 155 | + color: #02062c; |
| 156 | + position: fixed; |
155 | 157 | } |
156 | 158 |
|
157 | | -.footer_icon a{ |
158 | | - display: flex; |
159 | | - text-decoration: none; |
160 | | - flex-direction: column-reverse; |
161 | | - align-items: center; |
162 | | - font-size: .63rem; |
163 | | - row-gap: .3rem; |
| 159 | +.footer_icon a { |
| 160 | + display: flex; |
| 161 | + text-decoration: none; |
| 162 | + flex-direction: column-reverse; |
| 163 | + align-items: center; |
| 164 | + font-size: 0.63rem; |
| 165 | + row-gap: 0.3rem; |
164 | 166 | } |
165 | 167 |
|
166 | | -.footer_icon i{ |
167 | | - font-size: 1.2rem; |
| 168 | +.footer_icon i { |
| 169 | + font-size: 1.2rem; |
168 | 170 | } |
169 | 171 |
|
170 | | -.active-foot{ |
171 | | - color: #ffffff; |
172 | | - font-weight: 500; |
| 172 | +.active-foot { |
| 173 | + color: #ffffff; |
| 174 | + font-weight: 500; |
173 | 175 | } |
174 | 176 |
|
175 | | -.blog_card{ |
176 | | - margin: auto; |
177 | | - margin: 1.5rem auto; |
178 | | - width: 90%; |
179 | | - display: flex; |
180 | | - flex-direction: row; |
181 | | - column-gap: 1rem; |
| 177 | +.blog_card { |
| 178 | + margin: auto; |
| 179 | + margin: 1.5rem auto; |
| 180 | + width: 100%; |
| 181 | + display: flex; |
| 182 | + flex-direction: row; |
| 183 | + column-gap: 1rem; |
182 | 184 |
|
183 | | - border-radius: 10px; |
184 | | - padding: 1rem; |
185 | | - background: #ffffff; |
186 | | - box-shadow: 12px 12px 24px #d3d3d3, |
187 | | - -12px -12px 24px #ededed; |
| 185 | + border-radius: 10px; |
| 186 | + padding: 1rem; |
| 187 | + background: #ffffff; |
| 188 | + box-shadow: 12px 12px 24px #d3d3d3, -12px -12px 24px #ededed; |
188 | 189 | } |
189 | 190 |
|
190 | | -.blog_card:nth-child(even) |
191 | | -{ |
192 | | - flex-direction: row-reverse; |
193 | | -} |
194 | 191 |
|
195 | | -.blog_card img{ |
196 | | - width: 100%; |
197 | | - height: 100%; |
198 | | - border-radius: 20px; |
| 192 | +.blog_card img { |
| 193 | + width: 100%; |
| 194 | + height: 100%; |
| 195 | + border-radius: 20px; |
199 | 196 | } |
200 | 197 |
|
201 | | -.blog_left{ |
202 | | - width: 50%; |
203 | | - |
| 198 | +.blog_left { |
| 199 | + width: 50%; |
204 | 200 | } |
205 | | -.blog_content{ |
206 | | - width: 50%; |
207 | | - display: flex; |
208 | | - flex-direction: column; |
209 | | - row-gap: .5rem; |
210 | | - justify-content: center; |
211 | | - |
| 201 | +.blog_content { |
| 202 | + width: 50%; |
| 203 | + display: flex; |
| 204 | + flex-direction: column; |
| 205 | + row-gap: 0.5rem; |
| 206 | + justify-content: center; |
212 | 207 | } |
213 | 208 |
|
214 | | -.port_heading{ |
215 | | - |
216 | | - margin: 1rem; |
| 209 | +.port_heading { |
| 210 | + margin: 1rem; |
217 | 211 | } |
218 | 212 |
|
219 | | -.my_inv{ |
220 | | - margin: 1rem; |
| 213 | +.my_inv { |
| 214 | + margin: 1rem; |
221 | 215 | } |
222 | 216 |
|
| 217 | +#league_growth { |
| 218 | + margin-bottom: 6rem; |
| 219 | +} |
223 | 220 |
|
224 | | -#league_growth{ |
225 | | - margin-bottom: 6rem; |
| 221 | +@media only screen and (min-width: 600px) { |
| 222 | + .image11 { |
| 223 | + visibility: hidden; |
| 224 | + } |
226 | 225 | } |
0 commit comments