How could I add a new rule to this CSS stylesheet?
.tag {
background: #333333;
border-radius: 3px;
color: #ffffff;
font: 10px "Gibson-Regular", sans-serif;
letter-spacing: 1px;
margin-right: 1px;
padding: 2px 3px 2px 4px;
position: relative;
top: -1px;
text-transform: uppercase;
}
.tag a {
color: #ffffff;
text-decoration: none !important;
}
// already in the code
.tag.yolo {
background-color: #0066CC;
}
// I want this to be added
.tag.yolo {
background-color: #0066CC;
}
I'd prefer to do this with only Javascript
.tag.yolo {
background-color: #0066CC;
}