147 lines
No EOL
2.9 KiB
CSS
147 lines
No EOL
2.9 KiB
CSS
.status-element {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
gap: 100px;
|
|
margin-top: 10px;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.green-dot {
|
|
font-size: 15px;
|
|
color: #32a852;
|
|
}
|
|
|
|
.yellow-dot {
|
|
font-size: 15px;
|
|
color: #ccc731;
|
|
}
|
|
|
|
.editable-content {
|
|
font-size: 12px;
|
|
display: flex;
|
|
justify-content: end;
|
|
align-items: flex-start;
|
|
color: #999999;
|
|
max-width: 50%;
|
|
}
|
|
|
|
.show-nodey>input {
|
|
/* border: none; */
|
|
/* box-shadow: none; */
|
|
padding: 5px;
|
|
text-align: right;
|
|
}
|
|
|
|
.invite-link {
|
|
margin-top: 5px;
|
|
font-size: 12px;
|
|
color: #c434e0;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
@media screen and (max-width: 450px) {
|
|
.status-element {
|
|
gap: 20px;
|
|
}
|
|
|
|
main {
|
|
zoom: 1.1;
|
|
}
|
|
#reset-box {
|
|
top: 30%!important;
|
|
}
|
|
}
|
|
|
|
.watchdog-status {
|
|
position: absolute;
|
|
right: -22px;
|
|
top: -3px;
|
|
}
|
|
|
|
#reset-box {
|
|
width: 296px;
|
|
height: auto;
|
|
border: 1px solid #c434e0;
|
|
border-radius: 5px;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
background-color: rgb(0, 0, 0);
|
|
z-index: 1;
|
|
display: none;
|
|
}
|
|
|
|
#reset-box .close-button {
|
|
position: absolute;
|
|
top: 4px;
|
|
right: 0;
|
|
}
|
|
|
|
.reset-box-content {
|
|
padding: 28px 10px 5px 10px;
|
|
color: #a3a3a3;
|
|
font-size: 10px;
|
|
text-align: left;
|
|
}
|
|
|
|
.continue-button-container {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.continue-button {
|
|
display: block;
|
|
position: relative;
|
|
border-radius: 100px;
|
|
text-align: center;
|
|
width: 134px;
|
|
height: 30px;
|
|
margin-top: 10px;
|
|
padding: 10px;
|
|
transition: background-color 0.5s;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.continue-button::before {
|
|
content: "";
|
|
position: absolute;
|
|
inset: 0;
|
|
border-radius: 15px;
|
|
border: 1px solid transparent;
|
|
background: linear-gradient(60deg, #ff7700 0%, #c740c7 100% ) border-box;
|
|
mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
|
|
-webkit-mask-composite: destination-out;
|
|
mask-composite: exclude;
|
|
}
|
|
.continue-button:hover {
|
|
background-color: #373a3d;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.small-btn {
|
|
margin-block-start: 1px;
|
|
width: 50px;
|
|
height: 25px;
|
|
color: white;
|
|
text-align: center;
|
|
background-color: transparent;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
box-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
|
|
background: linear-gradient(var(--background-color), var(--background-color)) padding-box,
|
|
var(--gradient) border-box;
|
|
border-radius: 2rem;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
#adminNpub {
|
|
font-size: 8px; /* Adjust font size to fit on one line */
|
|
text-align: left; /* Left align the text */
|
|
line-break: anywhere; /* Ensure long text breaks appropriately */
|
|
} |