southwestradio-site/themes/swr/assets/css/style.scss
2022-11-29 13:17:25 +03:00

93 lines
1.4 KiB
SCSS

@font-face {
font-family: 'ShareTechMono';
src: url('../fonts/ShareTechMono-Regular.ttf');
}
body {
font-family: 'ShareTechMono';
background-color: #24202b;
color: white;
font-size: 14pt;
padding: 0;
margin: 0;
}
#container {
display: flex;
flex-direction: column;
align-items: center;
}
#wrapper {
display: flex;
padding: 16px;
justify-content: space-evenly;
}
aside {
margin-right: 2em;
border: 1px solid;
padding: 16px;
min-width: 5em;
}
#player {
margin-left: 2em;
border: 1px solid;
padding: 16px;
display: flex;
justify-content: center;
align-items: center;
}
#content {
border: 1px solid;
padding: 16px;
// min-width: 40em;
}
a {
color: #cc61be;
}
#calendar {
display: flex;
justify-content: center;
}
@media only screen and (max-width: 768px) {
#wrapper {
flex-direction: column;
align-items: center;
}
aside {
width: 100%;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
}
#content{
// max-width: 100%;
width: 100%;
// min-width: unset;
}
#player {
width: 100%;
margin: 0;
padding: 16px;
}
body {
padding: 10px;
// width: 100vh;
}
#container {
width: 100%;
justify-content: center;
}
}