2021-12-16 19:11:52 -05:00
|
|
|
:root {
|
|
|
|
|
--fg-gray: #495057;
|
|
|
|
|
--bg-gray: rgba(0,0,0,0.25);
|
|
|
|
|
--gradbar: linear-gradient(to right, #ddd, #666, #ddd);
|
|
|
|
|
--holdbar: linear-gradient(to top, rgba(100,100,100,0.1), rgba(255,255,255,1), rgba(100,100,100,0.1));
|
|
|
|
|
--holdbar-sf: linear-gradient(to top, rgba(200,200,200,0.1), rgba(255,255,255,1), rgba(200,200,200,0.1)) !important;
|
|
|
|
|
--highlight: rgba(126,153,183,0.4);
|
|
|
|
|
--main-color: rgba(126,153,183,1);
|
|
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
2021-12-16 19:11:52 -05:00
|
|
|
@font-face {
|
|
|
|
|
font-family: 'Russo One';
|
2021-12-26 19:43:48 -05:00
|
|
|
src: url('/kiri/ext/russo-one.ttf');
|
2021-12-16 19:11:52 -05:00
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
2021-12-16 19:11:52 -05:00
|
|
|
a, a:hover, a:visited {
|
|
|
|
|
border: none;
|
|
|
|
|
color: inherit;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
|
|
|
|
div {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-16 19:11:52 -05:00
|
|
|
#app {
|
|
|
|
|
position: fixed;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
font-size: larger;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
|
|
|
|
#app-info {
|
2021-12-16 19:11:52 -05:00
|
|
|
top: 50%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translateX(-50%) translateY(-50%);
|
|
|
|
|
z-index: 50;
|
|
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
|
|
|
|
#app-info:hover #app-vers {
|
2021-12-26 19:43:48 -05:00
|
|
|
display: flex;
|
2021-12-16 19:11:52 -05:00
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
|
|
|
|
#app-vers {
|
2021-12-26 19:43:48 -05:00
|
|
|
display: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
font-size: smaller;
|
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
margin-top: 5px;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
left: 50%;
|
|
|
|
|
top: 100%;
|
|
|
|
|
color: var(--fg-gray);
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
background-color: white;
|
|
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
|
|
|
|
#app-info {
|
2021-12-26 19:43:48 -05:00
|
|
|
cursor: pointer;
|
2021-12-16 19:11:52 -05:00
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
|
|
|
|
#top-sep {
|
2021-12-26 19:43:48 -05:00
|
|
|
z-index: 14;
|
|
|
|
|
height: 1px;
|
|
|
|
|
background-image: var(--gradbar);
|
|
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
|
|
|
|
#loading {
|
2021-12-16 19:11:52 -05:00
|
|
|
width: 40px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
padding-right: 15px;
|
|
|
|
|
position: fixed;
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
2021-12-16 19:11:52 -05:00
|
|
|
.noselect {
|
|
|
|
|
-khtml-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hide {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
.noshow {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
.grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
.f-row {
|
2021-12-16 19:11:52 -05:00
|
|
|
flex-direction: row;
|
|
|
|
|
}
|
|
|
|
|
.f-col {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
.grow {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
.a-start {
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
}
|
|
|
|
|
.a-center {
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.a-end {
|
|
|
|
|
align-items: flex-end;
|
|
|
|
|
}
|
|
|
|
|
.a-stretch {
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
}
|
|
|
|
|
.j-start {
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
.j-center {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
.j-end {
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
.center {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.russo {
|
|
|
|
|
font-family: 'Russo One', sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:-moz-any() {
|
|
|
|
|
overflow-x: hidden !important;
|
|
|
|
|
overflow-y: hidden !important;
|
|
|
|
|
}
|
|
|
|
|
:-moz-any() {
|
|
|
|
|
overflow-x: scroll !important;
|
|
|
|
|
overflow-y: scroll !important;
|
|
|
|
|
margin-right: -14px !important;
|
|
|
|
|
margin-bottom: -14px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#curtain {
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
position: fixed;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
font-family: 'Russo One', sans-serif;
|
2021-12-26 20:01:56 -05:00
|
|
|
z-index: 50000;
|
2021-12-16 19:11:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#container {
|
|
|
|
|
position: fixed;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
2021-12-16 19:11:52 -05:00
|
|
|
#container canvas {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#top {
|
|
|
|
|
font-family: 'Russo One', sans-serif;
|
|
|
|
|
background-color: rgba(255,255,255,0.75);
|
|
|
|
|
padding: 3px;
|
|
|
|
|
z-index: 15;
|
|
|
|
|
}
|
2021-12-26 20:01:56 -05:00
|
|
|
|
2021-12-16 19:11:52 -05:00
|
|
|
#top > div {
|
|
|
|
|
margin: 0 5px 0 5px;
|
|
|
|
|
}
|