59 lines
1.2 KiB
SCSS
59 lines
1.2 KiB
SCSS
/** Global **/
|
|
|
|
/* Windows */
|
|
.window-app {
|
|
.window-content {
|
|
z-index: 1;
|
|
position: relative;
|
|
background: url("../assets/imgs/bgL5R.webp") no-repeat;
|
|
background-size: cover;
|
|
}
|
|
.window-resizable-handle {
|
|
z-index: 2;
|
|
background: $black;
|
|
}
|
|
}
|
|
|
|
/* Focus, Active */
|
|
* {
|
|
transition-property: background, color, border-color, text-shadow, box-shadow;
|
|
transition-duration: 0.5s;
|
|
transition-timing-function: ease;
|
|
}
|
|
input[type="text"]:focus,
|
|
input[type="number"]:focus,
|
|
input[type="password"]:focus,
|
|
input[type="date"]:focus,
|
|
input[type="time"]:focus {
|
|
box-shadow: 0 0 6px $red;
|
|
}
|
|
.tabs .item.active {
|
|
text-shadow: 0 0 10px $red;
|
|
}
|
|
#controls .scene-control.active,
|
|
#controls .control-tool.active,
|
|
#controls .scene-control:hover,
|
|
#controls .control-tool:hover {
|
|
box-shadow: 0 0 10px $red;
|
|
}
|
|
|
|
/* lists */
|
|
ul,
|
|
li {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
// inputs
|
|
input[type="text"],
|
|
input[type="number"],
|
|
input[type="password"],
|
|
input[type="date"],
|
|
input[type="time"] {
|
|
background: $l5r5e-white;
|
|
border: 1px solid $l5r5e-title;
|
|
padding: 0.25rem;
|
|
color: $l5r5e-bold;
|
|
}
|