Commit f630fce7 by Kyle Fiedler

Fixed bug with the calculator

parent 4018fd47
...@@ -664,7 +664,7 @@ footer nav ul.social li.linkedin a { ...@@ -664,7 +664,7 @@ footer nav ul.social li.linkedin a {
background: url("/static/images/linkedin.png") 0 0 no-repeat; } background: url("/static/images/linkedin.png") 0 0 no-repeat; }
li.calc-main { li.calc-main {
bottom: 0; bottom: -36px;
left: 0; left: 0;
position: fixed; position: fixed;
width: 100%; } width: 100%; }
...@@ -691,13 +691,17 @@ li.calc-main a.calc { ...@@ -691,13 +691,17 @@ li.calc-main a.calc {
*vertical-align: auto; *vertical-align: auto;
padding: 8px 12px; padding: 8px 12px;
width: 16px; width: 16px;
height: 20px; } height: 20px;
position: relative;
top: -36px; }
li.calc-main a.calc:hover { li.calc-main a.calc:hover {
opacity: .8; } opacity: .8; }
li.calc-main a.calc.closed { li.calc-main a.calc.closed {
background-image: url("/static/images/close-calc-icon.png"); } background-image: url("/static/images/close-calc-icon.png"); }
li.calc-main div#calculator_wrapper { li.calc-main div#calculator_wrapper {
background: rgba(17, 17, 17, 0.9); background: rgba(17, 17, 17, 0.9);
position: relative;
top: -36px;
clear: both; } clear: both; }
li.calc-main div#calculator_wrapper form { li.calc-main div#calculator_wrapper form {
padding: 22.652px; } padding: 22.652px; }
......
li.calc-main { li.calc-main {
bottom: 0; bottom: -36px;
left: 0; left: 0;
position: fixed; position: fixed;
width: 100%; width: 100%;
...@@ -16,6 +16,8 @@ li.calc-main { ...@@ -16,6 +16,8 @@ li.calc-main {
padding: 8px 12px; padding: 8px 12px;
width: 16px; width: 16px;
height: 20px; height: 20px;
position: relative;
top: -36px;
&:hover { &:hover {
opacity: .8; opacity: .8;
...@@ -28,6 +30,8 @@ li.calc-main { ...@@ -28,6 +30,8 @@ li.calc-main {
div#calculator_wrapper { div#calculator_wrapper {
background: rgba(#111, .9); background: rgba(#111, .9);
position: relative;
top: -36px;
clear: both; clear: both;
form { form {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment