]> git.parisson.com Git - diggersdigest.git/commitdiff
add Gill Sans font
authorGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Tue, 29 Sep 2015 21:47:07 +0000 (23:47 +0200)
committerGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Tue, 29 Sep 2015 21:47:07 +0000 (23:47 +0200)
.gitignore
app/records/static/css/dig2.css
app/records/static/font/GillSans.ttf [new file with mode: 0644]

index a9f18977ad057f3e822c05921c6139b7dd2db8bf..c79d5b8e7418e06d1b75250b65134aae2ceb8687 100644 (file)
@@ -26,6 +26,6 @@ pip-log.txt
 #*.mo
 
 #Volume Directory for docker-compose
-mysql/
-static/
-media/
+/mysql/
+/static/
+/media/
index cb16398e28f976891f4c7c6b9bce986a25fd7f60..37ee4f3dee0e565222c0cc29b5fdb2dcecf207c9 100644 (file)
@@ -1,3 +1,8 @@
+@font-face {
+  font-family: 'Gill Sans';
+  src: url('/static/font/GillSans.ttf');
+}
+
 .container{
    background:url("../img/dotted_background.png"
    ) repeat;
 body {
     padding-top: 172px;
     background-color: white;
-    font-family: 'Open Sans', sans-serif;
+    font-family: 'Gill Sans', sans-serif;
+    font-size: 130%;
+}
+
+h1 {
+    font-size: 250%;
+
 }
 
 hr {
diff --git a/app/records/static/font/GillSans.ttf b/app/records/static/font/GillSans.ttf
new file mode 100644 (file)
index 0000000..51165cb
Binary files /dev/null and b/app/records/static/font/GillSans.ttf differ