Last active
December 6, 2017 13:53
-
-
Save DominikAngerer/486c4f34c35d514e64e3891b737770f4 to your computer and use it in GitHub Desktop.
sample-stylings.css
This file contains hidden or 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/css?family=Lato'); | |
.root { | |
max-width: 960px; | |
margin: 0 auto; | |
font-family: 'Lato', sans-serif; | |
margin-top: 120px; | |
} | |
.teaser { | |
text-align: center; | |
} | |
.grid { | |
display: -webkit-box; | |
display: -webkit-flex; | |
display: -ms-flexbox; | |
display: flex; | |
-webkit-flex-wrap: wrap; | |
-ms-flex-wrap: wrap; | |
flex-wrap: wrap; | |
list-style: none; | |
padding: 0; | |
max-width: 1200px; | |
margin: 0 auto; | |
} | |
.column { | |
-webkit-box-flex: 1; | |
-webkit-flex: 1; | |
-ms-flex: 1; | |
flex: 1; | |
width: 50%; | |
box-shadow: 0px 1px 10px 0px #ccc; | |
border: 1px solid #ddd; | |
margin: 20px; | |
padding: 20px; | |
} | |
body { | |
font-family: 'Lato', sans-serif; | |
} | |
.rebuilding { | |
position: absolute; | |
top: 0px; | |
left: 0px; | |
width: 100%; | |
text-align: center; | |
background: green; | |
padding: 10px; | |
color: #fff; | |
} | |
footer { | |
text-align: center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment