aboutsummaryrefslogtreecommitdiff
path: root/src/scss/components/_spinner.scss
diff options
context:
space:
mode:
authorPhil <phil.buschmann@tum.de>2018-06-09 12:16:34 +0200
committerPhil <phil.buschmann@tum.de>2018-06-09 12:16:34 +0200
commitdedf1f9f6e2f74cc1b36cbfc566d05c3a50d163b (patch)
treeec62c2a35460bd3d191e73463d6cbc6d35731ace /src/scss/components/_spinner.scss
parent4e29a546ba125186f43c6a7bd280ae7857ad4131 (diff)
downloadgnunet-webui-dedf1f9f6e2f74cc1b36cbfc566d05c3a50d163b.tar.gz
gnunet-webui-dedf1f9f6e2f74cc1b36cbfc566d05c3a50d163b.zip
Implemented GNS and fixed UI issuesfeature/services
Diffstat (limited to 'src/scss/components/_spinner.scss')
-rw-r--r--src/scss/components/_spinner.scss15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/scss/components/_spinner.scss b/src/scss/components/_spinner.scss
new file mode 100644
index 0000000..b05af1c
--- /dev/null
+++ b/src/scss/components/_spinner.scss
@@ -0,0 +1,15 @@
1.c-spinner {
2 border: 5px solid $color-grey-light; /* Light grey */
3 border-top: 5px solid $color-secondary;
4 border-radius: 50%;
5 width: 40px;
6 height: 40px;
7 animation: spin 1s linear infinite;
8 top: 1000px;
9 display: inline-block;
10}
11
12@keyframes spin {
13 0% { transform: rotate(0deg); }
14 100% { transform: rotate(360deg); }
15}