diff options
Diffstat (limited to 'public/assets/css/bucky.css')
| -rw-r--r-- | public/assets/css/bucky.css | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/public/assets/css/bucky.css b/public/assets/css/bucky.css index 2e00022..5d4a1a6 100644 --- a/public/assets/css/bucky.css +++ b/public/assets/css/bucky.css @@ -13,6 +13,10 @@ body { body.loading { opacity: 0; } +body.black { + background: #211; + color: #eee; +} * { box-sizing: border-box; } @@ -35,6 +39,7 @@ button, input[type=submit] { margin: 3px; background-color: #c8d0dc; text-transform: uppercase; + cursor: pointer; } .desktop button:hover, .desktop input[type=submit] { @@ -370,6 +375,7 @@ tr:nth-child(even) td.black { background-color: #eee; border-bottom-color: position: relative; vertical-align: top; padding-right: 110px; + color: #111111; } .comment .body { font-size: 12px; @@ -627,7 +633,7 @@ pre br { } #search .desc { display: block; - max-width: 500px; + width: 500px; padding-left: 10px; } #search .meta { @@ -677,9 +683,15 @@ pre br { background: transparent; outline: 0; width: 270px; + transition: background 200ms; + background: white; +} +.search_form input[type='text']:invalid { + background: transparent; } .search_form input[type='text']:focus { border-bottom: 1px solid #211; + border-radius: 2px 2px 0 0; color: #211; } @@ -760,6 +772,15 @@ header .search_form { display: inline-block; } +/* 404 */ +#error_404 { + display: none; + margin: 10px 0; +} +#error_404 a { + font-size: 16px; +} + @media (max-width: 700px) { body { padding: 10px 10px; |
