diff options
| author | Horus3 | 2016-11-23 18:07:51 +0100 |
|---|---|---|
| committer | Horus3 | 2016-11-23 18:07:51 +0100 |
| commit | 68c22afe782299a5efd54afd4e6367efd025aec9 (patch) | |
| tree | 7a0758c0b7eac350941fec8345c8b483cd84b4db /static/custom.css | |
| parent | 26c446cd6f9d4bf58d3b7368ea984ce167f4081c (diff) | |
| download | iamfabulous.de-68c22afe782299a5efd54afd4e6367efd025aec9.tar.gz | |
Fügt contact form hinzu.
Diffstat (limited to 'static/custom.css')
| -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; + } |
