funky-framadate-front/src/styles/partials/global.scss

82 lines
932 B
SCSS
Raw Normal View History

2020-04-21 10:50:26 +02:00
@charset "UTF-8";
html {
font-size: 1rem; /* 10px */
color: $font_color;
}
2021-12-09 11:21:41 +01:00
form {
margin: 0 !important;
}
2021-12-09 13:19:14 +01:00
2020-04-21 10:50:26 +02:00
main {
min-height: 90vh;
}
2021-11-08 10:34:59 +01:00
.min-height {
margin-top: 1em;
margin-bottom: 1em;
min-height: 50vh;
}
2021-11-07 21:08:38 +01:00
.content {
padding: 1em;
}
.main-footer {
background: $primary-color;
color: $white;
.title {
color: $white;
}
.content {
ul {
padding: 0;
margin-left: 0;
}
}
}
2021-12-09 10:38:13 +01:00
.columns {
&.half-columns {
2021-12-09 15:06:55 +01:00
max-width: 100%;
2021-12-09 10:38:13 +01:00
margin: 0 auto;
2021-12-09 11:21:41 +01:00
padding: 0;
2021-12-09 13:19:14 +01:00
2021-12-09 10:38:13 +01:00
.column {
padding: 0;
width: 50% !important;
float: left;
2021-12-09 13:19:14 +01:00
2021-12-09 11:21:41 +01:00
&:nth-of-type(1) {
padding-right: 1.5rem;
2021-12-09 13:19:14 +01:00
2021-12-09 11:21:41 +01:00
.step-info & {
padding: 0;
}
}
2021-12-09 13:19:14 +01:00
2021-12-09 11:21:41 +01:00
&:nth-of-type(2) {
padding-left: 1.5rem;
}
2021-12-09 13:19:14 +01:00
&.is-fullwidth {
width: 100% !important;
padding-right: 0 !important;
.button:nth-of-type(1) {
width: 50%;
float: right;
}
}
2021-12-09 11:21:41 +01:00
}
2021-12-09 13:19:14 +01:00
2021-12-09 11:21:41 +01:00
.button {
2021-12-09 13:19:14 +01:00
.is-half-offseted {
float: right;
}
2021-12-09 10:38:13 +01:00
}
}
}