funky-framadate-front/src/assets/_global_layout.scss

45 lines
655 B
SCSS
Raw Normal View History

2019-08-10 16:20:59 +02:00
input, textarea,
select {
@extend .funky-box;
}
2019-08-10 17:41:01 +02:00
textarea {
border-left: 3px solid $main_color_strong;
}
2019-08-10 16:20:59 +02:00
.funky-box {
background: $light;
2019-08-10 16:20:59 +02:00
padding: 1em;
border-radius: 0.25em;
border: 1px solid $main_color;
border-bottom: 3px solid $main_color_strong;
2019-08-10 16:20:59 +02:00
&:focus {
color: $main_color_strong;
}
}
2019-08-10 16:20:59 +02:00
// buttons
.btn {
display: inline-block;
padding: 1em;
border-radius: 0.25em;
background: $main_color_strong;
color: $light;
border: 0;
2019-08-10 16:20:59 +02:00
margin: 1em;
min-height: 1.5rem;
}
2019-08-10 16:20:59 +02:00
a {
text-decoration: none;
}
.home_link {
text-decoration: none;
}
.striked {
background: linear-gradient($main_color, $main_color_strong);
}