From 6c54c9d57d5fa4c52aa454ed3ca09060b0674ad3 Mon Sep 17 00:00:00 2001 From: piotrruss Date: Sat, 4 Sep 2021 11:20:34 +0200 Subject: split scss into partials --- styles/main/_splash.scss | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 styles/main/_splash.scss (limited to 'styles/main/_splash.scss') diff --git a/styles/main/_splash.scss b/styles/main/_splash.scss new file mode 100644 index 0000000..3db973f --- /dev/null +++ b/styles/main/_splash.scss @@ -0,0 +1,34 @@ +.loader, +.connection { + display: flex; + justify-content: center; + align-items: center; + height: 100%; + flex-direction: column; + + @keyframes rotating { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } + } + + svg { + font-size: 600%; + color: #ccc; + } + + p { + padding-top: 1em; + color: #ccc; + font-weight: 600; + } +} + +.loader { + svg { + animation: rotating 1s linear infinite; + } +} -- cgit v1.2.3