hippie-style/modules/io/_io_module.scss

83 lines
978 B
SCSS
Raw Normal View History

@use "../../global/config";
@use "../../global/common";
@use "../../global/typography";
@use "../../elements/interactive";
input[type="range"] {
accent-color: config.$color_text_io;
}
header,
aside,
footer {
&.io {
nav {
li,
label,
input[type="range"] {
margin: 0;
}
}
2025-06-22 17:41:31 +02:00
nav>span,
nav label,
.a_button {
@extend %basic;
@extend %size_io_button;
}
.a_button {
2025-06-22 17:41:31 +02:00
@extend .button_io;
}
.group {
display: flex;
flex-flow: row nowrap;
2025-06-22 17:41:31 +02:00
}
input:not([type="range"]) {
@extend .input_io;
}
2025-06-22 17:41:31 +02:00
select {
@extend .io_select;
}
button {
@extend .button_io;
&>* {
pointer-events: none;
}
}
}
}
header,
aside {
&.io {
padding: config.$space_basic;
textarea {
@extend .io_textarea;
}
}
}
header,
footer {
&.io {
@extend %flex-inline;
align-items: stretch;
}
}
table .io nav {
@extend %flex-inline;
flex-wrap: nowrap;
align-items: stretch;
button {
margin: config.$margin_io;
}
}