Various fixes.
[wolnelektury.git] / src / wolnelektury / static / scss / main / base.scss
old mode 100755 (executable)
new mode 100644 (file)
index 270d227..20b0a35
@@ -14,11 +14,11 @@ html, body {
 
 /* Basic colors and fonts */
 body {
-  font-family: Georgia, serif;
+  font-family: Gelasio, Georgia, serif;
   background: #f7f7f7;
   color: black;
 
-  @include size(font-size, 13px);
+  @include size(font-size, 15px);
 }
 
 a {
@@ -32,6 +32,7 @@ a {
 
 h1 {
   @include size(font-size, 35px);
+  line-height: 1.1em;
   font-weight: normal;
   @include size(margin-top, 14px);
 
@@ -41,12 +42,13 @@ h1 {
 }
 
 h2 {
-  @include size(font-size, 20px);
+  @include size(font-size, 23px);
+  line-height: 1.1em;
   font-weight: normal;
 }
 
 h3 {
-  @include size(font-size, 15px);
+  @include size(font-size, 17px);
   font-weight: normal;
 }
 
@@ -83,15 +85,21 @@ ul.plain {
 
 .left-column, .right-column {
   @include size(max-width, 600px);
+  @include size(padding-left, 1em);
+  @include size(padding-right, 1em);
 }
 
 @media screen and (min-width: 62.5em) {
-  .left-column {
+  .left-column, .right-column {
     @include size(width, 470px);
+    padding-left: 0;
+    padding-right: 0;
+  }
+
+  .left-column {
     float: left;
   }
   .right-column {
-    @include size(width, 470px);
     float: right;
   }
 }
@@ -214,3 +222,19 @@ ul.plain {
     @include size(margin-bottom, 10px);
   }
 }
+
+@media screen and (max-width: 62.5em) {
+  .mobile-margins {margin-left: 1em; margin-right: 1em;}
+}
+
+
+table.table {
+    margin: auto;
+    border-collapse: collapse;
+    
+    td, th {
+        border: 1px solid #444;
+        padding: .5em;
+        text-align: center;
+    }
+}