Skip to content

Instantly share code, notes, and snippets.

@dyarfi
Created March 28, 2020 14:45
Show Gist options
  • Save dyarfi/276e70a8ff87430824be4caf25417941 to your computer and use it in GitHub Desktop.
Save dyarfi/276e70a8ff87430824be4caf25417941 to your computer and use it in GitHub Desktop.
SASS placeholder CSS
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Poppins:200,400,600,800&display=swap");
.headline, .title {
color: #3687de;
font-weight: 600;
}
.headline ~ p, .title ~ p {
color: #666666;
font-style: italic;
font-weight: 200;
}
*, :after, :before {
box-sizing: border-box;
}
body, html {
background: #fff7e9;
padding: 4rem 0;
margin: 0;
font-family: 'Poppins', sans-serif;
}
.row {
display: -webkit-box;
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
.container {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
max-width: 1140px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment