File size: 805 Bytes
27867f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
td a {
color: inherit;
text-decoration: none;
}
.dmTable{
background: var(--docked-drawer-background);
width: 95%;
}
.dmIcon{
min-width: 2em;
font-size: 150%;
text-align: center;
display: table-cell;
}
@media not all and (min-width:50em){
.dmIcon{
min-width:1.3em;
}
.dmTable{
width: 99%;
}
}
@media not all and (max-width:60em){
.dmIcon{
min-width:3em;
}
}
.dmItem{
width:95%;
}
.dmItemTitle{
font-size: 110%;
font-weight: bold;
}
.dmSection{
font-size: 130%;
font-weight: bold;
width:95%;
}
.dmButton{
white-space: nowrap;
height: 2em;
width: 50%;
}
@media not all and (min-width:50em){
.dmButton{
min-width:15em;
}
}
|