171 lines
2.3 KiB
CSS
171 lines
2.3 KiB
CSS
body {
|
|
font-family: sans-serif;
|
|
margin: 10px 40px;
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
header .title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
header .right {
|
|
text-align: right;
|
|
}
|
|
|
|
header h1 {
|
|
margin: 0;
|
|
}
|
|
|
|
header .muted {
|
|
color: #666;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.new-buttons {
|
|
display: flex;
|
|
gap: 5px;
|
|
}
|
|
|
|
.new-button {
|
|
padding: 10px;
|
|
}
|
|
|
|
#nm-list {
|
|
|
|
}
|
|
|
|
#nm-list section {
|
|
margin-bottom: 5px;
|
|
display: grid;
|
|
grid-template-columns: .05fr 1fr 1fr .3fr;
|
|
align-items: center;
|
|
padding-left: 10px;
|
|
background-color: #3D9970;
|
|
color: white;
|
|
}
|
|
|
|
#nm-list section.popped {
|
|
background-color: #b5443a;
|
|
color: #63f0fd;
|
|
}
|
|
|
|
#nm-list section div.button {
|
|
height: 100%;
|
|
}
|
|
|
|
img {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
h3.nm-info {
|
|
margin: 0;
|
|
display: inline-block;
|
|
}
|
|
|
|
.spawn-info {
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
opacity: .6;
|
|
}
|
|
|
|
.badge {
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
border: 1px solid white;
|
|
vertical-align: middle;
|
|
padding: 1px 6px;
|
|
border-radius: 10px;
|
|
font-family: monospace;
|
|
}
|
|
|
|
small.badge {
|
|
font-size: 10px;
|
|
}
|
|
|
|
.popped .badge {
|
|
border-color: #63f0fd;
|
|
}
|
|
|
|
.action button {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: 0;
|
|
display: block;
|
|
background-color: #005ba4;
|
|
color: #daffbe;
|
|
font-size: 18px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
button.reset {
|
|
background-color: tomato;
|
|
}
|
|
|
|
button.action:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.needs_pwd {
|
|
display: none;
|
|
}
|
|
|
|
.needs_pwd.shown {
|
|
display: block;
|
|
}
|
|
|
|
.action.shown {
|
|
height: 100%;
|
|
}
|
|
|
|
section .meta {
|
|
padding-left: 10px;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.progress-container {
|
|
width: 50%;
|
|
display: inline-block;
|
|
background-color: tomato;
|
|
height: 10px;
|
|
position: relative;
|
|
}
|
|
|
|
.progress-bar {
|
|
background-color: #63f0fd;
|
|
height: 10px;
|
|
display: inline-block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
span#password {
|
|
font-family: monospace;
|
|
background-color: black;
|
|
color: white;
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
padding: 1px 4px;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.copyable {
|
|
color: blue;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.copyable:hover {
|
|
cursor: pointer;
|
|
}
|