mirror of
https://github.com/safing/web
synced 2025-09-01 18:49:06 +00:00
151 lines
2.3 KiB
SCSS
151 lines
2.3 KiB
SCSS
content.kickstarter-plug {
|
|
width: 100%;
|
|
|
|
a {
|
|
width: 100%;
|
|
background-color: #05F2BA;
|
|
text-decoration: none;
|
|
color: black;
|
|
|
|
div {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
padding: 3.5em;
|
|
|
|
h3 {
|
|
text-decoration: underline;
|
|
font-weight: normal;
|
|
font-size: 1.5em;
|
|
margin-bottom: 0.4em;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
footer{
|
|
color: white;
|
|
height: 45vh;
|
|
display: grid;
|
|
grid-auto-columns: auto;
|
|
grid-template-columns: 1fr;
|
|
grid-row: 0;
|
|
grid-column: 2/4;
|
|
align-items: center;
|
|
}
|
|
|
|
footer .vhidden {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.f-bg{
|
|
grid-row: 0;
|
|
grid-column: span 5;
|
|
background-color: black;
|
|
background-image: url(/assets/img/f-bg.png);
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
z-index: -1;
|
|
}
|
|
|
|
footer a{
|
|
color: white;
|
|
text-decoration: none;
|
|
opacity: 0.5;
|
|
transition:.5s;
|
|
}
|
|
|
|
footer a:hover{
|
|
opacity: 1;
|
|
text-decoration: none;
|
|
}
|
|
|
|
|
|
footer div{
|
|
|
|
}
|
|
|
|
footer .list{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-self: center;
|
|
}
|
|
|
|
footer .list ul{
|
|
padding: 6rem 3rem 0 3rem;
|
|
}
|
|
|
|
footer .list ul span{
|
|
font-size: 1.5rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
footer .list ul li{
|
|
padding-top: 1rem;
|
|
list-style-type: none;
|
|
}
|
|
|
|
footer .list ul li a{
|
|
color: white;
|
|
text-decoration: none;
|
|
opacity: 0.5;
|
|
transition:.5s;
|
|
}
|
|
|
|
footer .list ul li a:hover{
|
|
opacity: 1;
|
|
text-decoration: none;
|
|
}
|
|
|
|
footer .legal{
|
|
grid-row: 2;
|
|
align-self: end;
|
|
justify-self: end;
|
|
padding-bottom: 3rem;
|
|
padding-right: 5rem;
|
|
}
|
|
|
|
footer .legal ul{
|
|
display: flex;
|
|
}
|
|
|
|
footer .legal ul li{
|
|
padding-left: 2rem;
|
|
list-style-type: none;
|
|
}
|
|
|
|
@media (max-width: 1318px) {
|
|
footer{
|
|
height: 45vh;
|
|
border-top-style: solid;
|
|
// border-top-width: 8rem; removed because of KS plug banner
|
|
}
|
|
|
|
footer .list ul{
|
|
padding-top: 2rem;
|
|
padding-left: 6rem;
|
|
}
|
|
|
|
footer .legal{
|
|
padding-top: 3rem;
|
|
}
|
|
|
|
footer .list ul{
|
|
padding-left: 0rem;
|
|
padding-right: 3rem;
|
|
|
|
}
|
|
|
|
.f-bg{
|
|
background-image: none;
|
|
}
|
|
|
|
footer .list{
|
|
display: block;
|
|
align-items: center;
|
|
justify-self: center;
|
|
}
|
|
|
|
|
|
}
|