Commit 6de65f88 by Kyle Fiedler

Added some hovers fo the caledar

parent fe1b87c2
...@@ -104,16 +104,16 @@ textarea { ...@@ -104,16 +104,16 @@ textarea {
} }
} }
.wip { // .wip {
outline: 1px solid #f00 !important; // outline: 1px solid #f00 !important;
position: relative; // position: relative;
&:after { // &:after {
content: "WIP"; // content: "WIP";
font-size: 8px; // font-size: 8px;
padding: 2px; // padding: 2px;
background: #f00; // background: #f00;
color: #fff; // color: #fff;
@include position(absolute, 0px 0px 0 0); // @include position(absolute, 0px 0px 0 0);
} // }
} // }
...@@ -118,23 +118,24 @@ section.cal { ...@@ -118,23 +118,24 @@ section.cal {
position: relative; position: relative;
> div { > div {
background: $dark-blue;
@include box-shadow(0 0 5px darken($light-blue, 60%));
@include box-sizing(border-box);
display: none; display: none;
margin-left: 3%;
padding: 10px;
@include position(absolute, 30px 0 0 0); @include position(absolute, 30px 0 0 0);
width: 90%; width: 90%;
background: rgba(#000, .9);
padding: 10px;
@include box-sizing(border-box);
@include border-radius(3px);
z-index: 99; z-index: 99;
&:before { &:before {
background: $dark-blue;
content: " "; content: " ";
display: block; display: block;
background: rgba(#000, .8);
width: 10px;
height: 10px; height: 10px;
@include position(absolute, -5px 0 0 50%); @include position(absolute, -5px 0 0 50%);
@include transform(rotate(45deg)); @include transform(rotate(45deg));
width: 10px;
} }
ul { ul {
...@@ -143,27 +144,34 @@ section.cal { ...@@ -143,27 +144,34 @@ section.cal {
background: none; background: none;
input { input {
width: 100%;
@include box-sizing(border-box); @include box-sizing(border-box);
border-color: #000; width: 100%;
padding: 6px;
} }
select { select {
width: 100%;
@include box-sizing(border-box); @include box-sizing(border-box);
width: 100%;
option { option {
font-size: 14px; font-size: 14px;
} }
} }
div {
margin-top: 10px;
}
a { a {
color: $light-blue;
float: right; float: right;
&:first-child { &:first-child {
float: left; float: left;
} }
&:hover {
color: #fff;
}
} }
} }
} }
......
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