socialtree/src/public/util/simple-basic.scss

59 lines
1 KiB
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;
}
.mainLinkbox {
display: flex;
flex-direction: column;
gap: 1rem;
>a{
>button {
font-family: monospace;
font-size: 1rem;
font-weight: 600;
border: 4px solid;
width: 750px;
height: 3rem;
cursor: pointer;
transition: background-color .25s ease-in-out, color .25s ease-in-out;
&:hover {
background-position: 2rem;
}
}
}
}
.smallLinkbox {
margin: 1rem 0;
max-width: 500px;
display: flex;
flex-wrap: wrap;
gap: 1rem;
a {
font-size: 2rem;
text-decoration: none;
}
}