diff options
author | Kim Alvefur <zash@zash.se> | 2012-07-02 13:25:20 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-07-14 10:36:25 (GMT) |
commit | 075c1f08245055e0060df2695e75bba54e697d36 (patch) | |
tree | f312853e9f5faaa00023a5ba8fb66c127fd47bb6 | |
parent | d0171b0d632893e5574c8f7de2f7582efe18d65b (diff) | |
download | swift-075c1f08245055e0060df2695e75bba54e697d36.zip swift-075c1f08245055e0060df2695e75bba54e697d36.tar.bz2 |
Move list of fonts to a single place, add generic fallback.
License: This patch is BSD-licensed, see Documentation/Licenses/BSD-simplified.txt for details.
-rwxr-xr-x | Swift/resources/themes/Default/main.css | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Swift/resources/themes/Default/main.css b/Swift/resources/themes/Default/main.css index 4982ba6..345c981 100755 --- a/Swift/resources/themes/Default/main.css +++ b/Swift/resources/themes/Default/main.css @@ -12,7 +12,6 @@ padding: 10px; overflow: auto; color: white; - font-family: Lucida Grande; text-align: center; font-size: 10px; font-weight: regular; @@ -51,7 +50,8 @@ position:relative; left:60px; margin:5px 0 0 0; - font: bold 16px Myriad Pro, Myriad, Lucida Grande, Trebuchet MS, Arial; + font-weight: bold; + font-size: 16px; overflow:hide; } @@ -59,7 +59,8 @@ position:relative; left:60px; color:#6d6d6d; - font: bold 10px Myriad Pro, Myriad, Lucida Grande, Trebuchet MS, Arial; + font-weight: bold; + font-size: 10px; } body { @@ -69,11 +70,13 @@ body { } .status_container { - font: 10px Myriad, Lucida Grande, Arial; + font-weight: bold; + font-size: 10px; } body { + font-family: "Myriad Pro", Myriad, "Lucida Grande", "Trebuchet MS", Arial, "Droid Sans", sans-serif; } .followUp { |