Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Roberto José TORO OLMEDO
BrainBox
Commits
3f3f5069
Unverified
Commit
3f3f5069
authored
Nov 24, 2019
by
katja heuer
Committed by
GitHub
Nov 24, 2019
Browse files
Delete loading-style.css
parent
6990b838
Changes
1
Hide whitespace changes
Inline
Side-by-side
view/atlasMaker/src/css/loading-style.css
deleted
100644 → 0
View file @
6990b838
/* Loading indicator */
@-webkit-keyframes
loading
{
0
%
{
left
:
40%
;}
50
%
{
left
:
60%
;}
100
%
{
left
:
40%
;}
}
#loadingIndicator
{
display
:
none
;
position
:
absolute
;
left
:
0
;
top
:
0
;
width
:
100%
;
height
:
100%
;
background
:
rgba
(
0
,
0
,
0
,
0.5
);
}
#loadingIndicator
.disc
{
position
:
absolute
;
left
:
50%
;
transform
:
translate
(
-50%
,
0
);
width
:
8px
;
height
:
8px
;
border-radius
:
8px
;
background
:
white
;
-webkit-animation-name
:
loading
;
-webkit-animation-duration
:
1s
;
-webkit-animation-iteration-count
:
infinite
;
-webkit-animation-timing-function
:
ease-in-out
;
animation-name
:
loading
;
animation-duration
:
1s
;
animation-iteration-count
:
infinite
;
animation-timing-function
:
ease-in-out
;
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment