mirror of
https://github.com/seigler/dash-website
synced 2025-07-27 07:16:10 +00:00
35 lines
377 B
SCSS
35 lines
377 B
SCSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
color: $black;
|
|
background-color: $white;
|
|
}
|
|
|
|
.content {
|
|
width: 1280px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.col {
|
|
float: left
|
|
}
|
|
|
|
.button_container {
|
|
display: none;
|
|
}
|
|
|
|
// non-semantic concessions AKA utility classes
|
|
.clear {
|
|
clear: both;
|
|
display: block;
|
|
}
|
|
|
|
.right {
|
|
float: right;
|
|
display: inline-block;
|
|
}
|
|
|
|
.left {
|
|
float: left;
|
|
display: inline-block;
|
|
}
|