diff options
Diffstat (limited to 'assets/css/style.css')
-rw-r--r-- | assets/css/style.css | 39 |
1 files changed, 35 insertions, 4 deletions
diff --git a/assets/css/style.css b/assets/css/style.css index ee0e8c5..27485c5 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -10,11 +10,27 @@ * { text-align: center; background-color: #282828; - font-family: Comfortaa; + font-family: Comfortaa, serif; } -body { - margin-top: 10rem; +html, body { + min-height: 100vh; + width: 100vw; + overflow: hidden; +} + +.ContentWrapper { + display: flex; + min-height: 100vh; + width: 100vw; + flex-direction: column; + flex-wrap: wrap; + justify-content: center; + align-items: center; +} + +.slide { + color: white; } .Main-Content { @@ -25,6 +41,21 @@ body { font-size: 35px; } +.ScrollDown { + position: relative; + cursor: pointer; + font-size: xx-large; + left: 50%; + bottom: 20px; + transform: translate(-50%, -50%); + margin: 0 auto; +} + +.AboutBox { + padding: 5px; + margin: 5px; +} + a:visited { color: white; } @@ -36,5 +67,5 @@ a { } a:hover { - color: #1457c6; + color: #3E4DF0; }
\ No newline at end of file |