socialtree/src/public/util/simple-basic.scss
2022-10-21 16:00:48 +02:00

51 lines
992 B
SCSS

@import "colors.scss";
body {
min-height: 100vh;
}
.container {
padding-top: 3rem;
display: flex;
flex-direction: column;
align-items: center;
gap: .5rem;
}
.headingbox>h1 {
font-size: 1.5rem;
font-weight: 800;
font-family: monospace;
}
.imgbox>img {
height: 10rem;
width: 10rem;
border-radius: .5rem;
}
.linkbox {
display: flex;
flex-direction: column;
gap: 1rem;
>a{
>button {
font-family: monospace;
font-size: 1rem;
font-weight: 600;
background-color: $no_alpha;
color: $white;
border: 4px solid $white;
width: 750px;
height: 3rem;
cursor: pointer;
transition: background-color .25s ease-in-out, color .25s ease-in-out;
&:hover {
background-color: $white;
color: #ff9601;
background-position: 2rem;
}
}
}
}