diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2010-12-21 08:27:33 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2010-12-21 08:27:33 +0100 |
commit | 9fe6789f2a2113bd696ae5c78bccd9ed26e37ea7 (patch) | |
tree | 11cea2953f250b59f6e6bd704b60f91db30a301c | |
parent | aac1b0430d45a3b929da779e1675fe6bd0b625c7 (diff) |
Left-justify text, do not use 'text-align: justify'.
-rw-r--r-- | default.css | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/default.css b/default.css index 156113b..59c7422 100644 --- a/default.css +++ b/default.css @@ -9,12 +9,14 @@ Feel free to use and modify but please provide credits. #############################################################*/
/* standard elements */
-* {
- font: normal 1em "Lucida Sans Unicode",sans-serif;
- margin: 0; padding: 0;
+*
+{
+ font: normal 1em "Lucida Sans Unicode",sans-serif;
+ margin: 0; padding: 0;
}
-a {
- color: #362;
+a
+{
+ color: #362;
}
a:hover, .footer a:hover
{
@@ -33,7 +35,7 @@ p,cite,code,ul font-size: 0.8em;
margin-bottom: 1.7em;
line-height: 1.7em;
- text-align: justify;
+ text-align: left;
}
i
{
@@ -218,13 +220,14 @@ p.incitement /* footer */
.footer
{
- color: #886;
- font-size: 0.65em;
- padding-left: 4em;
- padding-right: 4em;
- padding-bottom: 12px;
- text-align: center;
+ color: #886;
+ font-size: 0.65em;
+ padding-left: 4em;
+ padding-right: 4em;
+ padding-bottom: 12px;
+ text-align: center;
}
-.footer a {
- color: #664;
+.footer a
+{
+ color: #664;
}
|