42 lines
742 B
SCSS
42 lines
742 B
SCSS
/**
|
|
* Nursery Schedule
|
|
* @author Jonathan Bernard <jdbernard@gmail.com>
|
|
*/
|
|
|
|
/// Global Rules
|
|
* {
|
|
-moz-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0; }
|
|
|
|
/*html {
|
|
background-color: $bgColor;
|
|
color: $fgColor;
|
|
font-size: 150%; }*/
|
|
|
|
/* HTML5 elements */
|
|
article,aside,details,figcaption,figure,
|
|
footer,header,hgroup,menu,nav,section {
|
|
display:block; }
|
|
|
|
.sundays, .wednesdays { }
|
|
|
|
.first, .second, .third, .fourth, .fifth {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
width: 20em; }
|
|
|
|
h3 { margin-bottom: 0.5rem; }
|
|
|
|
ul { list-style: none; }
|
|
|
|
.am ul {
|
|
display: inline-block;
|
|
width: 9rem; }
|
|
|
|
div.am, div.pm {
|
|
margin-top: 0.5rem;
|
|
}
|