Last active
July 26, 2024 17:54
-
-
Save jeffersonchaves/303dfdc154b9cba38b4e27e5e22d3b53 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
@import url('https://fonts.googleapis.com/css2?family=Catamaran:[email protected]&display=swap'); | |
/* Reset CSS */ | |
*{ | |
margin: 0; | |
padding: 0; | |
} | |
html, body { | |
font-family: "Catamaran", sans-serif; | |
background-color: #19242f; | |
color: #eee; | |
} | |
body { | |
margin: 20px; | |
} | |
h1 { | |
text-align: center; | |
font-weight: 700; | |
} | |
h2 { | |
font-family: "Catamaran", sans-serif; | |
color: #ff4043; | |
font-size: 25px; | |
font-weight: 400; | |
} | |
hr { | |
margin: 30px 0 20px 0; | |
opacity: 0.2; | |
} | |
div { | |
/* text-align: center; */ | |
} | |
/* Color */ | |
.bg-red { | |
background-color: #e74c3c; | |
} | |
.bg-green{ | |
background-color: #1abc9c; | |
} | |
.bg-blue { | |
background-color: #3498db; | |
} | |
.bg-yellow { | |
background-color: #f1c40f; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment