This repository has been archived on 2024-09-11. You can view files and clone it, but cannot push or open issues or pull requests.
Files
IT2/resources/css/scss/_classes.scss
2020-01-30 10:05:39 +01:00

67 lines
1.0 KiB
SCSS

.center {
background-color: $grey3;
margin: auto;
margin-bottom: 10%;
width: 70%;
padding: 5%;
height: max-content;
border-radius: $radius;
* {
margin: auto;
display: block;
}
}
.inline {
margin: $standardMargin;
* {display: inline-block;}
}
.leftalign * {
margin: $standardMargin;
text-align: left;
}
.textboxGrid {
display: grid;
justify-content: space-evenly;
align-content: space-evenly;
grid: {
template-columns: repeat(3, 1fr);
column-gap: auto;
row-gap: 20px;
}
* {
size: 100%;
padding: 40px 80px;
background-color: $grey4;
}
.linkElement {
border: 1px solid black;
&:hover {
background-color: $grey3;
cursor: pointer;
}
a:hover {
text-decoration: underline;
color: $linkStill;
}
* {
margin: 0px;
padding: 0px;
background-color: transparent;
}
}
}