Files
legolog/client/public/global.css
Benjamin Kyd b652d8cd6b product listing
Former-commit-id: 1ee2385fa95125e08311a8e15b7ac4b38c111e26
2022-03-29 00:23:42 +01:00

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;
}