diff options
Diffstat (limited to 'styles/utility.css')
-rw-r--r-- | styles/utility.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/styles/utility.css b/styles/utility.css index 0393d1d..7f5ebbd 100644 --- a/styles/utility.css +++ b/styles/utility.css @@ -15,6 +15,9 @@ .bg-800 { background-color: var(--gray-800); } .bg-900 { background-color: var(--gray-900); } +.fg-100 { color: var(--gray-100); } +.fg-900 { color: var(--gray-900); } + .posabs { position: absolute; } .posrel { position: relative; } .posfix { position: fixed; } @@ -40,6 +43,13 @@ .floatr { float: right; } +.w100m2m { width: calc(100% - var(--spacing-medium)); } + +.fullwidth { + width: 100%; + box-sizing: border-box; +} + .subtile { color: var(--gray-600); font-style: italic; |