Created
March 14, 2017 02:02
-
-
Save luiseduardogfranca/4a89f9201f1d6114fc968bb467aa7a8c to your computer and use it in GitHub Desktop.
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
html, body{ | |
height: 100%; | |
width: 100%; | |
} | |
.bar{ | |
color: #fcfcfb; | |
background-color: #004959; | |
box-shadow: black 4px 1px 5px; | |
height: 100%; | |
} | |
.row{ | |
height: 100%; | |
} | |
.card{ | |
box-shadow: 0 2px 10px 0 black; | |
transition: 0.03s; | |
width: 100%; | |
background-color: #ffffff; | |
padding: 2% 3% 20% 2%; | |
margin-top: 2%; | |
} | |
.card h1{ | |
color: red; | |
} | |
.card:hover{ | |
box-shadow: 0 2px 15px 0 black; | |
} | |
.content{ | |
padding-top: 5%; | |
padding-left: 5%; | |
padding-right: 5%; | |
background-color: #babdbf; | |
height: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment