diff options
| author | jackyzha0 <[email protected]> | 2020-05-13 23:34:12 -0700 |
|---|---|---|
| committer | jackyzha0 <[email protected]> | 2020-05-13 23:34:12 -0700 |
| commit | 28f0e55475ecac41034e3fac8c48ea0a332d364c (patch) | |
| tree | 421ab164e447c63cb163aff4f081072385d8ca4f /frontend/src/css | |
| parent | use var (diff) | |
| download | ctrl-v-28f0e55475ecac41034e3fac8c48ea0a332d364c.tar.xz ctrl-v-28f0e55475ecac41034e3fac8c48ea0a332d364c.zip | |
on new paste modal
Diffstat (limited to 'frontend/src/css')
| -rw-r--r-- | frontend/src/css/index.css | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/frontend/src/css/index.css b/frontend/src/css/index.css index 3279aac..32e4065 100644 --- a/frontend/src/css/index.css +++ b/frontend/src/css/index.css @@ -86,7 +86,7 @@ a { color: #111111; } -input[type=submit] { +input[type=submit], button[type=submit] { font-family: 'Lora', serif; font-weight: 700; color: #faf9f5; @@ -96,6 +96,18 @@ input[type=submit] { outline: 0; } +button[type=button] { + font-family: 'Lora', serif; + width: 7em; + padding: calc(0.8em - 1px) 1.5em; + border-radius: 3px; + color: #111111; + background-color: #faf9f5; + border: 1px solid #565656; + outline: none; + margin: 2em 2em; +} + ul { list-style-type: none; display: inline-block; |