2024-04-21 17:54:48 +02:00
|
|
|
/* stylelint-disable color-no-hex */
|
|
|
|
/* stylelint-disable selector-max-id */
|
2024-01-06 19:48:51 +01:00
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing:border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
display:block;
|
|
|
|
padding:1.5dp;
|
2024-04-21 17:54:48 +02:00
|
|
|
background: $color-background-1;
|
2024-01-06 19:48:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2024-04-21 17:54:48 +02:00
|
|
|
color: #fff;
|
2024-01-06 19:48:51 +01:00
|
|
|
font-family: chiaro;
|
|
|
|
font-size: 20dp;
|
2024-04-21 17:54:48 +02:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: normal
|
2024-01-06 19:48:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* div {
|
|
|
|
focus:none;
|
|
|
|
tab-index:none;
|
|
|
|
} */
|
|
|
|
|
|
|
|
div#window {
|
2024-01-07 22:33:22 +01:00
|
|
|
position: relative;
|
2024-04-21 17:54:48 +02:00
|
|
|
box-sizing: border-box;
|
2024-01-06 19:48:51 +01:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2024-01-07 01:04:28 +01:00
|
|
|
border-color: $color-border;
|
2024-04-21 17:54:48 +02:00
|
|
|
background-color: $color-background-2;
|
2024-01-06 19:48:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div#content {
|
|
|
|
z-index: 2;
|
|
|
|
width: auto;
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden auto;
|
|
|
|
text-align: center
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
input.submit {
|
|
|
|
margin-left: 0
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
input.text,
|
|
|
|
input.password {
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: 31dp;
|
|
|
|
padding: 11dp 10dp 0;
|
2024-04-21 17:54:48 +02:00
|
|
|
text-align: left;
|
|
|
|
cursor: text
|
2024-01-06 19:48:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
padding: 14dp 12dp 10dp;
|
2024-04-21 17:54:48 +02:00
|
|
|
text-align: left;
|
|
|
|
cursor: text
|
2024-01-06 19:48:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
input.text,
|
|
|
|
input.password,
|
|
|
|
select,
|
|
|
|
textarea {
|
|
|
|
/* color: #333; */
|
2024-04-21 17:54:48 +02:00
|
|
|
|
2024-01-06 19:48:51 +01:00
|
|
|
/* font-size: 13dp */
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
table input.text {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
2024-04-21 17:54:48 +02:00
|
|
|
height: auto;
|
|
|
|
|
2024-01-06 19:48:51 +01:00
|
|
|
/* height: 18dp; */
|
|
|
|
margin: 0;
|
2024-01-19 20:06:06 +01:00
|
|
|
border-width: $border-width-thickness;
|
2024-01-06 19:48:51 +01:00
|
|
|
border-color: #000;
|
|
|
|
background-color: #fff;
|
|
|
|
font-size: 15dp;
|
2024-04-21 17:54:48 +02:00
|
|
|
|
|
|
|
/* padding: 0 5dp; */
|
|
|
|
line-height: 1;
|
2024-01-06 19:48:51 +01:00
|
|
|
decorator: none;
|
2024-04-21 17:54:48 +02:00
|
|
|
|
2024-01-06 19:48:51 +01:00
|
|
|
/* vertical-align: center; */
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
2024-02-27 16:13:16 +01:00
|
|
|
// display: inline-block;
|
|
|
|
// /* width: 175dp; */
|
|
|
|
// /* height: 37dp; */
|
|
|
|
// /* height: auto; */
|
|
|
|
// text-align: left;
|
|
|
|
// box-sizing:border-box;
|
|
|
|
// /* padding: 4dp; */
|
|
|
|
// vertical-align: center;
|
|
|
|
// padding: 4dp;
|
|
|
|
// border-radius: 5dp;
|
|
|
|
// background-color: rgb(120, 120, 120);
|
|
|
|
// width: 100%;
|
|
|
|
}
|
|
|
|
// select {
|
|
|
|
// @extend %body;
|
|
|
|
// display: flex;
|
|
|
|
// align-items: center;
|
|
|
|
// justify-content: flex-start;
|
|
|
|
// box-sizing: border-box;
|
|
|
|
// padding: space(16);
|
|
|
|
// flex: 1 1 100%;
|
|
|
|
// // width: auto;
|
|
|
|
// height: space(1000);
|
|
|
|
// border-radius: $border-radius-lg;
|
|
|
|
// background-color: $color-white-a20;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// select selectvalue {
|
|
|
|
// height: auto;
|
|
|
|
// /* padding: 4dp; */
|
|
|
|
// /* margin-right: 30dp; */
|
|
|
|
// /* height: 25dp; */
|
|
|
|
// /* padding: 4dp; */
|
|
|
|
// /* decorator: image(selectvalue) */
|
|
|
|
// }
|
|
|
|
|
|
|
|
// select:hover selectvalue {
|
|
|
|
// /* margin-right: 30dp; */
|
|
|
|
// /* height: 25dp; */
|
|
|
|
// /* padding: 4dp; */
|
|
|
|
// background-color: rgb(150, 150, 150);
|
|
|
|
// /* decorator: image(selectvalue) */
|
|
|
|
// }
|
|
|
|
|
|
|
|
// select selectarrow {
|
|
|
|
// /* width: 30dp; */
|
|
|
|
// /* height: 37dp; */
|
|
|
|
// /* decorator: image(selectarrow) */
|
|
|
|
// /* background-color: black; */
|
|
|
|
// /* appearance: none; */
|
|
|
|
// }
|
|
|
|
|
|
|
|
// select:hover selectarrow {
|
|
|
|
// /* decorator: image(selectarrow-hover) */
|
|
|
|
// }
|
|
|
|
|
|
|
|
// select:active selectarrow,
|
|
|
|
// select selectarrow:checked {
|
|
|
|
// /* decorator: image(selectarrow-active) */
|
|
|
|
// }
|
|
|
|
|
|
|
|
// select selectbox {
|
|
|
|
// /* margin-left: 1dp; */
|
|
|
|
// /* margin-top: -7dp; */
|
|
|
|
// /* margin-bottom: -10dp; */
|
|
|
|
// /* width: 162dp; */
|
|
|
|
// /* padding: 1dp 4dp 4dp 4dp */
|
|
|
|
// }
|
|
|
|
|
|
|
|
// select selectbox,
|
|
|
|
// tbody {
|
|
|
|
// background-color: rgb(120,120,120);
|
|
|
|
// /* decorator: tiled-box(selectbox-tl, selectbox-t, selectbox-tr, selectbox-l, selectbox-c, auto, selectbox-bl, selectbox-b, selectbox-br) */
|
|
|
|
// }
|
|
|
|
|
|
|
|
// select selectbox option {
|
|
|
|
// width: auto;
|
|
|
|
// background-color: rgb(120, 120, 120)
|
|
|
|
// }
|
|
|
|
|
|
|
|
// select selectbox option:nth-child(even),
|
|
|
|
// tr:nth-child(even) {
|
|
|
|
// background-color: rgb(100, 100, 100)
|
|
|
|
// }
|
|
|
|
|
|
|
|
// select selectbox option:checked {
|
|
|
|
// font-weight:bold;
|
|
|
|
// color:rgb(255,255,255);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// select selectbox option:hover {
|
|
|
|
// background: rgb(150,150,150)
|
|
|
|
// }
|
2024-01-06 19:48:51 +01:00
|
|
|
|
2024-06-28 16:36:40 +02:00
|
|
|
input.radio {
|
2024-01-06 19:48:51 +01:00
|
|
|
flex: 0;
|
2024-04-21 17:54:48 +02:00
|
|
|
width:0dp;
|
2024-01-06 19:48:51 +01:00
|
|
|
nav-up:auto;
|
|
|
|
nav-right:auto;
|
2024-04-21 17:54:48 +02:00
|
|
|
nav-down:auto;
|
2024-01-06 19:48:51 +01:00
|
|
|
nav-left:auto;
|
2024-04-21 17:54:48 +02:00
|
|
|
tab-index:auto;
|
|
|
|
focus:auto;
|
2024-01-06 19:48:51 +01:00
|
|
|
}
|
2024-06-28 16:36:40 +02:00
|
|
|
|
|
|
|
input.checkbox {
|
|
|
|
width: space(20);
|
|
|
|
height: space(20);
|
|
|
|
nav-up:auto;
|
|
|
|
nav-right:auto;
|
|
|
|
nav-down:auto;
|
|
|
|
nav-left:auto;
|
|
|
|
tab-index:auto;
|
|
|
|
focus:auto;
|
|
|
|
}
|