[extensions-web] css: Normalize some issues in CSS files
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [extensions-web] css: Normalize some issues in CSS files
- Date: Wed, 26 Sep 2012 06:20:45 +0000 (UTC)
commit 8facf6ccc7292205e4f84ea258a9b1c0f7c6117a
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Wed Sep 26 03:14:34 2012 -0300
css: Normalize some issues in CSS files
Import URLs should be quoted
sweettooth/static/css/fonts.css | 4 ++--
sweettooth/static/css/text.css | 11 ++++++-----
2 files changed, 8 insertions(+), 7 deletions(-)
---
diff --git a/sweettooth/static/css/fonts.css b/sweettooth/static/css/fonts.css
index badc0e7..661bfbb 100644
--- a/sweettooth/static/css/fonts.css
+++ b/sweettooth/static/css/fonts.css
@@ -1,3 +1,3 @@
- import url(https://fonts.googleapis.com/css?family=Copse);
- import url(https://fonts.googleapis.com/css?family=Cantarell:400,400italic,700,700italic);
+ import url("https://fonts.googleapis.com/css?family=Copse");
+ import url("https://fonts.googleapis.com/css?family=Cantarell:400,400italic,700,700italic");
diff --git a/sweettooth/static/css/text.css b/sweettooth/static/css/text.css
index 1703bca..199859c 100644
--- a/sweettooth/static/css/text.css
+++ b/sweettooth/static/css/text.css
@@ -1,9 +1,10 @@
- import url(fonts.css);
+
+ import url("fonts.css");
+
/* Main Elements */
/* ========================================================================== */
-
body {
font-family: Cantarell, 'Droid Sans', Ubuntu, 'DejaVu Sans', Arial, sans-serif;
font-size: 14px;
@@ -11,7 +12,7 @@ body {
color: #2e3436;
}
h1, h2, h3, h4, h5, h6, dt {
- color: #0489B7;
+ color: #0489b7;
}
h1 {
font-size: 42px;
@@ -22,10 +23,10 @@ h2 {
h3, dt {
font-size: 21px;
margin: 0.4em 0 0.5em;
- color: #2E3436;
+ color: #2e3436;
}
dt {
- color: #E36615;
+ color: #e36615;
}
dt a:hover {
color: #fa7721;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]