Skip to content
Snippets Groups Projects
Commit 10945870 authored by Lillian Gray's avatar Lillian Gray
Browse files

Added close button to dashboard #7

parent 059f4950
Branches
No related merge requests found
......@@ -83,6 +83,37 @@ body {
transition: -webkit-box-shadow 0.1s ease-out;
}
.close {
position: absolute;
right: 16px;
top: 16px;
width: 32px;
height: 32px;
opacity: 0.75;
cursor: pointer;
}
.close:hover {
opacity: 1;
}
.close:before, .close:after {
position: absolute;
left: 14px;
content: ' ';
height: 32px;
width: 4px;
background-color: #9f2d42;
}
.close:before {
transform: rotate(45deg);
}
.close:after {
transform: rotate(-45deg);
}
.about {
line-height: 25px;
text-align: justify;
......
......@@ -22,6 +22,7 @@
</div> <!-- end header -->
<div id="dashboard">
<div class="close displayNone"></div>
<div id="lineChart"></div>
<div id="control"></div>
<div id="aboutText" class="displayNone">
......
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