2021-07-10 19:18:17 +01:00
|
|
|
/* Fonts */
|
|
|
|
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&subset=cyrillic");
|
|
|
|
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css");
|
|
|
|
|
|
|
|
/* Bulma */
|
|
|
|
@import url("bulma.min.css");
|
|
|
|
@import url("bulma.tooltip.min.css");
|
|
|
|
@import url("bulma.checkradio.min.css");
|
|
|
|
|
|
|
|
/* DataTables.js */
|
|
|
|
@import url("datatables.min.css");
|
2021-07-26 17:42:43 -04:00
|
|
|
|
2021-08-21 23:19:09 +01:00
|
|
|
/* make numbers grey again*/
|
|
|
|
.li1::marker {
|
|
|
|
color: #bfbfbf;
|
|
|
|
}
|
|
|
|
|
2021-08-25 23:48:17 +01:00
|
|
|
.li1:target{
|
|
|
|
transition:background-color 1s ease-in;
|
|
|
|
-webkit-transition:background-color 1s ease-in;
|
|
|
|
-moz-transition:background-color 1s ease-in;
|
|
|
|
background-color: rgba(50, 152, 220, 0.3);
|
|
|
|
scroll-margin-top: 100px;
|
|
|
|
color: white !important;
|
2021-08-25 22:51:11 +01:00
|
|
|
}
|
2021-08-25 23:48:17 +01:00
|
|
|
|
2021-08-25 22:51:11 +01:00
|
|
|
|
2021-07-10 19:18:17 +01:00
|
|
|
.theme-switch-wrapper {
|
2021-07-26 17:42:43 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2021-08-20 16:53:59 -04:00
|
|
|
}
|
2021-07-10 19:18:17 +01:00
|
|
|
|
2021-07-26 17:42:43 -04:00
|
|
|
em {
|
2021-07-10 19:18:17 +01:00
|
|
|
margin-left: 10px;
|
|
|
|
font-size: 1rem;
|
2021-07-26 17:42:43 -04:00
|
|
|
}
|
|
|
|
|
2021-07-10 19:18:17 +01:00
|
|
|
.theme-switch {
|
2021-07-26 17:42:43 -04:00
|
|
|
display: inline-block;
|
|
|
|
height: 34px;
|
|
|
|
position: relative;
|
|
|
|
width: 60px;
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.theme-switch input {
|
2021-07-26 17:42:43 -04:00
|
|
|
display: none;
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.slider {
|
2021-07-26 17:42:43 -04:00
|
|
|
background-color: #ccc;
|
|
|
|
bottom: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
transition: .4s;
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.slider:before {
|
2021-07-26 17:42:43 -04:00
|
|
|
background-color: #fff;
|
|
|
|
bottom: 4px;
|
|
|
|
content: "";
|
|
|
|
height: 26px;
|
|
|
|
left: 4px;
|
|
|
|
position: absolute;
|
|
|
|
transition: .4s;
|
|
|
|
width: 26px;
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
input:checked + .slider {
|
2021-07-26 17:42:43 -04:00
|
|
|
background-color: #3298dc;
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
input:checked + .slider:before {
|
2021-07-26 17:42:43 -04:00
|
|
|
transform: translateX(26px);
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.slider.round {
|
2021-07-26 17:42:43 -04:00
|
|
|
border-radius: 34px;
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.slider.round:before {
|
2021-07-26 17:42:43 -04:00
|
|
|
border-radius: 50%;
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
2021-07-26 17:42:43 -04:00
|
|
|
.rows {
|
2021-07-10 19:18:17 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-card-head {
|
2021-07-26 17:42:43 -04:00
|
|
|
border-bottom: 0px solid #dbdbdb !important;
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.bd-duo {
|
2021-07-26 17:42:43 -04:00
|
|
|
min-height: calc(100vh - 19vh);
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
2021-07-26 17:42:43 -04:00
|
|
|
padding: 2rem 1.5rem 2rem !important;
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-fullsize {
|
2021-07-26 17:42:43 -04:00
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
|
|
|
overflow: auto;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 9999;
|
|
|
|
padding: 20px;
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
2021-08-25 22:51:11 +01:00
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
|
.panel {
|
|
|
|
background-color: #ffffff;
|
|
|
|
border: none !important;
|
|
|
|
border-style: none !important;
|
|
|
|
padding: 0px !important;
|
|
|
|
border-width: 0px !important;
|
|
|
|
box-shadow: none !important;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-10 19:18:17 +01:00
|
|
|
.panel {
|
2021-08-25 22:51:11 +01:00
|
|
|
background-color: #ffffff;
|
|
|
|
border: #eeeeee;
|
|
|
|
border-style: solid;
|
|
|
|
padding: 10px;
|
|
|
|
border-width: 2px;
|
|
|
|
box-shadow: 5px 10px #eee;
|
|
|
|
word-wrap: break-word;
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.tool-icon {
|
2021-07-26 17:42:43 -04:00
|
|
|
padding: 15px;
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
2021-07-26 17:42:43 -04:00
|
|
|
|
2021-07-10 19:18:17 +01:00
|
|
|
.tool-icon:hover {
|
2021-07-26 17:42:43 -04:00
|
|
|
background-color: #fafafa;
|
|
|
|
border-radius: 4px;
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 1023px) {
|
2021-07-26 17:42:43 -04:00
|
|
|
.bd-lead,
|
|
|
|
.bd-side {
|
|
|
|
padding: 1rem !important;
|
|
|
|
}
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 768px) {
|
2021-07-26 17:42:43 -04:00
|
|
|
.has-text-centered,
|
|
|
|
.has-text-right {
|
|
|
|
text-align: left !important;
|
|
|
|
}
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.td-center {
|
2021-07-26 17:42:43 -04:00
|
|
|
text-align: center !important;
|
2021-07-10 19:18:17 +01:00
|
|
|
}
|
2021-08-20 16:53:59 -04:00
|
|
|
|
|
|
|
.green .hljs-comment {
|
|
|
|
color: #789922;
|
2021-11-01 16:56:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
button.button--no-style {
|
|
|
|
background: none;
|
|
|
|
color: inherit;
|
|
|
|
border: none;
|
|
|
|
padding: 0;
|
|
|
|
font: inherit;
|
|
|
|
cursor: pointer;
|
|
|
|
outline: inherit;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form--inline {
|
|
|
|
display: inline;
|
2021-11-04 10:41:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.paginator {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.paginator__button {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: inline-block;
|
|
|
|
min-width: 1.5em;
|
|
|
|
padding: 0.2em 1em;
|
|
|
|
margin-left: 2px;
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
color: #333;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: #f2f2f2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.paginator__button--selected {
|
|
|
|
background-color: #ddd;
|
2021-08-20 16:53:59 -04:00
|
|
|
}
|