mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 12:04:15 +00:00
67 lines
No EOL
1.2 KiB
CSS
Executable file
67 lines
No EOL
1.2 KiB
CSS
Executable file
/*
|
|
* noVNC auto CSS
|
|
* Copyright (C) 2012 Joel Martin
|
|
* Copyright (C) 2017 Samuel Mannehed for Cendio AB
|
|
* noVNC is licensed under the MPL 2.0 (see LICENSE.txt)
|
|
* This file is licensed under the 2-Clause BSD license (see LICENSE.txt).
|
|
*/
|
|
|
|
body {
|
|
margin:0;
|
|
background-color:#313131;
|
|
border-bottom-right-radius: 800px 600px;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
html {
|
|
background-color:#494949;
|
|
height:100%;
|
|
}
|
|
|
|
#noVNC_status_bar {
|
|
width: 100%;
|
|
display: flex;
|
|
}
|
|
|
|
#noVNC_status {
|
|
color: #fff;
|
|
font: bold 12px Helvetica;
|
|
margin: auto;
|
|
}
|
|
|
|
.noVNC_status_normal {
|
|
background: linear-gradient(#b2bdcd 0%,#899cb3 49%,#7e93af 51%,#6e84a3 100%);
|
|
}
|
|
|
|
.noVNC_status_error {
|
|
background: linear-gradient(#c83737 0%,#899cb3 49%,#7e93af 51%,#6e84a3 100%);
|
|
}
|
|
|
|
.noVNC_status_warn {
|
|
background: linear-gradient(#b4b41e 0%,#899cb3 49%,#7e93af 51%,#6e84a3 100%);
|
|
}
|
|
|
|
.noNVC_shown {
|
|
display: inline;
|
|
}
|
|
.noVNC_hidden {
|
|
display: none;
|
|
}
|
|
|
|
#noVNC_left_dummy_elem {
|
|
flex: 1;
|
|
}
|
|
|
|
#noVNC_buttons {
|
|
padding: 1px;
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
#noVNC_container {
|
|
flex: 1; /* fill remaining space */
|
|
overflow: hidden;
|
|
} |