2024-03-27 23:24:13 +00:00
|
|
|
body {
|
2024-03-28 00:17:44 +00:00
|
|
|
|
2024-03-27 23:24:13 +00:00
|
|
|
background: url(/static/assets/bg.gif);
|
|
|
|
color: white;
|
|
|
|
font-family: monospace;
|
|
|
|
height: 100vh;
|
|
|
|
margin: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2024-03-27 21:19:07 +00:00
|
|
|
|
2024-03-27 23:24:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.box {
|
2024-03-27 21:19:07 +00:00
|
|
|
|
2024-03-27 23:24:13 +00:00
|
|
|
background: rgba(0, 0, 0, 0.8);
|
|
|
|
border: 2px solid purple;
|
|
|
|
padding: 10px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
2024-03-27 23:54:43 +00:00
|
|
|
margin-top: 10px;
|
2024-03-28 00:17:44 +00:00
|
|
|
|
2024-03-27 21:19:07 +00:00
|
|
|
}
|
|
|
|
|
2024-03-28 17:05:00 +00:00
|
|
|
.form-group {
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-group label {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-group input {
|
|
|
|
|
|
|
|
width: 400%;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-03-27 23:54:43 +00:00
|
|
|
.titlebar {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2024-03-28 17:05:00 +00:00
|
|
|
a {
|
2024-03-27 21:19:07 +00:00
|
|
|
|
2024-03-27 23:24:13 +00:00
|
|
|
color: purple;
|
|
|
|
text-decoration: none;
|
2024-03-28 17:05:00 +00:00
|
|
|
transition: color 100ms ease-in-out;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
|
|
|
|
color: blueviolet;
|
2024-03-27 21:19:07 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-03-27 23:24:13 +00:00
|
|
|
#content {
|
2024-03-28 00:17:44 +00:00
|
|
|
width: 50%;
|
2024-03-27 23:24:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#main-pane {
|
|
|
|
width: 100%;
|
2024-03-27 23:54:43 +00:00
|
|
|
margin-top: 10px;
|
2024-03-27 23:24:13 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2024-03-27 23:54:43 +00:00
|
|
|
|
2024-03-27 23:24:13 +00:00
|
|
|
}
|
2024-03-27 21:19:07 +00:00
|
|
|
|
2024-03-27 23:24:13 +00:00
|
|
|
#content-pane, #sidenav {
|
|
|
|
height: 80vh;
|
2024-03-27 21:19:07 +00:00
|
|
|
}
|
|
|
|
|
2024-03-27 23:24:13 +00:00
|
|
|
#sidenav {
|
|
|
|
|
2024-03-28 17:05:00 +00:00
|
|
|
position: relative;
|
|
|
|
|
2024-03-27 23:24:13 +00:00
|
|
|
width: 25%;
|
|
|
|
font-size: 12pt;
|
2024-03-27 21:19:07 +00:00
|
|
|
|
2024-03-27 23:59:22 +00:00
|
|
|
margin-right: 10px;
|
|
|
|
|
2024-03-27 23:24:13 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2024-03-27 21:19:07 +00:00
|
|
|
}
|
|
|
|
|
2024-03-28 17:05:00 +00:00
|
|
|
#login-modal {
|
|
|
|
|
|
|
|
display: block;
|
|
|
|
background: #222222;
|
|
|
|
border: solid 4px purple;
|
|
|
|
padding: 20px;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#login-modal .container {
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#login-modal label {
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#login-modal-container {
|
|
|
|
|
|
|
|
display: block;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 400ms ease-in-out;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
background-color: rgba(0, 0, 0, 0.774);
|
|
|
|
backdrop-filter: blur(2px);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#login-btn {
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
left: 50%;
|
|
|
|
color: purple;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
bottom: 10px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#toggle {
|
|
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#toggle:checked ~ #login-modal-container {
|
|
|
|
pointer-events: auto;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2024-03-27 23:24:13 +00:00
|
|
|
@media only screen and (max-width: 1080px) {
|
|
|
|
#content {
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main-pane {
|
|
|
|
|
|
|
|
flex-direction: column;
|
2024-03-27 23:54:43 +00:00
|
|
|
width: 100%;
|
2024-03-27 23:24:13 +00:00
|
|
|
|
|
|
|
}
|
2024-03-28 00:17:44 +00:00
|
|
|
|
2024-03-27 23:24:13 +00:00
|
|
|
#content-pane, #sidenav {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidenav {
|
|
|
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#sidenav a {
|
|
|
|
|
|
|
|
margin-left: 10px;
|
2024-03-27 21:19:07 +00:00
|
|
|
|
2024-03-27 23:24:13 +00:00
|
|
|
}
|
2024-03-28 00:17:44 +00:00
|
|
|
|
2024-03-28 17:05:00 +00:00
|
|
|
#login-modal {
|
|
|
|
|
|
|
|
padding: 10px;
|
|
|
|
width: 80%;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#login-btn {
|
|
|
|
|
|
|
|
transform: none;
|
|
|
|
right: 0px;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-03-27 21:19:07 +00:00
|
|
|
}
|