0
1
Fork 0
hedera-web-mindshore/web/js/hedera/gui.css

333 lines
4.0 KiB
CSS
Executable File

.vn-gui
{
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
/* Font */
.vn-gui .welcome,
.vn-gui .menu-title,
.vn-gui .main-menu a
{
font-size: 1.1em;
}
/* Header */
.vn-gui .top-bar,
.vn-gui .exit
{
height: 3.9em;
}
.vn-gui .top-bar
{
position: relative;
background-color: #009688;
width: 100%;
z-index: 1;
overflow: hidden;
box-shadow: 0 0.1em 0.1em #AAA;
}
.vn-gui .top-bar
{
color: white;
}
.vn-gui .menu-button
{
display: none;
float: left;
border: none;
background-color: transparent;
padding: 0 .4em;
margin: 0;
height: 100%;
}
.vn-gui .menu-button:hover
{
background-color: rgba(0, 0, 0, .2);
}
.vn-gui .menu-button img
{
margin-top: .2em;
height: 1.8em;
}
.vn-gui .title
{
float: left;
}
.vn-gui .title h1
{
font-weight: normal;
font-size: 1.4em;
padding: .7em .6em;
margin: 0;
}
.vn-gui .actions-holder
{
float: right;
padding: .5em 1em;
padding-left: 0;
}
.vn-gui .top-bar > .loader
{
float: right;
margin: 1.1em;
visibility: hidden;
}
.vn-gui .exit
{
float: right;
padding: 0 .4em;
}
.vn-gui .exit img
{
height: 2.2em;
display: block;
margin: .8em auto;
}
.vn-gui .exit:hover
{
background-color: rgba(0, 0, 0, .2);
}
/* Body */
.vn-gui > .body
{
position: absolute;
top: 0;
bottom: 0;
left: 15em;
right: 0;
}
.vn-gui .content
{
position: absolute;
top: 3.9em;
bottom: 0;
left: 0;
right: 0;
}
/* Left panel */
.vn-gui .menu-header
{
height: 5.5em;
background-color: #333;
}
.vn-gui .logo
{
width: 12em;
float: left;
margin: 1em;
margin-bottom: .2em;
}
.vn-gui .welcome
{
float: left;
color: white;
margin: .5em 1em;
}
.vn-gui .background
{
z-index: 10;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(10, 10, 10, 0.6);
display: none;
}
.vn-gui .left-panel,
.vn-gui .main-menu > li,
.vn-gui ul.submenu
{
width: 15em;
}
.vn-gui .left-panel
{
z-index: 20;
position: absolute;
left: 0;
bottom: 0;
top: 0;
background-color: white;
z-index: 20;
box-shadow: 0 0.2em 0.2em #AAA;
}
.vn-gui .menu-overflow
{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 4em;
overflow: auto;
}
/* Test link */
.vn-gui .test-link
{
display: block;
margin: 1em auto;
max-width: 70%;
background-color: #3f51b5;
color: white;
padding: 0 1em;
line-height: 2em;
border-radius: 0.1em;
text-align: center;
}
.vn-gui .test-link:hover
{
background-color: #4f61c5;
}
/* Menu */
.vn-gui .main-menu
{
list-style-type: none;
padding: 0;
margin: 0;
}
.vn-gui .main-menu > li
{
display: block;
float: left;
clear: both;
padding: 0;
}
.vn-gui .main-menu > li > a
{
line-height: 2.8em;
width: 70%;
padding: 0 15%;
}
.vn-gui .main-menu a
{
float: left;
}
.vn-gui .main-menu a:hover
{
background-color: #DDD /* #AC6 */;
}
.vn-gui .main-menu a.selected
{
background-color: #EEE;
}
.vn-gui ul.submenu
{
display: none;
position: fixed;
border: none;
border-radius: 1px;
background-color: white;
box-shadow: 0 0.2em 0.2em #CCC;
z-index: 50;
list-style-type: none;
padding-left: 0;
}
.vn-gui ul.submenu a
{
width: 60%;
padding: 0.7em 20%;
}
/* Links */
.vn-gui .links
{
position: absolute;
bottom: 0;
right: 0;
padding: 0.8em;
}
.vn-gui .links a
{
padding: 0.1em;
display: block;
float: left;
max-width: 2.2em;
}
.vn-gui .links img
{
height: 1.8em;
}
/* Form holder */
.vn-gui .form-holder
{
position: absolute;
top: 0em;
bottom: 0;
right: 0;
left: 0;
overflow: auto;
}
/* Transitions */
.vn-gui > .left-panel,
.vn-gui > .body
{
transition: left .3s;
-webkit-transition: left .3s;
}
.vn-gui .top-bar
{
transition: background-color .3s;
-webkit-transition: background-color .3s;
}
/* Mobile */
@media (max-width: 950px)
{
.vn-gui > .body
{
left: 0;
}
.vn-gui .menu-button
{
display: block;
}
.vn-gui .left-panel
{
top: 0;
left: -15em;
box-shadow: 0 0.2em 0.2em #333;
}
.vn-gui .left-panel-show
{
left: 0;
}
.vn-gui .form-holder
{
left: 0;
}
.vn-gui ul.submenu
{
display: block;
position: relative;
border: none;
border-radius: 0;
background-color: white;
box-shadow: none;
}
.vn-gui .htk-toast
{
margin-left: -11em;
}
}