Last active
July 4, 2024 07:57
-
-
Save rmbrntt/715b1fe188754982956c5710fa85a0c7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
body { | |
font-family: "Arial", sans-serif; | |
} | |
html, | |
body { | |
height: 100%; | |
background-color: #f00f0; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
} | |
a { | |
text-decoration: none; | |
color: #007bff; | |
} | |
.container { | |
max-width: 800px; | |
margin: 0 auto; | |
padding: 20px; | |
background-color: #fff; | |
box-shadow: 0 2px 5px gba(0, 0, 0, 0.1); | |
border-radius: 5px; | |
} | |
button { | |
background-color: #007bff; | |
color: #fff; | |
border: none; | |
border-radius: 5px; | |
padding: 10px 20px; | |
transition: background-color 0.3s; | |
} | |
button: hover { | |
background-color: #0056b3; | |
} | |
@media (max-width: 768px) { | |
.container { | |
padding: 10px; | |
} | |
button { | |
padding: 8px 16px; | |
} | |
} | |
.highlight { | |
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment