Created
June 20, 2019 02:10
-
-
Save renemorozowich/5fbe00f38ceb3c943b469438069b751f to your computer and use it in GitHub Desktop.
Basic style.css file
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
html { | |
padding: 5%; | |
} | |
body { | |
font-family: 'Montserrat', sans-serif; | |
} | |
h1, h2, h3, h4, h5, h6 { | |
font-family: 'Playfair Display', serif; | |
} | |
h1 { | |
text-align: center; | |
} | |
h2 { | |
color: #07393C; | |
padding-bottom: 3px; | |
border-bottom: solid 2px #90DDF0; | |
} | |
p { | |
color: #0A090C; | |
} | |
.intro { | |
font-size: 20px; | |
text-align: center; | |
padding: 1%; | |
} | |
.special-callout { | |
background-color: #a9aad6; | |
padding-top: 10px; | |
padding-bottom: 10px; | |
padding-left: 0; | |
padding-right: 20px; | |
margin: 50px; | |
border: solid 2px #00ffff; | |
} | |
.special-span { | |
background-color: #ffff00; | |
} | |
.special-span:hover { | |
background-color: #ff0000; | |
} | |
figure { | |
padding: 0; | |
margin: 0; | |
} | |
figcaption { | |
font-style: italic; | |
font-size: 10px; | |
padding-bottom: 10px; | |
} | |
.container { | |
width: 100%; | |
} | |
.floated { | |
float: left; | |
width: 40%; | |
padding-right: 10px; | |
} | |
.clear { | |
clear: left; | |
} | |
@media only screen and (max-width: 600px) { | |
.floated { | |
width: 100%; | |
} | |
} | |
a { | |
color: #2C666E; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment