You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Connected.Components/src/Connected.Components/Styles/layout/_css_documentation.scss

73 lines
1.3 KiB

@use "../globals" as *;
.color-picker-container {
margin-bottom: 1rem;
}
.color-picker > fieldset {
border: 0;
display: flex;
//flex-direction: column;
gap: 1.5rem;
width: fit-content;
//background: #fff;
padding: 0.5rem 1.5rem;
//position: fixed;
//top: 1rem;
//right: 0;
border-radius: 0 0 1rem 1rem;
}
.color-picker input[type="radio"] {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
width: 0.75rem;
height: 0.75rem;
outline: 2px solid var(--radio-color, currentColor);
outline-offset: 2px;
border-radius: 50%;
cursor: pointer;
}
.color-picker input[type="radio"]:checked {
background-color: var(--radio-color);
}
.color-picker input[type="radio"] {
--radio-color: hsl(225, 68%, 85%);
}
.color-picker input[type="radio"] {
--radio-color: rebeccapurple;
}
.color-picker input[type="radio"] {
--radio-color: #232323;
}
.square > * {
width: 8.5rem;
height: 8.5rem;
padding: 0.5rem;
display: flex;
justify-content: center;
align-items: center;
background: var(--element-fg-core);
border-color: $primary;
}
.grid.test > * {
text-align: center;
background: var(--element-fg-core);
border: 1px solid;
border-color: var(--border-core);
//color: inherit;
border-radius: $border-radius-lg;
}