You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.1 KiB
69 lines
1.1 KiB
11 months ago
|
body {
|
||
|
font-family: 'Arial', sans-serif;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
header {
|
||
|
background-color: #ff99cc; /* Light pink background */
|
||
|
color: #00CBF6; /* Light blue text */
|
||
|
text-align: center;
|
||
|
padding: 1em;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
nav {
|
||
|
background-color: #ff99cc; /* Light pink background */
|
||
|
color: #00CBF6; /* Light blue text */
|
||
|
padding: 0.5em;
|
||
|
}
|
||
|
|
||
|
nav ul {
|
||
|
list-style: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
nav ul li {
|
||
|
display: inline;
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
|
||
|
nav a {
|
||
|
text-decoration: none;
|
||
|
color: #00CBF6; /* Light blue text */
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
.game {
|
||
|
border: 1px solid #ff99cc; /* Light pink border */
|
||
|
background-color: #ACE9F6; /* Light blue background */
|
||
|
padding: 20px;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.game img {
|
||
|
max-width: 100%;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
background-color: #ff99cc; /* Light pink background */
|
||
|
color: #00CBF6; /* Light blue text */
|
||
|
text-align: center;
|
||
|
padding: 1em;
|
||
|
position: fixed;
|
||
|
bottom: 0;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.popcorn {
|
||
|
max-width: 6rem;
|
||
|
}
|
||
|
|
||
|
.game-video {
|
||
|
max-width: 100%;
|
||
|
}
|