diff options
author | JoelHMikael <joel.h.kronqvist@gmail.com> | 2021-12-30 21:30:53 +0200 |
---|---|---|
committer | JoelHMikael <joel.h.kronqvist@gmail.com> | 2021-12-30 21:30:53 +0200 |
commit | 7743b9ff7b9eb85ea9502e401529f10fed83a0f6 (patch) | |
tree | 9aea492f7595d321156800fa2de60699e721442b /index.css | |
parent | 4c4f007130ff20691b9ac2f5fbf05ed5be3c9931 (diff) | |
download | LYLLRuoka-7743b9ff7b9eb85ea9502e401529f10fed83a0f6.tar.gz LYLLRuoka-7743b9ff7b9eb85ea9502e401529f10fed83a0f6.zip |
Footer
Diffstat (limited to 'index.css')
-rw-r--r-- | index.css | 28 |
1 files changed, 26 insertions, 2 deletions
@@ -56,6 +56,11 @@ body { margin: .5em; } +/*** the input field & choose ***/ +#input[type="text"], select { + background-color: white; +} + /*** the send-button ***/ #send { background: blue; @@ -74,6 +79,25 @@ body { box-shadow: .25em .25em; } +/*** Footer ***/ +footer { + position: fixed; + top: calc(100% - 3em); + left: 0; + + width: 100%; + margin: 0; + padding: 1em; + line-height: 1em; + box-sizing: border-box; + + background-color: #0d0d0d; +} + +footer > a { + color: #b3b3b3; +} + /*** The shadowed elements ***/ .highlight { border: 1px solid black; @@ -88,7 +112,7 @@ img.info { vertical-align: middle; } -img.info ~ span { +img.info + span { position: relative; vertical-align: middle; left: -1em; @@ -120,7 +144,7 @@ p.infoblock { opacity: 0; } -img.info:hover ~ span > p.infoblock { +img.info:hover + span > p.infoblock { animation-name: fade-in; animation-duration: var(--fadetime); visibility: visible; |