diff options
Diffstat (limited to 'assets/style.css')
-rw-r--r-- | assets/style.css | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/assets/style.css b/assets/style.css index 52212db..888a420 100644 --- a/assets/style.css +++ b/assets/style.css @@ -48,19 +48,20 @@ nav a:hover { background-size: 0 2px, 100% 2px; } -h1 {font-size: xx-large } -h2 {font-size: x-large } -h3 {font-size: large } -h4 {font-size: medium } +h1 { font-size: xx-large } +h2 { font-size: x-large } +h3 { font-size: large } +h4 { font-size: medium } -p,h1,h2,h3,h4,h5,h6,li { font-family: "Ubuntu", sans-serif; } +p,h1,h2,h3,h4,h5,h6,li,summary { font-family: "Ubuntu", sans-serif; } h1,h2 { color: var(--ac1) } h3 { color: var(--ac2); margin-left: 1em } h4 { color: var(--ac3); margin-left: 2em } -p,li { color: white; margin-left: 3em } +p,li,summary { color: white; margin-left: 3em } a { color: var(--ac2); font-style: italic; text-decoration: underline } a:hover { color: var(--ac3) } hr { border: 1px solid grey } +summary { font-size: large; } math { color:white } @@ -95,9 +96,11 @@ input[type=submit] { margin-right: 0.3em; } -.status-Unknown { background-color: #4b4b4b; } -.status-Planned { background-color: #6d5dff; } -.status-Developing { background-color: #5dfff1; } -.status-Stale { background-color: #d6d44b; } -.status-Maintained { background-color: #8cff56; } -.status-Abandoned { background-color: #ff9854; } +.status-unknown { background-color: #4b4b4b; } +.status-planned { background-color: #6d5dff; } +.status-developing { background-color: #5dfff1; } +.status-paused-working { background-color: #53b11d; } +.status-paused-unfinished { background-color: #d6d44b; } +.status-maintained { background-color: #95ff63; } +.status-abandoned-working { background-color: #ff9854; } +.status-abandoned-unfinished { background-color: #ff6854; } |