Last active
August 29, 2015 14:21
-
-
Save elbertwang/1e87c1d454b566145a68 to your computer and use it in GitHub Desktop.
sike css
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
.info-section{ | |
background-color: #fff; | |
padding: 30px 60px; | |
} | |
.info-section header{ | |
text-align: center; | |
} | |
.info-section header h2 { | |
font-size: 28px; | |
text-transform: uppercase; | |
letter-spacing: 3px; | |
} | |
.info-section header h2:after { | |
text-align: center; | |
content:""; | |
display:table; | |
clear:both; | |
border-bottom: 3px solid black; | |
} | |
.info-section ul li{ | |
margin-bottom: 60px; | |
} | |
.info-section__description { | |
font-style: italic; | |
} | |
.whatido__skill-list{ | |
list-style: none; | |
padding: 0; | |
margin: 0; | |
margin-top: 60px; | |
} | |
.whatido__skill{ | |
float: left; | |
text-align: center; | |
padding-top: 100px; | |
background-repeat: no-repeat; | |
background-position: center top; | |
width: 33%; | |
} | |
.whatido__skill--code { | |
background-image: url(../img/skill-code.png); | |
} | |
.whatido__skill--design { | |
background-image: url(../img/skill-design.png); | |
} | |
.whatido__skill--product{ | |
background-image: url(../img/skill-product.png); | |
} | |
.whatido__skill--product:after{ | |
clear: both; | |
display: table; | |
content: ""; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment