mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-13 15:09:42 +00:00
45 lines
617 B
CSS
45 lines
617 B
CSS
/* app css stylesheet */
|
|
|
|
.menu {
|
|
list-style: none;
|
|
border-bottom: 0.1em solid black;
|
|
margin-bottom: 2em;
|
|
padding: 0 0 0.5em;
|
|
}
|
|
|
|
.menu:before {
|
|
content: "[";
|
|
}
|
|
|
|
.menu:after {
|
|
content: "]";
|
|
}
|
|
|
|
.menu>li {
|
|
display: inline;
|
|
}
|
|
|
|
.menu>li:before {
|
|
content: "|";
|
|
padding-right: 0.3em;
|
|
}
|
|
|
|
.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;
|
|
} |