ソースを参照

Added some base styles.

Jake Peek 4 年 前
コミット
7120a06aab
共有1 個のファイルを変更した19 個の追加0 個の削除を含む
  1. 19 0
      public/css/style.css

+ 19 - 0
public/css/style.css

@@ -1,4 +1,23 @@
1
+@font-face {
2
+	font-family: Montserrat;
3
+	src: url("/fonts/Montserrat-ExtraLight.otf");
4
+	font-weight: normal;
5
+}
6
+@font-face {
7
+	font-family: Montserrat;
8
+	src: url("/fonts/Montserrat-Regular.otf");
9
+	font-weight: bold;
10
+}
11
+
1 12
 * {
2 13
 	box-sizing: border-box;
3 14
 	position: relative;
15
+}
16
+
17
+body {
18
+	font-family: Montserrat;
19
+}
20
+
21
+h1,h2,h3,h4,h5 {
22
+	font-weight: bold;
4 23
 }