mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-08 07:25:05 +01:00
184 lines
3.2 KiB
SCSS
184 lines
3.2 KiB
SCSS
|
|
* {
|
|
box-sizing:border-box;
|
|
}
|
|
|
|
hr {
|
|
display:block;
|
|
background:black;
|
|
padding:1.5dp;
|
|
}
|
|
|
|
body {
|
|
font-family: chiaro;
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-size: 20dp;
|
|
color: #fff
|
|
}
|
|
|
|
/* div {
|
|
focus:none;
|
|
tab-index:none;
|
|
} */
|
|
|
|
div#window {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
background-color: $color-background-2;
|
|
border-color: $color-border;
|
|
}
|
|
|
|
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;
|
|
cursor: text;
|
|
text-align: left
|
|
}
|
|
|
|
textarea {
|
|
padding: 14dp 12dp 10dp;
|
|
cursor: text;
|
|
text-align: left
|
|
}
|
|
|
|
input.text,
|
|
input.password,
|
|
select,
|
|
textarea {
|
|
/* color: #333; */
|
|
/* font-size: 13dp */
|
|
height: auto;
|
|
}
|
|
|
|
table input.text {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
/* height: 18dp; */
|
|
margin: 0;
|
|
/* padding: 0 5dp; */
|
|
line-height: 1;
|
|
border-width: $border-width-thickness;
|
|
border-color: #000;
|
|
background-color: #fff;
|
|
font-size: 15dp;
|
|
decorator: none;
|
|
height: auto;
|
|
/* vertical-align: center; */
|
|
}
|
|
|
|
select {
|
|
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 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)
|
|
}
|
|
|
|
input.radio,
|
|
input.checkbox {
|
|
flex: 0;
|
|
tab-index:auto;
|
|
focus:auto;
|
|
nav-up:auto;
|
|
nav-down:auto;
|
|
nav-right:auto;
|
|
nav-left:auto;
|
|
width:0dp;
|
|
}
|