vail/static/vail.css

93 lines
1.2 KiB
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;
}
.maximize {
position: absolute;
bottom: 0;
right: 0;
}
.maximized .key {
height: 90vh;
}
.maximized {
width: 90vw;
}
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;
}
2020-05-17 12:52:25 -06:00
.mdl-card__supporting-text.long {
max-height: inherit;
}
.morsetree {
width: 100%;
}
.morsetree tr {
height: 1.4em;
text-align: center;
font-family: monospace;
}
.morsetree tr,
.morsetree td:nth-child(n+2) {
background: #eee;
}
.morsetree tr:nth-child(n+2) {
background: #ddd;
}