46 lines
860 B
CSS
46 lines
860 B
CSS
body {
|
|
font-family: 'Josefin Sans', sans-serif;
|
|
/* all EM in the document is based off this DONT TOUCH */
|
|
/* it's also kinda the default so you can touch it if you want */
|
|
/* BODY TEXT SHOULD BE 1EM */
|
|
font-size: 16px;
|
|
color: #222;
|
|
text-decoration: none;
|
|
background-color: #D7C2FF;
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
transition: all 250ms ease-in;
|
|
}
|
|
|
|
limited-margin {
|
|
position: relative;
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 85%;
|
|
max-width: 1400px;
|
|
}
|
|
|
|
/* small screen */
|
|
@media screen and (max-width: 900px) {
|
|
limited-margin {
|
|
width: 90%;
|
|
}
|
|
}
|
|
|
|
/* mobile */
|
|
@media (pointer:none), (pointer:coarse) {
|
|
body {
|
|
font-size: 25px;
|
|
}
|
|
|
|
limited-margin {
|
|
width: 95%;
|
|
}
|
|
}
|
|
|
|
#top-picks {
|
|
font-size: 1em;
|
|
}
|