diff options
| author | Ryan Mehri <[email protected]> | 2020-05-14 12:55:40 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-05-14 12:55:40 -0600 |
| commit | fcadb1bf21403f357e48542fd94c78828044e07b (patch) | |
| tree | 421ab164e447c63cb163aff4f081072385d8ca4f /frontend/src/css/index.css | |
| parent | Merge pull request #20 from jackyzha0/pass-rendering (diff) | |
| parent | on new paste modal (diff) | |
| download | ctrl-v-fcadb1bf21403f357e48542fd94c78828044e07b.tar.xz ctrl-v-fcadb1bf21403f357e48542fd94c78828044e07b.zip | |
Merge pull request #22 from jackyzha0/paste-modal
on new paste modal
Diffstat (limited to 'frontend/src/css/index.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; |