First, I'm sorry for the links. I tend to skip stickies these days thinking they all say pretty much the same stuff, so sometimes I end up looking like a silly goose (like now).
Here's a copy + paste of my code:
HTML:
<a href="/landing/get-started" class="green-btn" id="get-started-btn">Get Started Today!</a>
CSS:
a.green-btn:link {
color: #FFF !important;
}
css_3360ce6980e00b78520f3bbca3b02788.css:99
a:link {
color: #0A7DB9;
font-weight: bold;
text-decoration: none;
}
css_3360ce6980e00b78520f3bbca3b02788.css:100
.green-btn {
background-image: linear-gradient(-90deg,rgb(102,205,51) 30%,rgba(51,154,0,0.5));
background-image: -webkit-gradient(linear,left top,left bottom,color-stop(30%,rgb(102,205,51)),color-stop(100%,rgba(51,154,0,0.5)));
background-image: -moz-linear-gradient(-90deg,rgb(102,205,51) 30%,rgba(51,154,0,0.5));
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#9966cd33',EndColorStr='#50339a00');
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#9966cd33',EndColorStr='#50339a00')";
background-color: rgb(51,154,0);
border: 2px solid rgb(43,129,0);
border-radius: 8px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
box-shadow: 2px 3px 4px rgba(51,51,51,0.75);
-moz-box-shadow: 2px 3px 4px rgba(51,51,51,0.75);
-webkit-box-shadow: 2px 3px 4px rgba(51,51,51,0.75);
color: #FFF;
display: inline-block;
font-size: 1.1em;
font-weight: bold;
margin: 1em 0;
padding: 15px 20px;
text-shadow: 1px 1px 3px rgb(0,0,0);
}
user agent stylesheet
a:-webkit-any-link {
color: -webkit-link;
text-decoration: underline;
cursor: auto;
}
Inherited from p
css_3360ce6980e00b78520f3bbca3b02788.css:100
#featured-menu p {
font-size: 1.3em;
line-height: 1.3em;
}
Inherited from div#page
css_3360ce6980e00b78520f3bbca3b02788.css:99
#page {
font-size: 0.75em;
line-height: 1.333em;
}
Inherited from body.not-front.logged-in.page-landing.no-sidebars.admin.section-landing.admin-menu
css_3360ce6980e00b78520f3bbca3b02788.css:99
body, caption, th, td, input, textarea, select, option, legend, fieldset {
font-family: Tahoma,Verdana,Arial,Helvetica,"Bitstream Vera Sans",sans-serif;
}
css_3360ce6980e00b78520f3bbca3b02788.css:99
body {
font-size: 100%;
color: #595959;
}
Note that even the Inspector that comes with Chrome has all colors crossed out except the color: #FFF !important; and yet he color is still #0A7DB9;
I should have to do with :visited because I have tried debugging hat as well by basically copying and pasting the above but with :visited (and even :hovered) instead of :link and the result is the same. The people on the #css on freenode were as confused as I am.