forked from fediversity/fediversity
Compare commits
17 commits
b409fd7719
...
bb9eef9078
Author | SHA1 | Date | |
---|---|---|---|
bb9eef9078 | |||
1164518a48 | |||
f50ee049f2 | |||
e872b3fde0 | |||
42a0a798e7 | |||
98b3947a8e | |||
7c5259181f | |||
782bbc4d8e | |||
2a8ae9d320 | |||
5355e57378 | |||
76ff180ca7 | |||
ae08673c1b | |||
e86712beec | |||
cc5101063b | |||
6bc3016585 | |||
fcbbce0405 | |||
1411136f75 |
2 changed files with 25 additions and 0 deletions
|
@ -3,3 +3,24 @@ body
|
|||
margin: 0
|
||||
font-family: sans-serif
|
||||
box-sizing: border-box
|
||||
|
||||
.loader
|
||||
width: 48px
|
||||
height: 48px
|
||||
border: 5px solid #000
|
||||
border-bottom-color: #FF3D00
|
||||
border-radius: 50%
|
||||
display: inline-block
|
||||
box-sizing: border-box
|
||||
animation: rotation 1s linear infinite
|
||||
|
||||
@keyframes rotation
|
||||
0% { transform: rotate(0deg) }
|
||||
100% { transform: rotate(360deg) }
|
||||
|
||||
#spinner-container
|
||||
position: absolute
|
||||
top: 50%
|
||||
left: 50%
|
||||
transform: translate(-50%, -50%)
|
||||
display: block
|
||||
|
|
|
@ -7,5 +7,9 @@
|
|||
|
||||
<button class="button" type="submit" name="deploy">Deploy</button>
|
||||
<button class="button" type="submit" name="save">Save</button>
|
||||
|
||||
<div id="spinner-container">
|
||||
<span class="loader"></span>
|
||||
</div>
|
||||
</form>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Add table
Reference in a new issue