2021-08-14 17:13:16 -04:00
|
|
|
body {
|
|
|
|
font-size: .875rem;
|
2022-02-28 13:29:17 -05:00
|
|
|
/*font-family: 'Poppins', sans-serif;*/
|
2021-08-14 17:13:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.feather {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
}
|
|
|
|
|
2022-03-03 08:46:23 -05:00
|
|
|
.btn-primary{
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2021-08-14 17:13:16 -04:00
|
|
|
/*
|
|
|
|
* Sidebar
|
|
|
|
*/
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 100; /* Behind the navbar */
|
|
|
|
padding: 48px 0 0; /* Height of navbar */
|
|
|
|
box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-sticky {
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
height: calc(100vh - 48px);
|
|
|
|
padding-top: .5rem;
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
|
|
|
|
}
|
|
|
|
|
|
|
|
@supports ((position: -webkit-sticky) or (position: sticky)) {
|
|
|
|
.sidebar-sticky {
|
|
|
|
position: -webkit-sticky;
|
|
|
|
position: sticky;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar .nav-link {
|
|
|
|
font-weight: 500;
|
|
|
|
color: #333;
|
|
|
|
transition: 0.2s cubic-bezier(0.82, -0.07, 0, 1.01);
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-link:hover {
|
|
|
|
padding-left: 30px;
|
2022-01-16 20:35:24 -05:00
|
|
|
background-color: #dfdfdf;
|
2021-08-14 17:13:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar .nav-link .feather {
|
|
|
|
margin-right: 4px;
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar .nav-link.active {
|
|
|
|
color: #007bff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar .nav-link:hover .feather,
|
|
|
|
.sidebar .nav-link.active .feather {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar-heading {
|
|
|
|
font-size: .75rem;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Navbar
|
|
|
|
*/
|
|
|
|
|
|
|
|
.navbar-brand {
|
|
|
|
padding-top: .75rem;
|
|
|
|
padding-bottom: .75rem;
|
|
|
|
font-size: 1rem;
|
|
|
|
background-color: rgba(0, 0, 0, .25);
|
|
|
|
box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar .navbar-toggler {
|
|
|
|
top: .25rem;
|
|
|
|
right: 1rem;
|
|
|
|
}
|
|
|
|
|
2022-01-06 15:17:43 -05:00
|
|
|
.form-control{
|
|
|
|
transition: all 0.2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-control:disabled{
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
2021-08-14 17:13:16 -04:00
|
|
|
.navbar .form-control {
|
|
|
|
padding: .75rem 1rem;
|
|
|
|
border-width: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-control-dark {
|
|
|
|
color: #fff;
|
|
|
|
background-color: rgba(255, 255, 255, .1);
|
|
|
|
border-color: rgba(255, 255, 255, .1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-control-dark:focus {
|
|
|
|
border-color: transparent;
|
|
|
|
box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
|
|
|
|
}
|
|
|
|
|
|
|
|
.dot{
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
border-radius: 50px;
|
|
|
|
display: inline-block;
|
2022-02-28 13:34:46 -05:00
|
|
|
margin-left: auto !important;
|
2021-08-14 17:13:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.dot-running{
|
|
|
|
background-color: #28a745!important;
|
2021-12-24 00:20:44 -05:00
|
|
|
box-shadow: 0 0 0 0.2rem #28a74545;
|
|
|
|
}
|
|
|
|
|
|
|
|
.h6-dot-running{
|
|
|
|
margin-left: 0.3rem;
|
2021-08-14 17:13:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.dot-stopped{
|
|
|
|
background-color: #6c757d!important;
|
|
|
|
}
|
|
|
|
|
2021-12-24 00:20:44 -05:00
|
|
|
.card-running{
|
|
|
|
border-color: #28a745;
|
|
|
|
}
|
2021-08-14 17:13:16 -04:00
|
|
|
|
|
|
|
.info h6{
|
|
|
|
line-break: anywhere;
|
2021-12-29 12:17:44 -05:00
|
|
|
transition: 0.2s ease-in-out;
|
2021-08-14 17:13:16 -04:00
|
|
|
}
|
|
|
|
|
2021-12-24 00:20:44 -05:00
|
|
|
.info .row .col-sm{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info .row .col-sm small{
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.info .row .col-sm small strong:last-child(1){
|
|
|
|
margin-left: auto !important;
|
|
|
|
}
|
|
|
|
|
2021-08-14 17:13:16 -04:00
|
|
|
.btn-control{
|
|
|
|
border: none !important;
|
|
|
|
padding: 0 1rem 0 0;
|
|
|
|
}
|
|
|
|
|
2021-12-24 00:20:44 -05:00
|
|
|
.btn-control:active, .btn-control:focus{
|
|
|
|
background-color: transparent !important;
|
|
|
|
border: none !important;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2022-01-16 20:35:24 -05:00
|
|
|
.btn-qrcode-peer{
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-qrcode-peer:active, .btn-qrcode-peer:hover{
|
|
|
|
transform: scale(0.9) rotate(180deg);
|
|
|
|
border: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-download-peer:active, .btn-download-peer:hover{
|
|
|
|
color: #17a2b8 !important;
|
|
|
|
transform: translateY(5px);
|
|
|
|
}
|
|
|
|
|
2021-08-14 17:13:16 -04:00
|
|
|
.share_peer_btn_group .btn-control{
|
2022-01-16 20:35:24 -05:00
|
|
|
margin: 0 0 0 1rem;
|
|
|
|
padding: 0 !important;
|
|
|
|
transition: all 0.4s cubic-bezier(1, -0.43, 0, 1.37);
|
2021-08-14 17:13:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-control:hover{
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-delete-peer:hover{
|
|
|
|
color: #dc3545;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-setting-peer:hover{
|
|
|
|
color:#007bff
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-download-peer:hover{
|
|
|
|
color: #17a2b8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login-container{
|
|
|
|
padding: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 992px){
|
|
|
|
.card-col{
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.switch{
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
|
|
|
.switch:hover{
|
|
|
|
text-decoration: none
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-group-label:hover{
|
|
|
|
color: #007bff;
|
|
|
|
border-color: #007bff;
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
|
2022-02-28 13:34:46 -05:00
|
|
|
.peer_data_group{
|
|
|
|
text-align: right;
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 0.5rem
|
|
|
|
}
|
|
|
|
|
|
|
|
.peer_data_group p{
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-right: 1rem
|
|
|
|
}
|
2021-08-14 17:13:16 -04:00
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.peer_data_group{
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.index-switch{
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
main{
|
|
|
|
margin-bottom: 3rem;
|
|
|
|
}
|
|
|
|
|
2021-09-08 12:39:25 -04:00
|
|
|
.peer_list{
|
|
|
|
margin-bottom: 7rem
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.add_btn{
|
|
|
|
bottom: 1.5rem !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.peer_list{
|
2022-01-08 15:26:17 -05:00
|
|
|
margin-bottom: 7rem !important;
|
2021-09-08 12:39:25 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-08 15:26:17 -05:00
|
|
|
.btn-manage-group{
|
|
|
|
z-index: 99;
|
2021-09-08 12:39:25 -04:00
|
|
|
position: fixed;
|
|
|
|
bottom: 3rem;
|
|
|
|
right: 2rem;
|
2022-01-08 15:26:17 -05:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-manage-group .setting_btn_menu{
|
|
|
|
position: absolute;
|
|
|
|
top: -124px;
|
|
|
|
background-color: white;
|
|
|
|
padding: 1rem 0;
|
|
|
|
right: 0;
|
|
|
|
box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
|
|
|
|
border-radius: 10px;
|
|
|
|
min-width: 200px;
|
|
|
|
display: none;
|
|
|
|
transform: translateY(-30px);
|
|
|
|
opacity: 0;
|
|
|
|
transition: all 0.3s cubic-bezier(0.58, 0.03, 0.05, 1.28);
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-manage-group .setting_btn_menu.show{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setting_btn_menu.showing{
|
|
|
|
transform: translateY(0px);
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setting_btn_menu a{
|
|
|
|
display: flex;
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
transition: all 0.1s ease-in-out;
|
|
|
|
font-size: 1rem;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setting_btn_menu a:hover{
|
|
|
|
background-color: #efefef;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setting_btn_menu a i{
|
|
|
|
margin-right: auto !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.add_btn{
|
|
|
|
height: 54px;
|
|
|
|
z-index: 99;
|
|
|
|
border-radius: 100px !important;
|
|
|
|
padding: 0 14px;
|
|
|
|
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
|
|
|
|
margin-right: 1rem;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.setting_btn{
|
|
|
|
height: 54px;
|
2021-09-08 12:39:25 -04:00
|
|
|
z-index: 99;
|
2021-12-24 00:20:44 -05:00
|
|
|
border-radius: 100px !important;
|
2022-01-08 15:26:17 -05:00
|
|
|
padding: 0 14px;
|
2021-09-08 12:39:25 -04:00
|
|
|
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
|
2022-01-08 15:26:17 -05:00
|
|
|
font-size: 1.5rem;
|
2021-09-08 12:39:25 -04:00
|
|
|
}
|
|
|
|
|
2021-08-14 17:13:16 -04:00
|
|
|
|
|
|
|
@-webkit-keyframes rotating /* Safari and Chrome */ {
|
|
|
|
from {
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
-o-transform: rotate(0deg);
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
-o-transform: rotate(360deg);
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes rotating {
|
|
|
|
from {
|
|
|
|
-ms-transform: rotate(0deg);
|
|
|
|
-moz-transform: rotate(0deg);
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
-o-transform: rotate(0deg);
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
-ms-transform: rotate(360deg);
|
|
|
|
-moz-transform: rotate(360deg);
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
-o-transform: rotate(360deg);
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
2022-03-03 08:46:23 -05:00
|
|
|
|
2021-08-14 17:13:16 -04:00
|
|
|
.rotating::before {
|
|
|
|
-webkit-animation: rotating 0.75s linear infinite;
|
|
|
|
-moz-animation: rotating 0.75s linear infinite;
|
|
|
|
-ms-animation: rotating 0.75s linear infinite;
|
|
|
|
-o-animation: rotating 0.75s linear infinite;
|
|
|
|
animation: rotating 0.75s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.peer_private_key_textbox_switch{
|
|
|
|
position: absolute;
|
|
|
|
right: 2rem;
|
|
|
|
transform: translateY(-28px);
|
|
|
|
font-size: 1.2rem;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2022-03-03 08:46:23 -05:00
|
|
|
#peer_private_key_textbox, #private_key, #public_key, #peer_preshared_key_textbox{
|
2021-12-29 12:17:44 -05:00
|
|
|
font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
|
|
|
|
}
|
|
|
|
|
2021-08-14 17:13:16 -04:00
|
|
|
.progress-bar{
|
|
|
|
transition: 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.key{
|
|
|
|
transition: 0.2s ease-in-out;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.key:hover{
|
|
|
|
color: #007bff;
|
2021-12-24 00:20:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.card{
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.peer_list .card .button-group{
|
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-control{
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn{
|
|
|
|
border-radius: 8px;
|
2022-02-28 13:29:17 -05:00
|
|
|
/*padding: 0.6rem 0.9em;*/
|
2021-12-24 00:20:44 -05:00
|
|
|
}
|
|
|
|
|
2022-02-28 13:29:17 -05:00
|
|
|
#username, #password{
|
|
|
|
padding: 0.6rem calc( 0.9rem + 32px );
|
|
|
|
height: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
label[for="username"], label[for="password"]{
|
|
|
|
font-size: 1rem;
|
|
|
|
margin: 0 !important;
|
|
|
|
transform: translateY(30px) translateX(16px);
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*label[for="password"]{*/
|
|
|
|
/* transform: translateY(32px) translateX(16px);*/
|
|
|
|
/*}*/
|
|
|
|
|
|
|
|
|
2021-12-24 00:20:44 -05:00
|
|
|
.modal-content{
|
|
|
|
border-radius: 10px;
|
2021-12-29 12:17:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip-inner{
|
|
|
|
font-size: 0.8rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes loading {
|
|
|
|
0%{
|
|
|
|
background-color: #dfdfdf;
|
|
|
|
}
|
|
|
|
50%{
|
|
|
|
background-color: #adadad;
|
|
|
|
}
|
|
|
|
100%{
|
|
|
|
background-color: #dfdfdf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@-moz-keyframes loading {
|
|
|
|
0%{
|
|
|
|
background-color: #dfdfdf;
|
|
|
|
}
|
|
|
|
50%{
|
|
|
|
background-color: #adadad;
|
|
|
|
}
|
|
|
|
100%{
|
|
|
|
background-color: #dfdfdf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.conf_card{
|
|
|
|
transition: 0.2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.conf_card:hover{
|
|
|
|
border-color: #007bff;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info_loading{
|
|
|
|
animation: loading 2s infinite ease-in-out;
|
|
|
|
border-radius: 5px;
|
|
|
|
height: 19px;
|
|
|
|
transition: 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#conf_status_btn{
|
|
|
|
transition: 0.2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#conf_status_btn.info_loading{
|
|
|
|
height: 38px;
|
|
|
|
border-radius: 5px;
|
2021-12-30 15:21:25 -05:00
|
|
|
animation: loading 3s infinite ease-in-out;
|
|
|
|
}
|
|
|
|
|
2022-01-04 16:32:23 -05:00
|
|
|
#qrcode_img img{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-01-08 15:26:17 -05:00
|
|
|
#selected_ip_list .badge, #selected_peer_list .badge{
|
2022-01-04 16:32:23 -05:00
|
|
|
margin: 0.1rem
|
|
|
|
}
|
|
|
|
|
|
|
|
#add_modal.ip_modal_open{
|
|
|
|
transition: filter 0.2s ease-in-out;
|
|
|
|
filter: brightness(0.5);
|
2022-01-08 15:26:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#delete_bulk_modal .list-group a.active{
|
|
|
|
background-color: #dc3545;
|
|
|
|
border-color: #dc3545;
|
|
|
|
}
|
|
|
|
|
|
|
|
#selected_peer_list{
|
|
|
|
max-height: 80px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
overflow-x: hidden;
|
2022-01-12 19:53:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.no-response{
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: fixed;
|
|
|
|
background: #000000ba;
|
|
|
|
z-index: 10000;
|
|
|
|
display: none;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
opacity: 0;
|
|
|
|
transition: all 1s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-response.active{
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-response.active.show{
|
|
|
|
opacity: 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-response .container > *{
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-responding{
|
|
|
|
transition: all 1s ease-in-out;
|
|
|
|
filter: blur(10px);
|
2022-01-13 09:37:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pre.index-alert{
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding: 1rem;
|
|
|
|
background-color: #343a40;
|
|
|
|
border: 1px solid rgba(0,0,0,.125);
|
|
|
|
border-radius: .25rem;
|
|
|
|
margin-top: 1rem;
|
|
|
|
color: white;
|
2022-02-28 13:34:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.peerNameCol{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 0.2rem
|
|
|
|
}
|
|
|
|
|
|
|
|
.peerName{
|
|
|
|
margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.peerLightContainer{
|
|
|
|
text-transform: uppercase; margin: 0; margin-left: auto !important;
|
2022-03-03 08:46:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.conf_card .dot, .info .dot {
|
|
|
|
transform: translateX(10px);
|
|
|
|
}
|
|
|
|
|
|
|
|
#config_body{
|
|
|
|
transition: 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#config_body.firstLoading{
|
|
|
|
opacity: 0.2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chartTitle{
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chartControl{
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.chartTitle h6{
|
|
|
|
margin-bottom: 0;
|
|
|
|
line-height: 1;
|
|
|
|
margin-right: 0.5rem;
|
2022-01-04 16:32:23 -05:00
|
|
|
}
|