diff options
Diffstat (limited to 'styles/util.css')
-rw-r--r-- | styles/util.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/styles/util.css b/styles/util.css index 3589267..a2381ae 100644 --- a/styles/util.css +++ b/styles/util.css @@ -51,6 +51,11 @@ .floatr { float: right; } .floatl { float: left; } .floatn { float: none; } +.floatb { + display: flex; + justify-content: flex-end; + flex-direction: column; +} .w1fr { width: 1fr; } @@ -59,6 +64,8 @@ .w100vw { width: 100vw; } .h100vh { height: 100vh; } +.nobr { white-space: nowrap; } + .fullwidth { width: 100%; box-sizing: border-box; @@ -103,3 +110,7 @@ transform: translate(-50%, -50%); } +.numbers { + font-feature-settings: 'tnum' on, 'lnum' on, 'ss01' on, 'cv01' on; +} + |