How we bootstrap responsive web designs
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
styles/ | |
basics/ | |
shared/ | |
styles-compiled/ | |
scripts/ | |
lib/ |
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
selector | |
{ | |
/* Display and positioning */ | |
display: …; | |
visibility: …; | |
position: …; | |
top: …; | |
right: …; | |
bottom: …; | |
left: …; | |
z-index: …; | |
clear: …; | |
float: …; | |
/* Transforms and animations */ | |
transform: …; | |
animation: …; | |
transition: …; | |
/* Box model/layout */ | |
box-*: …; | |
margin: …; | |
outline: …; | |
border: …; | |
padding: …; | |
width: …; | |
min-width: …; | |
max-width: …; | |
height: …; | |
min-height: …; | |
max-height: …; | |
overflow: …; | |
clip: …; | |
resize: …; | |
table-layout: …; | |
/* Alignment */ | |
vertical-align: …; | |
text-align: …; | |
/* Background/foreground color */ | |
background: …; | |
color: …; | |
opacity: …; | |
/* Text properties */ | |
font-family: …; | |
font-size: …; | |
line-height: …; | |
direction: …; | |
font-style: …; | |
font-variant | |
text-decoration: …; | |
text-indent: …; | |
text-transform: …; | |
letter-spacing: …; | |
word-spacing: …; | |
word-break: …; | |
word-wrap: …; | |
quotes: …; | |
page-break-*: …; | |
list-style: …; | |
white-space: …; | |
} |
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
html | |
{ | |
font-size: 62.5% | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment