From 2946e55c0d76049068b4de6e45557b0b22792018 Mon Sep 17 00:00:00 2001 From: Marco Alexander Fischer Date: Sat, 8 Sep 2018 12:16:34 +0200 Subject: Added some text! :memo: :speech_balloon: :beers: --- assets/css/style.css | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) (limited to 'assets/css/style.css') diff --git a/assets/css/style.css b/assets/css/style.css index e69de29..07391ac 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -0,0 +1,40 @@ +/* ######################## + Texx-Web + Texx + by Marvin Borner + & Marco Alexander Fischer +######################### */ + +html, body { + height: 100%; +} + +body { + background-color: #282828; + display: flex; + align-items: center; + justify-content: center; +} + +.typewriter h1 { + font-family: 'Mukta', sans-serif; + color: white; + overflow: hidden; + border-right: .15em solid white; + white-space: nowrap; + margin: 0 auto; + letter-spacing: .15em; + animation: + typing 3.5s steps(40, end), + blink-caret .75s step-end infinite; +} + +@keyframes typing { + from { width: 0 } + to { width: 100% } +} + +@keyframes blink-caret { + from, to { border-color: transparent } + 50% { border-color: white; } +} \ No newline at end of file -- cgit v1.2.3