I'm having trouble understanding why this code is taking precedence over the subsequent code in the stylesheet.
/* Line 612 */
input[type='submit'], input[type='button'], button {
background-color: #d3dce0;
border: 1px solid #787878;
cursor: pointer;
font-size: 1.2em;
font-weight: 600;
padding: 7px;
margin-right: 8px;
width: auto;
}
Shouldn't the following snippet change the border and background color?
/* Line 764 */
.fakelink {
border: 0px;
color: blue;
background-color: transparent;
margin-top: 0px;
margin-bottom: 0px;
}
Even after adding the code from line 764, the border and background still reflect what was specified on line 612. I would like it to be as described on line 764 instead. Is there a way to override line 612 without directly modifying it?