diff options
Diffstat (limited to 'src/main/resources/static')
| -rw-r--r-- | src/main/resources/static/style.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css index 5a70c2d..203ac56 100644 --- a/src/main/resources/static/style.css +++ b/src/main/resources/static/style.css @@ -86,6 +86,10 @@ nav > ul > li:first-of-type { text-decoration: none; } +.centered { + text-align: center; +} + main { margin: 0 auto; max-width: 1140px; @@ -209,6 +213,25 @@ td.bg-gray, th.bg-gray { color: white; } +.bg-path { + background: var(--bg-gray-op); +} + +.bg-from { + background: var(--bg-red-op); +} + +.bg-to { + background: var(--bg-green-op); +} + +.bg-path, .bg-from, .bg-to { + padding: 0.25rem 0.5rem; + border-radius: 3px; + + font-family: monospace; +} + td.bg-shaded, th.bg-shaded { background: repeating-linear-gradient(140deg, white, #e5e5f5 4px, white 8px); } |
