diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-12-07 05:08:54 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-12-07 05:08:54 +0100 |
| commit | 15c7a862bcf83aad0a369c84a0cb9cc323b64c47 (patch) | |
| tree | a4f4bb97b89d81a597f444d23ed64b4c91dd81b2 /static/css/index.css | |
| parent | 4fb46cd35fcd929136ae44e4f31f489c361b5282 (diff) | |
| download | cacharle.xyz-15c7a862bcf83aad0a369c84a0cb9cc323b64c47.tar.gz cacharle.xyz-15c7a862bcf83aad0a369c84a0cb9cc323b64c47.tar.bz2 cacharle.xyz-15c7a862bcf83aad0a369c84a0cb9cc323b64c47.zip | |
Updated topbar, Added links icons, Added big title
Diffstat (limited to 'static/css/index.css')
| -rw-r--r-- | static/css/index.css | 38 |
1 files changed, 38 insertions, 0 deletions
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); +} |
