forked from mbk-lab/rui_orig
147 lines
1.7 KiB
CSS
147 lines
1.7 KiB
CSS
* {
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
min-width: 1px;
|
|
min-height: 1px;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
body {
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
height: 100vh;
|
|
}
|
|
|
|
div {
|
|
cursor: default;
|
|
}
|
|
|
|
p, h1, h2, h3, h4, h5, h6, blockquote, code, table {
|
|
cursor: text;
|
|
-webkit-user-select: auto;
|
|
user-select: auto;
|
|
}
|
|
|
|
/*
|
|
div:focus {
|
|
outline: none;
|
|
}
|
|
*/
|
|
|
|
input {
|
|
margin: 2px;
|
|
padding: 1px;
|
|
font-size: inherit;
|
|
}
|
|
|
|
select {
|
|
margin: 2px;
|
|
font-size: inherit;
|
|
}
|
|
|
|
button {
|
|
font-size: inherit;
|
|
}
|
|
|
|
textarea {
|
|
margin: 2px;
|
|
padding: 1px;
|
|
overflow: auto;
|
|
font-size: inherit;
|
|
}
|
|
|
|
ul:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.ruiRoot {
|
|
position: absolute;
|
|
top: 0px;
|
|
bottom: 0px;
|
|
right: 0px;
|
|
left: 0px;
|
|
}
|
|
|
|
.ruiPopupLayer {
|
|
background-color: rgba(128,128,128,0.1);
|
|
position: absolute;
|
|
top: 0px;
|
|
bottom: 0px;
|
|
right: 0px;
|
|
left: 0px;
|
|
}
|
|
|
|
.ruiView {
|
|
}
|
|
|
|
.ruiAbsoluteLayout {
|
|
position: relative;
|
|
}
|
|
|
|
.ruiGridLayout {
|
|
display: grid;
|
|
}
|
|
|
|
.ruiListLayout {
|
|
display: flex;
|
|
}
|
|
|
|
.ruiStackLayout {
|
|
display: grid;
|
|
}
|
|
|
|
.ruiStackPageLayout {
|
|
display: grid;
|
|
width: 100%;
|
|
height: 100%;
|
|
align-items: stretch;
|
|
justify-items: stretch;
|
|
grid-column-start: 1;
|
|
grid-column-end: 2;
|
|
grid-row-start: 1;
|
|
grid-row-end: 2;
|
|
}
|
|
|
|
.ruiTabsLayout {
|
|
display: grid;
|
|
}
|
|
|
|
.ruiImageView {
|
|
display: block;
|
|
}
|
|
|
|
.ruiSvgImageView {
|
|
display: grid;
|
|
}
|
|
|
|
.ruiListView {
|
|
overflow: auto;
|
|
}
|
|
|
|
/*
|
|
@media (prefers-color-scheme: light) {
|
|
body {
|
|
background: #FFF;
|
|
color: #000;
|
|
}
|
|
.ruiRoot {
|
|
background-color: #FFFFFF;
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background: #303030;
|
|
color: #F0F0F0;
|
|
}
|
|
.ruiRoot {
|
|
background-color: #303030;
|
|
}
|
|
}
|
|
*/
|