diff options
Diffstat (limited to 'assets')
-rw-r--r-- | assets/css/edit.css | 43 | ||||
-rw-r--r-- | assets/css/home.css | 7 |
2 files changed, 40 insertions, 10 deletions
diff --git a/assets/css/edit.css b/assets/css/edit.css index e5f6cda..e166418 100644 --- a/assets/css/edit.css +++ b/assets/css/edit.css @@ -9,7 +9,8 @@ div#main { body { margin: 0; height: 100%; - background-color: #b1b1b1; + font-family: monospace; + font-size: 15px; } .menu { @@ -26,6 +27,7 @@ body { flex: 2; position: relative; height: 100%; + background-color: lightgrey; } @@ -119,13 +121,13 @@ body { .tab label { margin-right: 10px; - border: outset; - background-color: var(--color1); + border: solid rgba(0, 0, 0, 0); + padding: 0px 2px; } .checkboxtab:checked ~ label { - border: inset; + border: solid 1px; } .checkboxtab:checked ~ .content @@ -146,7 +148,7 @@ html { height: 100%; } -.tabs textarea {height: 100%;width: 100%;border: none;resize: none;} +.tabs textarea {height: 100%;width: 100%;border: none;resize: none;padding: 1%;} * { box-sizing: border-box; @@ -157,6 +159,8 @@ html { } .editor #topbar { + height: 30px; + background-color: #7b97b9; line-height: 30px; } @@ -165,7 +169,7 @@ html { padding: 0; } -.editor #leftbar select { +.editor .bar select { width: 100%; } @@ -174,8 +178,29 @@ html { } -.editor a {color: black;text-decoration: none;} -.editor a:hover { - color: white; + +details { + background-color: darkgrey; +} + +.bar { + background-color: lightgrey; +} + +input#fontsize { + width: 36px; } + +span#headid { + border: solid 1px; + padding: 2px 4px; +} + +a { + color: black; +} + +#fonts select { + height: 150px; +}
\ No newline at end of file diff --git a/assets/css/home.css b/assets/css/home.css index 582042a..2fc3773 100644 --- a/assets/css/home.css +++ b/assets/css/home.css @@ -9,10 +9,15 @@ div#main { body { margin: 0; height: 100%; - background-color: #b1b1b1; + background-color: lightgrey; + font-family: monospace; + font-size: 15px; } .menu { position: fixed; right: 0; } + + + |