Adds a loading circle to the main page

This commit is contained in:
Scott
2017-02-07 21:57:17 +11:00
parent 76107660a9
commit 377762487c
4 changed files with 108 additions and 46 deletions

View File

@@ -1,30 +1,45 @@
/* app css stylesheet */
.menu {
list-style: none;
border-bottom: 0.1em solid black;
margin-bottom: 2em;
padding: 0 0 0.5em;
list-style: none;
border-bottom: 0.1em solid black;
margin-bottom: 2em;
padding: 0 0 0.5em;
}
.menu:before {
content: "[";
content: "[";
}
.menu:after {
content: "]";
content: "]";
}
.menu > li {
display: inline;
.menu>li {
display: inline;
}
.menu > li:before {
content: "|";
padding-right: 0.3em;
.menu>li:before {
content: "|";
padding-right: 0.3em;
}
.menu > li:nth-child(1):before {
content: "";
padding: 0;
.menu>li:nth-child(1):before {
content: "";
padding: 0;
}
.animate-show-hide.ng-hide {
opacity: 0;
}
.animate-show-hide.ng-hide-add,
.animate-show-hide.ng-hide-remove {
transition: all linear 0.5s;
}
.check-element {
border: 1px solid black;
opacity: 1;
padding: 10px;
}