Bear (
tropicsbear) wrote in
ao3_skins2016-05-23 02:38 pm
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
![[community profile]](https://www.dreamwidth.org/img/silk/identity/community.png)
Entry tags:
Making buttons flat and tweaking headers
After AO3 updated their code, the most of the action buttons on my layout (which used to be flat, basically just the text inside a box) reverted back to their default site skin appearance. The headers ("Find your favorites," "News," etc.) on the homepage are wonky too—they're either the default site color (maroon) or the wrong font (Lucida Grande when they should be Calisto MT).
I can't figure out the part of my CSS I need to tweak and was hoping someone could point me in the right direction x__x
Here's the CSS I'm using:
I can't figure out the part of my CSS I need to tweak and was hoping someone could point me in the right direction x__x
Here's the CSS I'm using:
no subject
You'll need to add .actions a:link here:
.actions a,
.actions a:link,
.action,
.actions input,
input[type="submit"],
button,
.current,
.actions label {
background: #fffff1;
border-color: #bcdada;
border-radius: 0;
color: #ae9581;
}
And change
.system .latest h3,
.system div.news h3 {
border-bottom: 1px solid #ddddff;
color: #025d65;
font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'GNU Unifont', Verdana, Helvetica, sans-serif;
}
to
.splash .module h3 {
border-bottom: 1px solid #ddddff;
color: #025d65;
}
Hope this helps!
no subject