From 15c7a862bcf83aad0a369c84a0cb9cc323b64c47 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 7 Dec 2020 05:08:54 +0100 Subject: Updated topbar, Added links icons, Added big title --- static/css/index.css | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 static/css/index.css (limited to 'static/css/index.css') diff --git a/static/css/index.css b/static/css/index.css new file mode 100644 index 0000000..607e8b5 --- /dev/null +++ b/static/css/index.css @@ -0,0 +1,38 @@ +@font-face { + font-family: Montserrat, sans-serif; + font-weight: 100; + src: url(../font/Montserrat/Montserrat-ExtraLight.ttf); +} + +#site-title { + font-family: Montserrat; + font-size: 17vw; + font-weight: 100; + width: 100%; + margin: 0px auto; + text-align: center; + text-transform: uppercase; +} + +@media screen and (min-width: 1200px) { + #site-title { + font-size: 10rem; + } +} + +.links { + display: flex; + justify-content: space-between; + max-width: 320px; + margin: 10px auto 40px auto; +} + +.links a.links-item { + display: block; +} + +.links a.links-item img { + height: 30px; + width: 30px; + filter: grayscale(1) invert(1); +} -- cgit