diff options
author | dan <[email protected]> | 2023-02-28 10:44:28 -0500 |
---|---|---|
committer | dan <[email protected]> | 2023-02-28 10:44:28 -0500 |
commit | cb1b352f44655a5ac0d4113b32b8b42a7f7e9dc5 (patch) | |
tree | c8720d03ef5ca6e29d4e48f8329fb0cc00cd8d0e /style.css | |
parent | 37db988e1aa49411e6000df64220aeebf8c4a198 (diff) | |
download | 54-cb1b352f44655a5ac0d4113b32b8b42a7f7e9dc5.tar.gz 54-cb1b352f44655a5ac0d4113b32b8b42a7f7e9dc5.tar.bz2 54-cb1b352f44655a5ac0d4113b32b8b42a7f7e9dc5.zip |
fix vhosts map; fix mobile width; increase text field font size; restyle login form; stylesheet is downloaded separately to html
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -133,3 +133,22 @@ tr:nth-child(even) { #submit:active { box-shadow: inset -2px -2px 3px rgba(255, 255, 255, 0.6), inset 2px 2px 3px rgba(0, 0, 0, 0.6); } + +input[type=text], input[type=password] { + width: 100%; + padding: 12px 20px; + margin: 8px 0; + display: inline-block; + border: 1px solid #ccc; + box-sizing: border-box; + font-size: 1em; +} + +.login-form { + max-width: 20em; +} + +textarea { + font-size: 1em; + font-family: Lato, FreeSans, Roboto, Helvetica, Sans-Serif; +} |