Move to subdirectory
This commit is contained in:
498
lab_ui/client/app/main.css
Normal file
498
lab_ui/client/app/main.css
Normal file
@@ -0,0 +1,498 @@
|
||||
@import url(http://fonts.googleapis.com/css?family=Roboto:400,400italic,500,500italic,700,700italic,900,900italic,300italic,300,100italic,100);
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 16pt;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background: #020625;
|
||||
//color: #EDF0F4;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.fill-container {
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.transparent-button {
|
||||
background-color: Transparent;
|
||||
background-repeat:no-repeat;
|
||||
border: none;
|
||||
cursor:pointer;
|
||||
overflow: hidden;
|
||||
outline:none;
|
||||
}
|
||||
|
||||
.font-roboto-regular {
|
||||
font-family: 'Roboto';
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.font-roboto-thin {
|
||||
font-family: 'Roboto';
|
||||
font-weight: 100;
|
||||
}
|
||||
|
||||
.font-roboto-light {
|
||||
font-family: 'Roboto';
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.font-roboto-medium {
|
||||
font-family: 'Roboto';
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.font-roboto-medium-italic {
|
||||
font-family: 'Roboto';
|
||||
font-weight: 500;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.dialog {
|
||||
position: fixed;
|
||||
left: 0px;
|
||||
top: 0px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: #020625;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Roboto";
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-family: "Roboto";
|
||||
font-size: 22pt;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.header {
|
||||
width: 100vw;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
flex-wrap: nowrap;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
background-color: #182048;
|
||||
padding: 0 40px 0 40px;
|
||||
}
|
||||
|
||||
.header .logo img {
|
||||
width: 101px;
|
||||
height: 68px;
|
||||
}
|
||||
|
||||
.header .title {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.header .user {
|
||||
width: 101px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.header .user i {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.header-bar {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin-top: 10px;
|
||||
padding: 0px 15px;
|
||||
}
|
||||
|
||||
.fa-circle {
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#bf9000), to(#7f6000));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
}
|
||||
|
||||
.main-tabs-container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.tab-content {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#task-connection-message {
|
||||
position: relative;
|
||||
margin: auto;
|
||||
left: -8%;
|
||||
font-weight: 600;
|
||||
font-size: 19pt;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.panel{
|
||||
background: #182048;
|
||||
border: 1px solid;
|
||||
border-radius: 30px;
|
||||
border-color: #3573FB;
|
||||
}
|
||||
|
||||
.hand-panel .panel-body{
|
||||
background: #020625;
|
||||
}
|
||||
|
||||
.panel-heading, .panel-footer {
|
||||
background-color: #020625 !important;
|
||||
//color: #EDF0F4 !important;
|
||||
color: white !important;
|
||||
text-align: center;
|
||||
font-size: 14pt;
|
||||
}
|
||||
|
||||
.panel-heading {
|
||||
border: 1px solid;
|
||||
border-radius: 30px 30px 0 0;
|
||||
border-color: #3573FB !important;
|
||||
|
||||
}
|
||||
|
||||
.panel-footer {
|
||||
border: 1px solid;
|
||||
border-radius: 0 0 30px 30px;
|
||||
border-color: #3573FB;
|
||||
}
|
||||
|
||||
.control-container {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.control-card > .panel-body {
|
||||
height: 150px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.control-card .button-area {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.control-card .button-area > button {
|
||||
height: 100%;
|
||||
border-radius: 0;
|
||||
//color: #EDF0F4;
|
||||
color: white;
|
||||
font-size : 14pt;
|
||||
background: #182048;
|
||||
}
|
||||
|
||||
.status-container .action-button {
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.status-container .action-button > button {
|
||||
height: 100%;
|
||||
border-radius: 0;
|
||||
//color: #EDF0F4;
|
||||
color: white;
|
||||
font-size : 14pt;
|
||||
background: #182048;
|
||||
width: 100%;
|
||||
border-radius: 0 30px 30px 0;
|
||||
}
|
||||
|
||||
.control-card-six .button-area > button {
|
||||
height: 50%;
|
||||
/* font-size: 12pt; */
|
||||
}
|
||||
|
||||
.control-card .panel-heading i {
|
||||
position: absolute;
|
||||
right: 25px;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.nav-pills li a {
|
||||
border-radius: 0;
|
||||
//color: #EDF0F4;
|
||||
color: white;
|
||||
font-size : 16pt;
|
||||
font-weight: 600;
|
||||
background: #020625;
|
||||
}
|
||||
|
||||
|
||||
.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover, .nav>li>a:focus, .nav>li>a:hover{
|
||||
//color: #EDF0F4;
|
||||
color: white;
|
||||
background: #182048;
|
||||
}
|
||||
|
||||
.hand-panel .panel-heading {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.hand-panel .panel-heading i{
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.panel-footer .message {
|
||||
font-size : 12pt;
|
||||
}
|
||||
|
||||
.status-container .status-list .list-group-horizontal{
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.status-list .list-group {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.status-list .list-group-item {
|
||||
border: none;
|
||||
background: none;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
|
||||
.panel.panel-horizontal {
|
||||
display:table;
|
||||
width:100%;
|
||||
}
|
||||
.panel.panel-horizontal > .panel-heading, .panel.panel-horizontal > .panel-body, .panel.panel-horizontal > .panel-footer {
|
||||
display:table-cell;
|
||||
}
|
||||
.panel.panel-horizontal > .panel-heading, .panel.panel-horizontal > .panel-footer {
|
||||
border:0;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.panel.panel-horizontal > .panel-heading {
|
||||
border-right: 1px solid #ddd;
|
||||
border-radius: 30px 0 0 30px;
|
||||
font-size: 12pt;
|
||||
width: 20%;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
.panel.panel-horizontal > .panel-footer {
|
||||
border-left: 1px solid #ddd;
|
||||
border-radius: 0 30px 30px 0;
|
||||
width: 20%;
|
||||
padding: 0px;
|
||||
border-color: #3573FB;
|
||||
}
|
||||
|
||||
.panel.panel-horizontal > .panel-body {
|
||||
height: auto;
|
||||
padding: 0px;
|
||||
font-size: 14pt;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
.btn {
|
||||
white-space: normal;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
button[class*="active"] {
|
||||
//background-color: #085394 !important;
|
||||
background-image: linear-gradient(#085394, #073763) !important;
|
||||
}
|
||||
|
||||
button[class*="danger"] {
|
||||
background-image: linear-gradient(#990000, #660000) !important;
|
||||
}
|
||||
|
||||
button[class*="warning"] {
|
||||
background-image: linear-gradient(#b45f06, #783f04) !important;
|
||||
}
|
||||
|
||||
.force-bar .progress {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.force-bar .list-group-horizontal {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.force-bar .force-value {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.force-bar .bar-label {
|
||||
color: black;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
#recordingStartButton[active] {
|
||||
animation: blinker 3s linear infinite;
|
||||
}
|
||||
|
||||
#executionStartButton[active] {
|
||||
animation: blinker 3s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes blinker {
|
||||
50% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.execution-control .button-area > button {
|
||||
/* font-size: 12pt !important; */
|
||||
}
|
||||
|
||||
button[class*="disabled"] {
|
||||
background-color: #262b40 !important;
|
||||
cursor: not-allowed !important;
|
||||
pointer-events: none !important;
|
||||
}
|
||||
|
||||
input[class*="disabled"] {
|
||||
cursor: not-allowed !important;
|
||||
pointer-events: none !important;
|
||||
}
|
||||
|
||||
.disabled i{
|
||||
color: grey;
|
||||
}
|
||||
|
||||
input[class*="disabled"] + div[class*="state"] {
|
||||
color: grey;
|
||||
}
|
||||
|
||||
.safety-button {
|
||||
width: 100%;
|
||||
height: 200px;
|
||||
font-size: 32px;
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
.popover {
|
||||
color: black;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.slider-options {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.slider-options select{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.slider-options .error {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.slider-options i {
|
||||
font-size: 30px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.slider-options {
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.tagging-options {
|
||||
transition: height 600ms ease 0ms;
|
||||
}
|
||||
.loading-options {
|
||||
transition: height 420ms ease 0ms;
|
||||
}
|
||||
.tagging-options.open {
|
||||
height: 122px;
|
||||
}
|
||||
.loading-options.open {
|
||||
height: 85px;
|
||||
}
|
||||
|
||||
|
||||
.bag-option > div {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
|
||||
.bag-option .filename {
|
||||
width: 60%;
|
||||
font-size: 12pt;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.bag-option .category {
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
.bag-option .tags {
|
||||
width: 60%;
|
||||
|
||||
}
|
||||
|
||||
.bag-option .timestamp {
|
||||
width: 40%;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
.loading-options .selectize-input {
|
||||
font-size: 13pt;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/*
|
||||
.selectize-dropdown, .selectize-dropdown.form-control{
|
||||
height: 90vh !important;
|
||||
}
|
||||
|
||||
.selectize-dropdown-content{
|
||||
max-height: 100% !important;
|
||||
height: 100% !important;
|
||||
}
|
||||
*/
|
||||
|
||||
.teaching-mode-operations {
|
||||
margin-left : 20.833%;
|
||||
}
|
||||
|
||||
.play-mode-operations {
|
||||
margin-left : 8.33% !important
|
||||
}
|
||||
|
||||
.slider-options .btn-primary {
|
||||
background : #3671F9;
|
||||
width: 100%;
|
||||
margin-bottom: 10px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.slider-options .col-md-2 {
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
background : #3671F9;
|
||||
}
|
||||
|
||||
.progress-bar-label {
|
||||
color: grey;
|
||||
line-height: 21px;
|
||||
font-size: 16px;
|
||||
}
|
||||
Reference in New Issue
Block a user