Skip to content

Instantly share code, notes, and snippets.

@dustincys
Last active January 3, 2016 13:48
Show Gist options
  • Save dustincys/8471489 to your computer and use it in GitHub Desktop.
Save dustincys/8471489 to your computer and use it in GitHub Desktop.
css for goldendict
body{
color:#b08d58;
background:black;
}
.dsl_m1 {
font-family: Agency FB;
font-weight: bold;
color: #FF33FF;
font-size: 22px;
}
.dsl_headwords p{
font-weight: bold;
font-size: 30px;
text-shadow: 20px 10px 5px #999;
font-family: Segoe Print;
color: red;
}
.dsl_headwords{
position:relative;
animation:myfirst 5s linear 2s infinite alternate;
/* Firefox: */
-moz-animation:myfirst 5s linear 2s infinite alternate;
/* Safari and Chrome: */
-webkit-animation:myfirst 5s linear 2s infinite alternate;
/* Opera: */
-o-animation:myfirst 5s linear 2s infinite alternate;
}
@-webkit-keyframes myfirst /* Safari and Chrome */
{
0% {left:0px; top:0px;}
100% {left:0px; top:10px;}
}
.dsl_ex{
color: gray;
font-size: 14px;
}
img{
-webkit-box-shadow:#999 1px 1px 8px;
-moz-box-shadow:#999 1px 1px 8px;
box-shadow:#999 1px 1px 8px;
}
.gdactivearticle .gddictname{
background: #000000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment