Created
June 29, 2016 12:54
-
-
Save don1138/50c92c13374e96a55073b2863208d59a 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
@media screen and (min-width: 720px) { | |
.table { | |
display: table; | |
width: 100%; | |
border-collapse: collapse; | |
} | |
} | |
.tr { | |
margin-bottom: 1.6rem; | |
} | |
@media screen and (min-width: 720px) { | |
.tr { | |
display: table-row; | |
} | |
} | |
@media screen and (min-width: 720px) { | |
.td { | |
display: table-cell; | |
border: #f0f0f0 1px solid; | |
padding: 0.4rem; | |
} | |
.td:first-child { | |
width: 11em; | |
} | |
} | |
.th { | |
font-size: 1rem; | |
line-height: 1.6rem; | |
font-family: "Palo Alto"; | |
} | |
@media screen and (min-width: 720px) { | |
.th { | |
font-size: 1.294rem; | |
line-height: 1.6rem; | |
} | |
} | |
@media screen and (min-width: 720px) { | |
.th { | |
font-size: 0.8rem; | |
line-height: 1.6rem; | |
font-family: "Roboto Slab", Rockwell, serif; | |
font-weight: 700; | |
} | |
} | |
@media screen and (min-width: 720px) and (min-width: 720px) { | |
.th { | |
font-size: 1rem; | |
line-height: 1.6rem; | |
} | |
} | |
.th::before { | |
content: 'display: '; | |
} | |
@media screen and (min-width: 720px) { | |
.th::before { | |
content: ''; | |
} | |
} | |
.th::after { | |
content: ';'; | |
} | |
@media screen and (min-width: 720px) { | |
.th::after { | |
content: ''; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment