diff options
Diffstat (limited to 'assets/css/style.css')
-rw-r--r-- | assets/css/style.css | 44 |
1 files changed, 42 insertions, 2 deletions
diff --git a/assets/css/style.css b/assets/css/style.css index df7d32b..d71c2a8 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -5,6 +5,16 @@ & Marco Alexander Fischer ######################### */ +@font-face { + font-family: Ubuntu-Regular; + src: url('../fonts/ubuntu/Ubuntu-Regular.ttf'); +} + +@font-face { + font-family: Ubuntu-Bold; + src: url('../fonts/ubuntu/Ubuntu-Bold.ttf'); +} + html, body { height: 100%; } @@ -39,17 +49,38 @@ body { } .loginform-box { + opacity: 0; text-align: center; background: white; width: 300px; height: 300px; border-radius: 20px; padding: 10px; - border: gray 4px solid; + animation-name: fade-in-custom; + animation-delay: 2s; + animation-duration: 1s; + animation-fill-mode: forwards; + color: dimgray; +} + +.input { + width: 70%; + height: 50px; + background: transparent; + padding: auto; + font-family: Ubuntu-Bold; + float: right; +} + +.lnr { + font-size: 60px; } .graytext { color: #282828; + font-family: Ubuntu-Bold; + text-transform: uppercase; + font-size: 18px; } @keyframes middle-to-top { @@ -57,7 +88,7 @@ body { margin-top: 50vh; } to { - margin-top: 20px; + margin-top: 5vh; } } @@ -70,3 +101,12 @@ body { from, to { border-color: transparent } 50% { border-color: white; } } + +@keyframes fade-in-custom { + from { + opacity: 0; + } + to { + opacity: 100; + } +}
\ No newline at end of file |