bunteshaus.de/themes/buha/assets/scss/main.scss

60 lines
967 B
SCSS
Raw Permalink Normal View History

2022-06-12 13:50:06 +02:00
.page-intro {
text-align: center;
a { text-decoration: underline; }
margin-top: 3rem;
margin-bottom: 1rem;
2022-06-12 19:33:47 +02:00
font-size: 120%;
2022-06-12 13:50:06 +02:00
}
2022-06-12 18:34:24 +02:00
2022-06-24 20:39:21 +02:00
.nonselect {
-webkit-user-select: none;
cursor:not-allowed; /*makes it even more obvious*/
}
2022-06-15 23:55:58 +02:00
.main_wrapper {
2022-06-15 16:46:17 +02:00
overflow-x: auto;
width: 98vw;
2022-06-12 13:50:06 +02:00
margin-left: auto;
2022-06-15 16:39:09 +02:00
margin-right: 0;
2022-06-15 16:46:17 +02:00
padding-right: 1vw;
2022-06-15 00:05:16 +02:00
aside {
text-align: center;
}
.main_upper {
display: flex;
flex-direction: column;
2022-06-15 11:35:50 +02:00
flex-grow: 1;
}
2022-06-15 23:56:42 +02:00
.main {
2022-06-15 11:35:50 +02:00
display: flex;
flex-direction: column;
min-height: 60vh;
2022-06-15 00:05:16 +02:00
}
2022-06-08 00:38:13 +02:00
}
2022-06-24 20:39:21 +02:00
.notselectable {
user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
}
2022-06-08 00:38:13 +02:00
2022-06-12 13:50:06 +02:00
2022-06-08 00:38:13 +02:00
@media (min-width: 640px) {
2022-06-15 23:56:42 +02:00
.main {
2022-06-12 16:59:25 +02:00
width: 89%;
2022-06-08 00:38:13 +02:00
margin-left: auto;
2022-06-15 23:54:07 +02:00
margin-right: auto;
2022-06-12 13:50:06 +02:00
aside {
text-align: right;
2022-06-12 14:22:25 +02:00
min-width: 20%;
2022-06-15 02:21:51 +02:00
margin-left: 1vw;
2022-06-12 13:50:06 +02:00
}
.main_upper {
flex-direction: row;
justify-content: space-between;
}
2022-06-08 00:38:13 +02:00
}
}