diff options
Diffstat (limited to 'Blog/wwwroot/app.css')
| -rw-r--r-- | Blog/wwwroot/app.css | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/Blog/wwwroot/app.css b/Blog/wwwroot/app.css index 038f76e..d5dd2b4 100644 --- a/Blog/wwwroot/app.css +++ b/Blog/wwwroot/app.css | |||
| @@ -39,7 +39,7 @@ h1:focus { | |||
| 39 | 39 | ||
| 40 | * { | 40 | * { |
| 41 | box-sizing: border-box; | 41 | box-sizing: border-box; |
| 42 | font-size: calc(1rem + 0.5vw); | 42 | font-size: calc(1rem + 0.4vw); |
| 43 | font-family: monospace; | 43 | font-family: monospace; |
| 44 | } | 44 | } |
| 45 | 45 | ||
| @@ -48,6 +48,7 @@ h1:focus { | |||
| 48 | --white: #fafafa; | 48 | --white: #fafafa; |
| 49 | --error: #da0000; | 49 | --error: #da0000; |
| 50 | --info: #669aba; | 50 | --info: #669aba; |
| 51 | --green: #5fbb5d; | ||
| 51 | 52 | ||
| 52 | --ratio: 1.5; | 53 | --ratio: 1.5; |
| 53 | --s0: 1rem; | 54 | --s0: 1rem; |
| @@ -248,6 +249,10 @@ footer > ul { | |||
| 248 | columns: 2; | 249 | columns: 2; |
| 249 | } | 250 | } |
| 250 | 251 | ||
| 252 | .two-column { | ||
| 253 | columns: 2; | ||
| 254 | } | ||
| 255 | |||
| 251 | legend::before { | 256 | legend::before { |
| 252 | content: "( "; | 257 | content: "( "; |
| 253 | } | 258 | } |
| @@ -298,3 +303,16 @@ span.name { | |||
| 298 | li.dash { | 303 | li.dash { |
| 299 | list-style-type: "- "; | 304 | list-style-type: "- "; |
| 300 | } | 305 | } |
| 306 | |||
| 307 | .json-true { | ||
| 308 | color: var(--green); | ||
| 309 | } | ||
| 310 | |||
| 311 | .json-false { | ||
| 312 | color: var(--error); | ||
| 313 | } | ||
| 314 | |||
| 315 | .json-number { | ||
| 316 | color: var(--info); | ||
| 317 | } | ||
| 318 | |||