Skip to content

Commit

Permalink
Tweaked the DSA radial gradient.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Prest committed Oct 15, 2013
1 parent 82f0358 commit fb3e97b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions kb.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,12 @@ html, body {
font-family: 'engravers_gothic_fsregular'; /* substitute for Gorton Modified */
border-radius: 8px;
margin-top: 3px;
background: -moz-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.15)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%,rgba(0,0,0,0.15) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%,rgba(0,0,0,0.15) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%,rgba(0,0,0,0.15) 100%);
background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%,rgba(0,0,0,0.15) 100%);
background: -moz-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%, rgba(46,46,46,0.1) 90%, rgba(51,51,51,0.1) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0)), color-stop(90%,rgba(46,46,46,0.1)), color-stop(100%,rgba(51,51,51,0.1)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%,rgba(46,46,46,0.1) 90%,rgba(51,51,51,0.1) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%,rgba(46,46,46,0.1) 90%,rgba(51,51,51,0.1) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(0,0,0,0) 0%,rgba(46,46,46,0.1) 90%,rgba(51,51,51,0.1) 100%);
background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%,rgba(46,46,46,0.1) 90%,rgba(51,51,51,0.1) 100%);
}
.DSA .keyfg .keylabels.textsize1 { font-size: 10px; }
.DSA .keyfg .keylabels.textsize2 { font-size: 12px; }
Expand Down

0 comments on commit fb3e97b

Please sign in to comment.