vail/static/vail.css

69 lines
849 B
CSS

.flex {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
justify-content: space-around;
}
.mdl-card {
margin: 0.5em;
}
.key {
width: 100%;
height: 6em;
}
.center {
text-align: center;
}
.right {
text-align: right;
}
.maximized .key {
height: 90vh;
}
.wide {
width: 100%;
}
#errors {
color: rgba(127, 0, 0, .54);
max-height: 5em;
overflow-y: scroll;
}
@keyframes yellow-fade {
0% {background: yellow;}
100% {background: none;}
}
#errors p {
margin: 0;
animation: yellow-fade 2s ease-in 1;
}
kbd {
background-color: #eee;
border: 1px solid #bbb;
border-radius: 3px;
font-size: 9pt;
padding: .1em .6em;
}
code {
background-color: #333;
color: #fff;
padding: 0.1em;
}
img {
max-width: 20em;
}
.mdl-card__supporting-text {
max-height: 20em;
overflow-y: scroll;
}