diff options
author | Martin Gummi <martin.gummi@gmx.net> | 2013-09-10 23:29:29 +0200 |
---|---|---|
committer | Martin Gummi <martin.gummi@gmx.net> | 2013-09-10 23:29:29 +0200 |
commit | b961b02e17e4da0a83053198a8c9d8f259f6a084 (patch) | |
tree | f9dfb62959d1873c56d042cf2c97dee8a6e2c68f /www | |
parent | a5eacb26a1276b7fd7dea62e15a3638621c342db (diff) | |
download | cacert-devel-b961b02e17e4da0a83053198a8c9d8f259f6a084.tar.gz cacert-devel-b961b02e17e4da0a83053198a8c9d8f259f6a084.tar.xz cacert-devel-b961b02e17e4da0a83053198a8c9d8f259f6a084.zip |
bug-1208: add CSS accountdetail
Diffstat (limited to 'www')
-rw-r--r-- | www/styles/default.css | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/www/styles/default.css b/www/styles/default.css index f2b3c95..f5416f2 100644 --- a/www/styles/default.css +++ b/www/styles/default.css @@ -653,3 +653,40 @@ div.footerbar { .robotic { display: none; } +/************ unicode fallbacks ***********/ + +/* Some embedding of font */ +@font-face { + font-family: 'Source Code Pro'; + src: local('Source Code Pro'); + src: url(/res/fonts/SourceCodePro-Medium.ttf); +} + +.accountdetail { + font-family: 'Source Code Pro','Lucida Console','Arial Unicode MS',monospace,'Last Resort'; + font-size: 1.1em; +} + +.accountdetail.fname{ + color:#600; font-style: italic; font-weight: bold; + background-color: #ffeeee; + background-color: rgba(102, 0, 0, 0.05); +} + +.accountdetail.mname{ + color:#060; font-style:italic; + background-color: #f0fff0; + background-color: rgba(0, 102, 0, 0.05); +} + +.accountdetail.lname{ + color:#006; font-weight:bold; + background-color: #f0fef0; + background-color: rgba(0, 0, 102, 0.05); + } + +.accountdetail.suffix, .suffix{ + color:#660; + background-color: #ffffdd; + background-color: rgba(102, 102, 0, 0.05); +} |