Spaces:
Runtime error
Runtime error
body { | |
background-color: rgb(255, 255, 255); | |
font-family: 'IBM Plex Sans', sans-serif; | |
font-weight: 400; | |
} | |
.sticky { | |
position: fixed; | |
} | |
.noscroll { | |
overflow: hidden; | |
} | |
.vpartial { | |
max-height: 90vh; | |
} | |
.scrolling { | |
overflow: auto; | |
max-height: 98%; | |
} | |
.btn { | |
.btn-xs { | |
padding : .25rem .4rem; | |
font-size : .875rem; | |
line-height : .5; | |
border-radius : .2rem; | |
} | |
} | |
button { | |
-webkit-transition-duration: 0.4s; /* Safari */ | |
transition-duration: 0.4s; | |
background: transparent; | |
padding: 5px; | |
border-radius: 5px; | |
background-color: lightgray; | |
&.selected { | |
background-color: #98b7d9; | |
} | |
} | |
button:active :focus { | |
background-color: #98b7d9; | |
} | |
#loader { | |
border: 5px solid #f3f3f3; | |
border-radius: 50%; | |
border-top: 5px solid #3498db; | |
width: 100px; | |
height: 100px; | |
-webkit-animation: spin 2s linear infinite; /* Safari */ | |
animation: spin 2s linear infinite; | |
position: absolute; | |
left: 50%; | |
top: 20%; | |
display: none; | |
} | |
/* Safari */ | |
@-webkit-keyframes spin { | |
0% { | |
-webkit-transform: rotate(0deg); | |
} | |
100% { | |
-webkit-transform: rotate(360deg); | |
} | |
} | |
@keyframes spin { | |
0% { | |
transform: rotate(0deg); | |
} | |
100% { | |
transform: rotate(360deg); | |
} | |
} | |
svg { | |
vertical-align: top; | |
} | |
select { | |
font-size: 9pt; | |
font-weight: 600; | |
//background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10px' height='10px'><polyline points='0,0 10,0 5,10'/></svg>"); | |
background-color: transparent; | |
//background-repeat: no-repeat; | |
//background-position: right 5px top 9px; | |
//background-size: 7px 7px; | |
//padding: 5px 15px 5px 5px; | |
padding: 8px 6px; | |
//width: auto; | |
//font-size:16px; | |
//font-weight: bold; | |
//text-align:center; | |
//text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25); | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
border-radius: 4px; | |
border: 0; | |
outline: 0; | |
} | |
.navbar { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 50px; | |
background-color: antiquewhite; | |
//padding: 10px 10px 10px 30px; | |
} | |
.navbarContent { | |
margin: 10px 20px; | |
span { | |
padding-left: 10px; | |
} | |
button { | |
margin-left: 10px; | |
} | |
} | |
.navbarTitle { | |
font-size: 12pt; | |
//margin: 5pt; | |
font-weight: bold; | |
} | |
.main_frame { | |
position: fixed; | |
top: 55px; | |
//margin: 0px 50px 0px 50px; | |
//background: #ffffff; | |
overflow-x: hidden; | |
overflow-y: auto; | |
} | |
.floating_content { | |
padding: 10px; | |
height: 94%; | |
} | |
.container { | |
width: 100%; | |
height: 95%; | |
text-align: center; | |
display: inline-block; | |
margin: 5px auto; | |
} | |
#bottom-margin { | |
height: 100px; | |
} | |
.content { | |
max-width: 960px; | |
margin: auto; | |
} | |
.whitespace { | |
height: 8vh; | |
} |