diff options
Diffstat (limited to 'static')
| -rw-r--r-- | static/custom.css | 63 |
1 files changed, 59 insertions, 4 deletions
diff --git a/static/custom.css b/static/custom.css index 588ab52..661e2a8 100644 --- a/static/custom.css +++ b/static/custom.css @@ -51,14 +51,16 @@ a:hover { .center { text-align: center; } +.content { + margin-top: 50px; + width: 100%; + padding: 15px 0 0 ; +} .journal { - background-color: #efefef; color: #1f1f1f; - margin-top: 50px; + background-color: #efefef; border: 1px solid #e0e0e0; box-shadow: 0 0 2px #ddd; - width: 100%; - padding: 15px 0 0 ; } .article { text-align: left; @@ -108,3 +110,56 @@ a:hover { text-align: left; } } +::-webkit-input-placeholder { /* WebKit, Blink, Edge */ + color: #3f3f3f; + opacity: .75; +} +:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ + color: #3f3f3f; + opacity: .75; +} +::-moz-placeholder { /* Mozilla Firefox 19+ */ + color: #3f3f3f; + opacity: .75; +} +:-ms-input-placeholder { /* Internet Explorer 10-11 */ + color: #3f3f3f; + opacity: .75; +} +.contactform input{ + color: #000; +} +.contactform textarea { + color: #000; +} +.contactform:hover { +} +.contactform-button { + /* + background-color: #1f1f1f !important; + border-color: #efefef !important; + color: #1f1f1f !important; + text-shadow: 0 0 1px #1f1f1f; + transition: text-shadow 1s; + */ + color: #3f3f3f !important; +} +.contactform-button:hover { + text-decoration: underline; + color: inherit !important; + text-shadow: 0 0 1px #efefef; + transition: color 1s; +} +input[type="email"]:focus, +input[type="number"]:focus, +input[type="search"]:focus, +input[type="text"]:focus, +input[type="tel"]:focus, +input[type="url"]:focus, +input[type="password"]:focus, +textarea:focus, +select:focus { + background-color: #efefef; + border: 1px solid #e0e0e0 !important; + box-shadow: 0 0 2px #ddd !important; + } |
