vail/static/vail.css

69 lines
849 B
CSS
Raw Normal View History

2020-04-20 22:12:30 -06:00
.flex {
2020-04-10 10:23:40 -06:00
display: flex;
flex-wrap: wrap;
2020-04-20 22:12:30 -06:00
align-items: flex-start;
justify-content: space-around;
}
2020-04-26 15:46:37 -06:00
.mdl-card {
margin: 0.5em;
}
2020-04-20 22:12:30 -06:00
.key {
width: 100%;
height: 6em;
2020-04-10 08:27:35 -06:00
}
2020-04-26 21:43:55 -06:00
.center {
text-align: center;
}
2020-05-05 20:10:16 -06:00
.right {
text-align: right;
}
.maximized .key {
2020-05-05 20:46:55 -06:00
height: 90vh;
2020-05-05 20:10:16 -06:00
}
2020-04-26 21:43:55 -06:00
.wide {
width: 100%;
}
2020-05-01 15:07:09 -06:00
#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;
}
2020-04-10 08:27:35 -06:00
code {
background-color: #333;
color: #fff;
padding: 0.1em;
}
2020-04-10 10:23:40 -06:00
img {
max-width: 20em;
}
2020-05-01 15:07:09 -06:00
.mdl-card__supporting-text {
max-height: 20em;
overflow-y: scroll;
}