southwestradio-site/themes/swr/assets/css/style.scss

173 lines
2.8 KiB
SCSS
Raw Normal View History

2022-10-29 03:08:38 +00:00
body {
2022-11-10 23:41:26 +00:00
font: 14px/1.5 monospace;
2022-10-29 03:08:38 +00:00
background-color: #24202b;
color: white;
font-size: 14pt;
padding: 0;
margin: 0;
2022-11-24 13:47:26 +00:00
background-attachment: fixed;
background-image: linear-gradient( rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7) ),url('../background.jpg');
backdrop-filter: blur(5px);
2022-11-24 21:12:41 +00:00
min-height: 100vh;
}
#container {
2022-10-29 03:08:38 +00:00
display: flex;
flex-direction: column;
align-items: center;
}
#wrapper {
display: flex;
2022-10-29 21:11:56 +00:00
padding: 16px;
justify-content: space-evenly;
2022-10-29 03:08:38 +00:00
}
aside {
margin-right: 2em;
border: 1px solid;
2022-11-24 13:47:26 +00:00
border-radius: 3mm;
2022-10-29 21:11:56 +00:00
padding: 16px;
2022-11-24 13:47:26 +00:00
padding-top: 0;
padding-bottom: 0;
2022-10-29 03:08:38 +00:00
min-width: 5em;
2022-11-10 23:49:56 +00:00
align-self: start;
2022-10-29 03:08:38 +00:00
}
#player {
margin-left: 2em;
border: 1px solid;
2022-11-24 13:47:26 +00:00
border-radius: 3mm;
2022-10-29 21:11:56 +00:00
padding: 16px;
2022-11-10 23:49:56 +00:00
padding-bottom: 0;
2022-10-29 21:11:56 +00:00
display: flex;
justify-content: center;
align-items: center;
2022-11-10 23:49:56 +00:00
align-self: start;
2022-10-29 03:08:38 +00:00
}
#content {
border: 1px solid;
2022-11-24 13:47:26 +00:00
border-radius: 3mm;
2022-10-29 21:11:56 +00:00
padding: 16px;
2022-11-24 13:47:26 +00:00
padding-top: 0;
padding-bottom: 0;
width: 30vw;
}
#nav {
display: block;
list-style-type: none;
padding: 0;
margin: 0;
}
.menu-item {
margin-block-start: 1em;
margin-block-end: 1em;
2022-10-29 03:08:38 +00:00
}
a {
color: #cc61be;
2022-11-24 13:47:26 +00:00
text-decoration: none;
transition: 0.3s;
2022-11-24 13:47:26 +00:00
}
a:hover {
filter: brightness(150%);
2022-10-29 03:08:38 +00:00
}
#calendar {
display: flex;
2022-11-24 21:12:41 +00:00
justify-content: center;
padding-top: 10px;
padding-bottom: 10px;
}
2022-11-10 23:41:26 +00:00
h1 {
line-height: 1.2;
}
p {
display: block;
margin-inline-start: 0px;
margin-inline-end: 0px;
margin-block-start: 1em;
margin-block-end: 1em;
}
article {
padding-bottom: 24px;
}
.social-link {
fill: #cc61be;
transition: 0.3s;
}
.social-link:hover {
filter: brightness(150%);
}
#main-header {
text-shadow: 0px 0px 11px white;
transition: 0.3s;
}
#header-link {
color: white;
transition: unset;
}
#main-header:hover {
// color: red;
text-shadow: 0px 0px 18px white;
}
@media only screen and (max-width: 768px) {
#wrapper {
flex-direction: column;
align-items: center;
2022-11-24 21:12:41 +00:00
width: 85vw;
}
aside {
width: 100%;
margin: 0;
display: flex;
2022-11-24 13:47:26 +00:00
margin-bottom: 16px;
flex-direction: column;
align-items: center;
2022-11-11 11:03:52 +00:00
align-self: unset;
}
#content{
// max-width: 100%;
width: 100%;
2022-11-24 13:47:26 +00:00
margin-bottom: 16px;
2022-11-11 11:03:52 +00:00
max-width: unset;
2022-11-24 13:47:26 +00:00
min-width: unset;
}
#player {
width: 100%;
margin: 0;
2022-10-29 21:11:56 +00:00
padding: 16px;
2022-11-24 21:12:41 +00:00
padding-bottom: 0;
2022-11-11 11:03:52 +00:00
align-self: unset;
}
body {
padding: 10px;
}
#container {
2022-11-24 21:12:41 +00:00
min-width: 100%;
justify-content: center;
}
.menu-item {
display: flex;
justify-content: center;
}
2022-10-29 03:08:38 +00:00
}