2021-08-11 19:58:01 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
2022-06-10 09:18:05 +00:00
|
|
|
font-family: Tahoma, sans-serif;
|
2021-08-11 19:58:01 +00:00
|
|
|
}
|
|
|
|
html body {
|
|
|
|
max-width: 100%;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
html {
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
}
|
2021-04-26 18:51:21 +00:00
|
|
|
body {
|
2022-06-10 09:18:05 +00:00
|
|
|
background-color: #00050D;
|
2022-02-24 18:35:43 +00:00
|
|
|
color:white
|
2021-08-11 19:58:01 +00:00
|
|
|
}
|
2021-04-26 18:51:21 +00:00
|
|
|
|
2021-08-11 19:58:01 +00:00
|
|
|
/* Top logo bar */
|
|
|
|
header {
|
2021-11-17 18:30:13 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2021-08-11 19:58:01 +00:00
|
|
|
margin-top: 30px;
|
|
|
|
border-bottom: 2px solid white;
|
|
|
|
padding-bottom: 20px;
|
2021-11-17 18:30:13 +00:00
|
|
|
align-items: center;
|
2021-08-11 19:58:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
2022-06-10 09:18:05 +00:00
|
|
|
width: 150px;
|
|
|
|
height: 41px;
|
2021-08-11 19:58:01 +00:00
|
|
|
}
|
2021-11-17 18:30:13 +00:00
|
|
|
.update-btn {
|
2022-06-10 09:25:37 +00:00
|
|
|
background-color: black;
|
|
|
|
border-color: white;
|
2021-08-11 19:58:01 +00:00
|
|
|
color: white;
|
2021-11-17 18:30:13 +00:00
|
|
|
transition: 0.25s;
|
|
|
|
}
|
|
|
|
.hostname-text {
|
2022-06-11 05:14:51 +00:00
|
|
|
font-size:14px;
|
|
|
|
margin-top:4%;
|
2021-11-17 18:30:13 +00:00
|
|
|
color: greenyellow;
|
2022-06-11 05:14:51 +00:00
|
|
|
align-content: center;
|
2021-08-11 19:58:01 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 18:35:43 +00:00
|
|
|
|
2021-08-11 19:58:01 +00:00
|
|
|
/* General Ticker */
|
|
|
|
.buttons-list {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
2021-11-17 18:30:13 +00:00
|
|
|
.btn-stop-display {
|
2021-08-11 19:58:01 +00:00
|
|
|
background-color: purple;
|
|
|
|
color: white;
|
2021-11-17 18:30:13 +00:00
|
|
|
transition: 0.25s;
|
|
|
|
}
|
|
|
|
.btn-warning {
|
|
|
|
background-color: #ffc107;
|
|
|
|
color: white;
|
|
|
|
transition: 0.25s;
|
|
|
|
}
|
|
|
|
.btn-warning:hover {
|
|
|
|
background-color: greenyellow;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.btn-warning:active {
|
|
|
|
background-color: #ffce45;
|
|
|
|
color: white;
|
2021-08-11 19:58:01 +00:00
|
|
|
}
|
2021-11-17 18:30:13 +00:00
|
|
|
.btn-stop-display:hover {
|
|
|
|
background-color: #b000b9;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.btn-stop-display:active {
|
|
|
|
background-color: #3e065f;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.set-btn {
|
2022-06-10 09:25:37 +00:00
|
|
|
background-color: none;
|
|
|
|
border-color:white;
|
|
|
|
border-radius:8px;
|
2021-08-11 19:58:01 +00:00
|
|
|
color: white;
|
2021-11-17 18:30:13 +00:00
|
|
|
transition: 0.25s;
|
|
|
|
}
|
|
|
|
.set-btn:hover,
|
|
|
|
.fa-chevron-right:hover,
|
|
|
|
.fa-chevron-left:hover,
|
|
|
|
.fa-chevron-up:hover,
|
|
|
|
.fa-chevron-down:hover,
|
|
|
|
.fa-minus:hover,
|
|
|
|
.update-btn:hover,
|
|
|
|
.save-btn:hover {
|
2022-06-10 09:34:24 +00:00
|
|
|
background-color: gray;
|
2021-11-17 18:30:13 +00:00
|
|
|
color: white;
|
|
|
|
}
|
2022-06-10 09:34:24 +00:00
|
|
|
.set-btn:active,
|
2021-11-17 18:30:13 +00:00
|
|
|
.fa-chevron-right:active,
|
|
|
|
.fa-chevron-left:active,
|
|
|
|
.fa-chevron-up:active,
|
|
|
|
.fa-chevron-down:active,
|
|
|
|
.fa-minus:active,
|
|
|
|
.update-btn:active,
|
|
|
|
.save-btn:active {
|
2022-06-10 09:34:24 +00:00
|
|
|
background-color: black;
|
|
|
|
color: grey;
|
2021-08-11 19:58:01 +00:00
|
|
|
}
|
2022-06-10 09:59:06 +00:00
|
|
|
|
|
|
|
.set-btn:focus,
|
|
|
|
.fa-chevron-right:focus,
|
|
|
|
.fa-chevron-left:focus,
|
|
|
|
.fa-chevron-up:focus,
|
|
|
|
.fa-chevron-down:focus,
|
|
|
|
.fa-minus:focus,
|
|
|
|
.update-btn:focus,
|
|
|
|
.save-btn:focus {
|
|
|
|
box-shadow:none;
|
|
|
|
}
|
|
|
|
|
2021-08-11 19:58:01 +00:00
|
|
|
.row-2 {
|
2022-06-11 05:09:20 +00:00
|
|
|
border-bottom: 1px solid white;
|
2021-08-11 19:58:01 +00:00
|
|
|
padding-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
2022-06-11 05:26:25 +00:00
|
|
|
.form-select {
|
|
|
|
border-color: dimgrey;
|
|
|
|
background-color: #262525;
|
|
|
|
box-shadow: none;
|
|
|
|
color:white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-select:hover{
|
|
|
|
border-color: dimgrey;
|
|
|
|
background-color: #434343;
|
|
|
|
box-shadow: none;
|
|
|
|
color:white;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-select:focus{
|
|
|
|
border-color: dimgrey;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-select:active{
|
|
|
|
border-color: dimgray;
|
|
|
|
background-color: #262525;
|
|
|
|
box-shadow: none;
|
|
|
|
color:white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-control {
|
|
|
|
border-color: dimgray;
|
|
|
|
background-color: #262525;
|
|
|
|
box-shadow: none;
|
|
|
|
color:white;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-control:hover {
|
|
|
|
border-color: dimgray;
|
|
|
|
background-color: #434343;
|
|
|
|
box-shadow: none;
|
|
|
|
color:white;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-control:focus {
|
|
|
|
border-color: dimgray;
|
|
|
|
background-color: #434343;
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
|
|
color:white;
|
|
|
|
}
|
|
|
|
|
2021-08-11 19:58:01 +00:00
|
|
|
/* Features to display */
|
|
|
|
.features-div {
|
2022-06-11 05:26:25 +00:00
|
|
|
background-color: #262525;
|
|
|
|
border-color: dimgray;
|
|
|
|
border-width: thin;
|
|
|
|
border-style: solid;
|
|
|
|
color:white;
|
|
|
|
border-radius: 8px;
|
2021-08-11 19:58:01 +00:00
|
|
|
padding-block: 10px;
|
|
|
|
height: 200px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
.features-div-two {
|
2022-06-11 05:26:25 +00:00
|
|
|
background-color: #262525;
|
|
|
|
border-color: dimgray;
|
|
|
|
border-width: thin;
|
|
|
|
border-style: solid;
|
2021-08-11 19:58:01 +00:00
|
|
|
padding-block: 10px;
|
2022-06-11 05:26:25 +00:00
|
|
|
border-radius: 8px;
|
2021-08-11 19:58:01 +00:00
|
|
|
height: 370px;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
2022-06-10 09:59:06 +00:00
|
|
|
|
|
|
|
.features-div-two ul {
|
|
|
|
padding:0.8rem;
|
|
|
|
padding-top:0;
|
|
|
|
}
|
|
|
|
|
2021-08-11 19:58:01 +00:00
|
|
|
.display-features-list {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa-chevron-right,
|
|
|
|
.fa-chevron-left,
|
|
|
|
.fa-chevron-up,
|
|
|
|
.fa-chevron-down,
|
|
|
|
.fa-minus {
|
2022-06-10 09:25:37 +00:00
|
|
|
background-color: black;
|
|
|
|
border-style: solid;
|
|
|
|
border-color:white;
|
|
|
|
border-width:thin;
|
|
|
|
border-radius:8px;
|
2021-08-11 19:58:01 +00:00
|
|
|
padding: 10px;
|
2021-11-17 18:30:13 +00:00
|
|
|
transition: 0.25s;
|
2021-08-11 19:58:01 +00:00
|
|
|
}
|
|
|
|
.icons-list {
|
|
|
|
margin-block: 70px;
|
|
|
|
}
|
|
|
|
.icons-list a {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.icons-list i {
|
|
|
|
cursor: pointer;
|
2022-06-10 09:34:24 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
width:35px;
|
2021-08-11 19:58:01 +00:00
|
|
|
}
|
|
|
|
.display-features-list li:hover {
|
2022-06-10 09:25:37 +00:00
|
|
|
background-color: dodgerblue;
|
2021-08-11 19:58:01 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.save-btn-div {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 60px;
|
|
|
|
}
|
2021-11-17 18:30:13 +00:00
|
|
|
.save-btn {
|
2022-06-10 09:25:37 +00:00
|
|
|
background-color: black;
|
2021-08-11 19:58:01 +00:00
|
|
|
color: white;
|
2022-06-10 09:25:37 +00:00
|
|
|
border-color:white;
|
2021-08-11 19:58:01 +00:00
|
|
|
padding-inline: 40px;
|
2021-11-17 18:30:13 +00:00
|
|
|
transition: 0.25s;
|
2022-06-10 09:25:37 +00:00
|
|
|
border-radius:8px;
|
2021-08-11 19:58:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
text-align: center;
|
|
|
|
color: white;
|
2022-06-11 05:34:12 +00:00
|
|
|
font-size:13px;
|
|
|
|
margin-top: 15px;
|
2021-08-11 19:58:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
li.active {
|
2022-06-10 09:25:37 +00:00
|
|
|
background-color: dodgerblue;
|
2021-08-11 19:58:01 +00:00
|
|
|
}
|
2021-11-17 18:30:13 +00:00
|
|
|
.row-1,
|
|
|
|
.row-3 {
|
2021-08-11 19:58:01 +00:00
|
|
|
margin-block: 50px;
|
|
|
|
}
|
2021-11-17 18:30:13 +00:00
|
|
|
.w-115-px {
|
|
|
|
width: 115px;
|
|
|
|
}
|
|
|
|
.h-50-px {
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
.text-right {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.mr-5 {
|
|
|
|
margin-right: 1.25rem;
|
|
|
|
}
|
|
|
|
.font-6 {
|
2022-06-10 09:40:14 +00:00
|
|
|
font-size:22px;
|
|
|
|
color:white;
|
|
|
|
background: linear-gradient(90deg, #ff0000, #ffff00, #ff00f3, #0033ff, #ff00c4, #ff0000);
|
|
|
|
background-size:400%;
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
animation: animated 10s linear infinite;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
word-spacing: 5px;
|
|
|
|
|
|
|
|
|
2021-11-17 18:30:13 +00:00
|
|
|
}
|
2022-06-10 09:40:14 +00:00
|
|
|
|
|
|
|
@keyframes animated {
|
|
|
|
0%{
|
|
|
|
background-position: 0%;
|
|
|
|
}
|
|
|
|
100%{
|
|
|
|
background-position: 400%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-17 18:30:13 +00:00
|
|
|
#connected-text {
|
|
|
|
left: calc(100% + 1.25rem);
|
|
|
|
display: none;
|
|
|
|
}
|
2022-06-10 09:40:14 +00:00
|
|
|
|
2021-11-17 18:30:13 +00:00
|
|
|
#top-row-text,
|
|
|
|
#bottom-row-text {
|
|
|
|
text-align: center;
|
|
|
|
text-decoration: underline;
|
|
|
|
padding-right: 150px;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#second-row {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-08-11 19:58:01 +00:00
|
|
|
/* Responsiveness */
|
|
|
|
@media (max-width: 767px) {
|
2021-11-17 18:30:13 +00:00
|
|
|
.buttons-list {
|
2021-08-11 19:58:01 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 25px;
|
|
|
|
position: relative;
|
|
|
|
right: 20px;
|
|
|
|
}
|
2021-11-17 18:30:13 +00:00
|
|
|
.row-1,
|
|
|
|
.row-3 {
|
2021-08-11 19:58:01 +00:00
|
|
|
margin-block: 25px;
|
|
|
|
}
|
2021-11-17 18:30:13 +00:00
|
|
|
.screen-saver {
|
2021-08-11 19:58:01 +00:00
|
|
|
margin-block: 25px;
|
|
|
|
}
|
2021-11-17 18:30:13 +00:00
|
|
|
.display-none-div {
|
2021-08-11 19:58:01 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2021-11-17 18:30:13 +00:00
|
|
|
.icons-list {
|
2021-08-11 19:58:01 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 20px;
|
|
|
|
}
|
2021-11-17 18:30:13 +00:00
|
|
|
.icons-list a {
|
2021-08-11 19:58:01 +00:00
|
|
|
margin-left: -120px;
|
|
|
|
}
|
|
|
|
|
2021-11-17 18:30:13 +00:00
|
|
|
.remove {
|
2021-08-11 19:58:01 +00:00
|
|
|
margin-right: -100px;
|
|
|
|
margin-left: -100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-24 18:35:43 +00:00
|
|
|
.status {
|
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
|
|
|
}
|
|
|
|
#circle-1 {
|
2022-06-10 10:12:01 +00:00
|
|
|
background-color: lime;
|
2022-02-24 18:35:43 +00:00
|
|
|
}
|
|
|
|
#circle-2 {
|
|
|
|
background-color: red;
|
|
|
|
}
|
|
|
|
#circle-3 {
|
|
|
|
background-color: orange;
|
|
|
|
}
|
|
|
|
|
2021-08-11 19:58:01 +00:00
|
|
|
@media (min-width: 768px) and (max-width: 991px) {
|
2021-11-17 18:30:13 +00:00
|
|
|
.icons-list a {
|
|
|
|
position: relative;
|
2021-08-11 19:58:01 +00:00
|
|
|
top: 10px;
|
|
|
|
}
|
2021-11-17 18:30:13 +00:00
|
|
|
}
|
2022-06-10 09:25:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
.icon-featuresdisplay i {
|
|
|
|
cursor: pointer;
|
2022-06-10 09:34:24 +00:00
|
|
|
border-radius:5px;
|
|
|
|
width: 35px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-success {
|
|
|
|
background-color: #004202;
|
|
|
|
border-color: green;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-success:hover {
|
|
|
|
color:white;
|
|
|
|
background-color:green;
|
|
|
|
border-color:limegreen;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-success:active {
|
|
|
|
color:grey;
|
|
|
|
background-color:#002803;
|
|
|
|
border-color:green;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-info {
|
|
|
|
background-color: #3C005E;
|
|
|
|
border-color:purple;
|
|
|
|
color:white;
|
2022-06-10 09:25:37 +00:00
|
|
|
}
|
2022-06-10 09:34:24 +00:00
|
|
|
|
|
|
|
.btn-info:hover {
|
|
|
|
color:white;
|
|
|
|
background-color:darkviolet;
|
|
|
|
border-color:magenta;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-info:active {
|
|
|
|
color:grey;
|
|
|
|
background-color:#2A003F;
|
|
|
|
border-color:purple;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-warning {
|
|
|
|
background-color: #4C2100;
|
|
|
|
border-color: orange;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-warning:hover {
|
|
|
|
background-color: orangered;
|
|
|
|
color:white;
|
|
|
|
border-color: yellow;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-warning:active {
|
|
|
|
background-color: #4C2100;
|
|
|
|
border-color: orange;
|
|
|
|
color: grey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-dark {
|
|
|
|
background-color: #00276B;
|
|
|
|
border-color:blue;
|
|
|
|
color:white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-dark:hover {
|
|
|
|
color:white;
|
|
|
|
background-color:#014ADC;
|
|
|
|
border-color:deepskyblue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-dark:active {
|
|
|
|
color:grey;
|
|
|
|
background-color:#001B50;
|
|
|
|
border-color:blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-danger {
|
|
|
|
background-color: #460101;
|
|
|
|
border-color:red;
|
|
|
|
color:white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-danger:hover {
|
|
|
|
color:white;
|
|
|
|
background-color:crimson;
|
|
|
|
border-color:lightcoral;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-danger:active {
|
|
|
|
color:grey;
|
|
|
|
background-color:#460101;
|
|
|
|
border-color:red;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-06-10 09:59:06 +00:00
|
|
|
.main-div {
|
|
|
|
position: relative;
|
|
|
|
margin: 10px;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.main-div2::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
-webkit-box-shadow: 0 0 17px 3px #ffff01,0 0 4px 2px #ffff01;
|
|
|
|
box-shadow: 0 0 17px 3px #ffff01,0 0 4px 2px #ffff01;
|
|
|
|
z-index: -1;
|
|
|
|
-webkit-animation-name: gradient-shadow;
|
|
|
|
animation-name: gradient-shadow;
|
|
|
|
-webkit-animation-timing-function: ease;
|
|
|
|
animation-timing-function: ease;
|
|
|
|
-webkit-animation-duration: 2s;
|
|
|
|
animation-duration: 2s;
|
|
|
|
-webkit-animation-iteration-count: infinite;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
border-radius: 5px;
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
-ms-border-radius: 5px;
|
|
|
|
-o-border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.main-div3::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 50%;
|
|
|
|
height: 100%;
|
|
|
|
-webkit-box-shadow: 0 0 17px 3px #ffff01,0 0 4px 2px #ffff01;
|
|
|
|
box-shadow: 0 0 17px 3px #ffff01,0 0 4px 2px #ffff01;
|
|
|
|
z-index: -1;
|
|
|
|
-webkit-animation-name: half-yellow-shadow;
|
|
|
|
animation-name: half-yellow-shadow;
|
|
|
|
-webkit-animation-timing-function: ease;
|
|
|
|
animation-timing-function: ease;
|
|
|
|
-webkit-animation-duration: 5s;
|
|
|
|
animation-duration: 5s;
|
|
|
|
-webkit-animation-iteration-count: infinite;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
border-radius: 5px;
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
-ms-border-radius: 5px;
|
|
|
|
-o-border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-div3::after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 50%;
|
|
|
|
height: 100%;
|
|
|
|
-webkit-box-shadow: 0 0 17px 3px #0ff,0 0 4px 2px #0ff;
|
|
|
|
box-shadow: 0 0 17px 3px #0ff,0 0 4px 2px #0ff;
|
|
|
|
z-index: -1;
|
|
|
|
-webkit-animation-name: half-cyan-shadow;
|
|
|
|
animation-name: half-cyan-shadow;
|
|
|
|
-webkit-animation-timing-function: ease;
|
|
|
|
animation-timing-function: ease;
|
|
|
|
-webkit-animation-duration: 5s;
|
|
|
|
animation-duration: 5s;
|
|
|
|
-webkit-animation-iteration-count: infinite;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
border-radius: 5px;
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
-ms-border-radius: 5px;
|
|
|
|
-o-border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 50px;
|
|
|
|
margin: 0;
|
|
|
|
position: relative;
|
|
|
|
z-index: 3;
|
|
|
|
padding: 20px;
|
|
|
|
background-color: #060C1F;
|
|
|
|
color: #fff;
|
|
|
|
border-radius: 5px;
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
-ms-border-radius: 5px;
|
|
|
|
-o-border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes yellow-shadow {
|
|
|
|
0% {
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
25% {
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
75% {
|
|
|
|
top: 0;
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes yellow-shadow {
|
|
|
|
0% {
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
25% {
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
75% {
|
|
|
|
top: 0;
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes cyan-shadow {
|
|
|
|
0% {
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
25% {
|
|
|
|
right: 0;
|
|
|
|
bottom: 50%;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
right: 50%;
|
|
|
|
bottom: 50%;
|
|
|
|
}
|
|
|
|
75% {
|
|
|
|
right: 50%;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes cyan-shadow {
|
|
|
|
0% {
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
25% {
|
|
|
|
right: 0;
|
|
|
|
bottom: 50%;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
right: 50%;
|
|
|
|
bottom: 50%;
|
|
|
|
}
|
|
|
|
75% {
|
|
|
|
right: 50%;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes gradient-shadow {
|
|
|
|
0% {
|
|
|
|
-webkit-box-shadow: 0 0 17px 3px #C586C0,0 0 4px 2px #C586C0;
|
|
|
|
box-shadow: 0 0 17px 3px #C586C0,0 0 4px 2px #C586C0;
|
|
|
|
}
|
|
|
|
20% {
|
|
|
|
-webkit-box-shadow: 0 0 17px 3px #0ff,0 0 4px 2px #0ff;
|
|
|
|
box-shadow: 0 0 17px 3px #0ff,0 0 4px 2px #0ff;
|
|
|
|
}
|
|
|
|
40% {
|
|
|
|
-webkit-box-shadow: 0 0 17px 3px #0f0,0 0 4px 2px #0f0;
|
|
|
|
box-shadow: 0 0 17px 3px #0f0,0 0 4px 2px #0f0;
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
-webkit-box-shadow: 0 0 17px 3px #ffff01,0 0 4px 2px #ffff01;
|
|
|
|
box-shadow: 0 0 17px 3px #ffff01,0 0 4px 2px #ffff01;
|
|
|
|
}
|
|
|
|
80% {
|
|
|
|
-webkit-box-shadow: 0 0 17px 3px #f00,0 0 4px 2px #f00;
|
|
|
|
box-shadow: 0 0 17px 3px #f00,0 0 4px 2px #f00;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-webkit-box-shadow: 0 0 17px 3px #C586C0,0 0 4px 2px #C586C0;
|
|
|
|
box-shadow: 0 0 17px 3px #C586C0,0 0 4px 2px #C586C0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes gradient-shadow {
|
|
|
|
0% {
|
|
|
|
-webkit-box-shadow: 0 0 17px 3px #C586C0,0 0 4px 2px #C586C0;
|
|
|
|
box-shadow: 0 0 17px 3px #C586C0,0 0 4px 2px #C586C0;
|
|
|
|
}
|
|
|
|
20% {
|
|
|
|
-webkit-box-shadow: 0 0 17px 3px #0ff,0 0 4px 2px #0ff;
|
|
|
|
box-shadow: 0 0 17px 3px #0ff,0 0 4px 2px #0ff;
|
|
|
|
}
|
|
|
|
40% {
|
|
|
|
-webkit-box-shadow: 0 0 17px 3px #0f0,0 0 4px 2px #0f0;
|
|
|
|
box-shadow: 0 0 17px 3px #0f0,0 0 4px 2px #0f0;
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
-webkit-box-shadow: 0 0 17px 3px #ffff01,0 0 4px 2px #ffff01;
|
|
|
|
box-shadow: 0 0 17px 3px #ffff01,0 0 4px 2px #ffff01;
|
|
|
|
}
|
|
|
|
80% {
|
|
|
|
-webkit-box-shadow: 0 0 17px 3px #f00,0 0 4px 2px #f00;
|
|
|
|
box-shadow: 0 0 17px 3px #f00,0 0 4px 2px #f00;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-webkit-box-shadow: 0 0 17px 3px #C586C0,0 0 4px 2px #C586C0;
|
|
|
|
box-shadow: 0 0 17px 3px #C586C0,0 0 4px 2px #C586C0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes half-yellow-shadow {
|
|
|
|
0% {
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
16.66% {
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
32.32% {
|
|
|
|
top: 0;
|
|
|
|
left: 50%;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
49.98% {
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
66.64% {
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
83.3% {
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes half-yellow-shadow {
|
|
|
|
0% {
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
16.66% {
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
32.32% {
|
|
|
|
top: 0;
|
|
|
|
left: 50%;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
49.98% {
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
66.64% {
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
83.3% {
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes half-cyan-shadow {
|
|
|
|
0% {
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
16.66% {
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
32.32% {
|
|
|
|
bottom: 0;
|
|
|
|
right: 50%;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
49.98% {
|
|
|
|
bottom: 50%;
|
|
|
|
right: 50%;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
66.64% {
|
|
|
|
bottom: 50%;
|
|
|
|
right: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
83.3% {
|
|
|
|
bottom: 50%;
|
|
|
|
right: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes half-cyan-shadow {
|
|
|
|
0% {
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
16.66% {
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
32.32% {
|
|
|
|
bottom: 0;
|
|
|
|
right: 50%;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
49.98% {
|
|
|
|
bottom: 50%;
|
|
|
|
right: 50%;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
66.64% {
|
|
|
|
bottom: 50%;
|
|
|
|
right: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
83.3% {
|
|
|
|
bottom: 50%;
|
|
|
|
right: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 50%;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
}
|
2022-06-10 09:34:24 +00:00
|
|
|
|
2022-06-11 05:09:20 +00:00
|
|
|
h3 {
|
|
|
|
font-weight:bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
#general {
|
|
|
|
margin-bottom:20px;
|
|
|
|
}
|
|
|
|
|
2022-06-11 05:14:51 +00:00
|
|
|
#version-text {
|
|
|
|
margin-right: 2%;
|
|
|
|
margin-bottom:0;
|
|
|
|
font-size:14px;
|
|
|
|
}
|
2022-06-10 09:34:24 +00:00
|
|
|
|
2022-06-11 05:21:32 +00:00
|
|
|
.col-auto-screensaver {
|
|
|
|
width: 220px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.col-auto-displayformat {
|
|
|
|
width: 220px;
|
|
|
|
margin-left: 7px;
|
|
|
|
}
|
|
|
|
|
2022-06-11 05:29:43 +00:00
|
|
|
.pass-toggle {
|
|
|
|
margin-left:7%;
|
|
|
|
}
|
2022-06-11 05:34:12 +00:00
|
|
|
|
|
|
|
#footerlinks {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2022-06-11 05:34:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media (min-width: 768px) and (max-width: 991px) {
|
|
|
|
.icons-list a {
|
|
|
|
position: relative;
|
|
|
|
top: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.clip {
|
|
|
|
border: 0;
|
|
|
|
clip: rect(0 0 0 0);
|
|
|
|
height: 1px;
|
|
|
|
margin: -1px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.svg--source {
|
|
|
|
display: none
|
|
|
|
}
|
|
|
|
|
|
|
|
.svg--icon {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 5rem;
|
|
|
|
height: 100%;
|
|
|
|
max-height: 5rem;
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
fill: currentColor
|
|
|
|
}
|
|
|
|
|
|
|
|
.wrapper {
|
|
|
|
width: 100%;
|
|
|
|
margin-top:100px;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.share {
|
|
|
|
width: 3rem;
|
|
|
|
height: 3rem;
|
|
|
|
float: left;
|
|
|
|
margin: .5rem 1rem 0rem 0;
|
|
|
|
color: #353c4a;
|
|
|
|
border: .125rem solid #f3f3f3;
|
|
|
|
box-shadow: 0 0 8px 0 rgba(50, 50, 50, 0.15);
|
|
|
|
border-radius: 50%;
|
|
|
|
transition: 250ms;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-right: 0
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
//background: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline-color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.twitter {
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: #00ACED;
|
|
|
|
box-shadow: 0 0 24px 0 #00ACED
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.instagram {
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: #4183c4;
|
|
|
|
box-shadow: 0 0 24px 0 #4183c4
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.reddit {
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: #bd081c;
|
|
|
|
box-shadow: 0 0 24px 0 #bd081c
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.trello {
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: #bd081c;
|
|
|
|
box-shadow: 0 0 24px 0 #bd081c
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.youtube {
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: #cd201f;
|
|
|
|
box-shadow: 0 0 24px 0 #cd201f
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.facebook {
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: #3b5998;
|
|
|
|
box-shadow: 0 0 24px 0 #3b5998
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.discord {
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: #dd4b39;
|
|
|
|
box-shadow: 0 0 24px 0 #dd4b39
|
|
|
|
}
|
|
|
|
}
|
2022-06-11 05:37:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
#update-message {
|
|
|
|
width: 600px;
|
|
|
|
height: 180px;
|
|
|
|
background-color: darkslategray;
|
|
|
|
border-radius: 30px;
|
|
|
|
position: fixed; /*Can also be `fixed`*/
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin: auto;
|
|
|
|
/*Solves a problem in which the content is being cut when the div is smaller than its' wrapper:*/
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
z-index:99;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#update-p {
|
|
|
|
margin-top:50px;
|
|
|
|
margin-left:70px;
|
|
|
|
font-size: 20px;
|
|
|
|
margin-right:70px;
|
|
|
|
margin-bottom:20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#wifi-message {
|
|
|
|
width: 350px;
|
|
|
|
height: 120px;
|
|
|
|
border-radius:20px;
|
|
|
|
background-color: darkslategray;
|
|
|
|
position: fixed; /*Can also be `fixed`*/
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin: auto;
|
|
|
|
/*Solves a problem in which the content is being cut when the div is smaller than its' wrapper:*/
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
z-index:99;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#wifi-p {
|
|
|
|
margin-top:30px;
|
|
|
|
margin-left:70px;
|
|
|
|
font-size:20px;
|
|
|
|
margin-right:70px;
|
|
|
|
margin-bottom:20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#weather-api-p {
|
|
|
|
color:red;
|
|
|
|
}
|
|
|
|
|