Started working on Work functionality

This commit is contained in:
Daniel Xie
2017-02-05 23:01:01 -06:00
parent d20da28c51
commit f5b0796948
6 changed files with 155 additions and 4 deletions
+27
View File
@@ -0,0 +1,27 @@
#work-in-progress-container {
}
#work-in-progress-text {
color: #66ff33;
}
#work-in-progress-cancel-button {
color: #aaa;
float: right;
font-size: 20px;
font-weight: bold;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-moz-box-shadow: 1px 1px 3px #000;
-webkit-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
}
#work-in-progress-cancel-button:hover,
#work-in-progress-cancel-button:focus {
color: white;
text-decoration: none;
cursor: pointer;
}