59 lines
967 B
SCSS
59 lines
967 B
SCSS
@import "variables";
|
|
@import "mediaqueries";
|
|
|
|
body {
|
|
background: linear-gradient(35deg, rgba(255,0,255,0.2) 0, rgba(13,79,153,0.8) 100%),
|
|
url('/img/bg-1.jpg');
|
|
background-size: cover;
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
body#admin {
|
|
background: linear-gradient(35deg, rgba(255,0,255,0.2) 0, rgba(153,12,14,0.9) 100%),
|
|
url('/img/bg-1.jpg');
|
|
background-size: cover;
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
.ks-site-icon {
|
|
svg {
|
|
display: inline-block;
|
|
height: 1.875rem;
|
|
vertical-align: top;
|
|
width: auto;
|
|
}
|
|
}
|
|
|
|
main {
|
|
p {
|
|
line-height: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
|
|
&.notice {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
margin-bottom: 1.5rem;
|
|
|
|
li {
|
|
line-height: 1.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
|
|
&.services {
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
grid-row-gap: 1rem;
|
|
grid-column-gap: 2rem;
|
|
|
|
@include media-max(small) {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|
|
}
|