Jelajahi Sumber

Changed stylesheet.

Tomi Cvetic 8 tahun lalu
induk
melakukan
2929b474a0
2 mengubah file dengan 66 tambahan dan 0 penghapusan
  1. 38 0
      src/css/style.css
  2. 28 0
      src/css/style.styl

+ 38 - 0
src/css/style.css

@@ -75,6 +75,26 @@ button {
   letter-spacing: inherit;
   letter-spacing: inherit;
   cursor: pointer;
   cursor: pointer;
 }
 }
+/** Appearance */
+body {
+  font-family: 'Roboto', sans-serif;
+  font-size: 24;
+}
+h1,
+h2,
+h3,
+h4,
+th {
+  font-family: 'Roboto', sans-serif;
+  font-family: 'Proza Libre', sans-serif;
+}
+code {
+  font-family: 'Source Code Pro', monospace;
+}
+p,
+input {
+  font-family: 'Roboto', sans-serif;
+}
 /** Main layout (Flexbox-Design) */
 /** Main layout (Flexbox-Design) */
 .app-wrapper {
 .app-wrapper {
   display: -webkit-box;
   display: -webkit-box;
@@ -200,3 +220,21 @@ form textbox,
 form select {
 form select {
   border: 1px solid #cc8a8a;
   border: 1px solid #cc8a8a;
 }
 }
+/** Tables */
+table,
+tbody,
+thead {
+  border-collapse: collapse;
+}
+table tr,
+tbody tr,
+thead tr,
+table th,
+tbody th,
+thead th,
+table td,
+tbody td,
+thead td {
+  border-collapse: collapse;
+  border: 1px solid #dcdef2;
+}

+ 28 - 0
src/css/style.styl

@@ -1,5 +1,26 @@
 @import './foundation.styl'
 @import './foundation.styl'
 
 
+/** Appearance */
+//@import url('https://fonts.googleapis.com/css?family=Mukta+Vaani')
+//@import url('https://fonts.googleapis.com/css?family=Proza+Libre')
+//@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro')
+//@import url('https://fonts.googleapis.com/css?family=Alegreya+Sans')
+//@import url('https://fonts.googleapis.com/css?family=Roboto')
+
+body
+  //font-family 'Mukta Vaani', sans-serif
+  //font-family 'Alegreya Sans', sans-serif; 
+  font-family 'Roboto', sans-serif
+  font-size 24
+h1, h2, h3, h4, th
+  font-family 'Roboto', sans-serif
+  font-family 'Proza Libre', sans-serif
+code
+  font-family 'Source Code Pro', monospace
+p, input
+  //font-family: 'Alegreya Sans', sans-serif;
+  font-family 'Roboto', sans-serif
+
 /** Main layout (Flexbox-Design) */
 /** Main layout (Flexbox-Design) */
 .app-wrapper
 .app-wrapper
   display flex
   display flex
@@ -71,3 +92,10 @@ form
     border-bottom 3px solid #CC8A8A
     border-bottom 3px solid #CC8A8A
   input, textbox, select
   input, textbox, select
     border 1px solid #CC8A8A
     border 1px solid #CC8A8A
+
+/** Tables */
+table, tbody, thead
+  border-collapse collapse
+  tr, th, td
+    border-collapse collapse
+    border 1px solid #DCDEF2