summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorSuleyman Farajli <suleyman@farajli.net>2024-12-16 23:56:10 +0400
committerSuleyman Farajli <suleyman@farajli.net>2024-12-16 23:56:10 +0400
commitfe492db9791941524667468d5c81b44b42738d88 (patch)
treea8f82c1c3c63c6a8a6f5c0422725498f3b503835 /style.css
parente306fc3e2ee68d4735dcb063aac16d50b1b4bdf4 (diff)
style.css: width made constant and quote style added
Diffstat (limited to 'style.css')
-rw-r--r--style.css13
1 files changed, 12 insertions, 1 deletions
diff --git a/style.css b/style.css
index 2cde8a8..e65a88c 100644
--- a/style.css
+++ b/style.css
@@ -2,7 +2,7 @@
body {
font: 15px monospace;
- width: 60em;
+ width: 60em; /* make width window size independent */
display:block;
padding-top: 4em;
margin: auto;
@@ -105,7 +105,18 @@ table {
*/
#header-link, #header-link:hover {
+ text-align: left;
font-size: 2.0em;
color: white;
font-weight: normal;
}
+#quote {
+ font-size: 1.3em;
+ text-align: right;
+ color: #C0C0C0;
+ font-weight: 530;
+}
+#bar{
+ width: 100%;
+ line-height: 35px;
+}