[refactor] Enabled Stylelint rule "color-named"

Going with no named colors for consistency.
This commit is contained in:
Steven Evans
2018-07-09 16:00:51 -04:00
parent 79a489d7a9
commit 9f3459a46f
9 changed files with 86 additions and 86 deletions
+5 -5
View File
@@ -25,7 +25,7 @@
margin: 10px;
padding: 5px;
border-radius: 12px;
border: 3px solid white;
border: 3px solid #ffffff;
-moz-box-shadow: 1px 1px 3px #000;
-webkit-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
@@ -33,7 +33,7 @@
#work-in-progress-cancel-button:hover,
#work-in-progress-cancel-button:focus {
color: white;
color: #ffffff;
text-decoration: none;
cursor: pointer;
}
@@ -44,12 +44,12 @@
}
.bitnode {
color:blue;
color:#00f;
}
.bitnode-destroyed {
color:red;
color:#f00;
}
.bitnode:hover,
.bitnode-destroyed:hover {
color:white;
color:#ffffff;
}