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 53 54 55 56 57 58 59 60 61 62 63 64
|
Grid {
grid-size: 3 3;
align: center middle;
}
Container {
width: 100%;
height: 100%;
align: center middle;
}
#lbl1 { /* (1)! */
border: vkey $secondary;
}
#lbl2 { /* (2)! */
border: round $secondary;
border-title-align: right;
border-subtitle-align: right;
}
#lbl3 {
border: wide $secondary;
border-title-align: center;
border-subtitle-align: center;
}
#lbl4 {
border: ascii $success;
border-title-align: center; /* (3)! */
border-subtitle-align: left;
}
#lbl5 { /* (4)! */
/* No border = no (sub)title. */
border: none $success;
border-title-align: center;
border-subtitle-align: center;
}
#lbl6 { /* (5)! */
border-top: solid $success;
border-bottom: solid $success;
}
#lbl7 { /* (6)! */
border-top: solid $error;
border-bottom: solid $error;
padding: 1 2;
border-subtitle-align: left;
}
#lbl8 {
border-top: solid $error;
border-bottom: solid $error;
border-title-align: center;
border-subtitle-align: center;
}
#lbl9 {
border-top: solid $error;
border-bottom: solid $error;
border-title-align: right;
}
|