ecoffee/app/assets/stylesheets/application.css

136 lines
1.8 KiB
CSS

body {
font-family: sans-serif;
margin: 40px;
}
header {
display: flex;
align-items: center;
gap: 3px;
margin-bottom: 10px;
}
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;
}
.action {
display: none;
}
.action.shown {
display: block;
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;
}