diff options
Diffstat (limited to 'frontend/src/css/Maplist.css')
| -rw-r--r-- | frontend/src/css/Maplist.css | 47 |
1 files changed, 46 insertions, 1 deletions
diff --git a/frontend/src/css/Maplist.css b/frontend/src/css/Maplist.css index 9880a27..65c3a28 100644 --- a/frontend/src/css/Maplist.css +++ b/frontend/src/css/Maplist.css | |||
| @@ -72,7 +72,8 @@ h3 { | |||
| 72 | width: 100%; | 72 | width: 100%; |
| 73 | } | 73 | } |
| 74 | 74 | ||
| 75 | .game-cat-button:hover, .game-cat-button.selected { | 75 | .game-cat-button:hover, |
| 76 | .game-cat-button.selected { | ||
| 76 | background-color: #202232; | 77 | background-color: #202232; |
| 77 | } | 78 | } |
| 78 | 79 | ||
| @@ -196,3 +197,47 @@ h3 { | |||
| 196 | opacity: 1; | 197 | opacity: 1; |
| 197 | } | 198 | } |
| 198 | } | 199 | } |
| 200 | |||
| 201 | @media screen and (max-width: 768px) { | ||
| 202 | h1 { | ||
| 203 | font-size: 36px; | ||
| 204 | text-align: center; | ||
| 205 | } | ||
| 206 | |||
| 207 | h3 { | ||
| 208 | font-size: 28px; | ||
| 209 | margin: 0px 5px; | ||
| 210 | } | ||
| 211 | |||
| 212 | .portal-count { | ||
| 213 | font-size: 60px; | ||
| 214 | } | ||
| 215 | |||
| 216 | .blur.map span:nth-child(1) { | ||
| 217 | font-size: 40px; | ||
| 218 | } | ||
| 219 | |||
| 220 | .game-header-categories { | ||
| 221 | flex-direction: column; | ||
| 222 | height: auto; | ||
| 223 | } | ||
| 224 | |||
| 225 | .game-cat-button { | ||
| 226 | font-size: 18px; | ||
| 227 | padding: 10px 0; | ||
| 228 | } | ||
| 229 | |||
| 230 | .maplist { | ||
| 231 | grid-template-columns: repeat(1, 1fr); | ||
| 232 | grid-gap: 20px; | ||
| 233 | margin: 20px 0px; | ||
| 234 | } | ||
| 235 | |||
| 236 | .maplist-entry span { | ||
| 237 | font-size: 16px; | ||
| 238 | } | ||
| 239 | |||
| 240 | .map-entry-image { | ||
| 241 | height: 150px; | ||
| 242 | } | ||
| 243 | } \ No newline at end of file | ||