28 lines
627 B
CSS
28 lines
627 B
CSS
body {
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-size: 20px;
|
|
color: #222;
|
|
text-decoration: none;
|
|
background-color: #D7C2FF;
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
limited-margin {
|
|
position: relative;
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 85%;
|
|
max-width: 1200px;
|
|
}
|
|
|
|
/* responsive sidebar stop scrolling */
|
|
/* also making sure this is applied any time it's on a mobile device */
|
|
@media (pointer:none), (pointer:coarse), screen and (max-width: 900px) {
|
|
limited-margin {
|
|
width: 100%;
|
|
}
|
|
}
|