aboutsummaryrefslogtreecommitdiff
path: root/web/app.css
diff options
context:
space:
mode:
authorduke2906 <philipp.prangenberg@gmail.com>2016-09-26 15:09:20 +0200
committerGitHub <noreply@github.com>2016-09-26 15:09:20 +0200
commit960bf899414d89221e92138fdb98777c3f4f73ec (patch)
tree87f5fd96185aa5f2fff0f84e2e2fa8be379ee837 /web/app.css
parent0d3c05a24992eeeba02032e474d3a9bbb3239f10 (diff)
parentaaec58aec04256845dc37afd713b488071b1406b (diff)
downloadtraccar-server-960bf899414d89221e92138fdb98777c3f4f73ec.tar.gz
traccar-server-960bf899414d89221e92138fdb98777c3f4f73ec.tar.bz2
traccar-server-960bf899414d89221e92138fdb98777c3f4f73ec.zip
Merge pull request #1 from tananaev/master
Update Changes, including version 3.7
Diffstat (limited to 'web/app.css')
-rw-r--r--web/app.css69
1 files changed, 0 insertions, 69 deletions
diff --git a/web/app.css b/web/app.css
deleted file mode 100644
index 95417606c..000000000
--- a/web/app.css
+++ /dev/null
@@ -1,69 +0,0 @@
-.view-color-green {
- background-color: rgba(77, 250, 144, 0.3);
-}
-.view-color-yellow {
- background-color: rgba(250, 190, 77, 0.3);
-}
-.view-color-red {
- background-color: rgba(255, 84, 104, 0.3);
-}
-
-.x-tree-icon {
- display: none !important;
-}
-
-.state-indicator {
- position: absolute;
- top: -999em;
- left: -999em;
- z-index: 0;
-}
-
-@media all and (max-device-width: 768px) {
- .state-indicator {
- z-index: 1;
- }
-}
-
-#attribution {
- position: absolute;
- bottom: 10px;
- right: 15px;
- font-size: x-small;
-}
-
-#spinner {
- position: absolute;
- top: 50%;
- left: 50%;
- height: 60px;
- width: 60px;
- margin-top: -30px;
- margin-left: -30px;
- -webkit-animation: rotation .8s infinite linear;
- -moz-animation: rotation .8s infinite linear;
- -o-animation: rotation .8s infinite linear;
- animation: rotation .8s infinite linear;
- border-left: 6px solid rgba(56, 146, 212, .15);
- border-right: 6px solid rgba(56, 146, 212, .15);
- border-bottom: 6px solid rgba(56, 146, 212, .15);
- border-top: 6px solid rgba(56, 146, 212, .8);
- border-radius: 100%;
-}
-
-@-webkit-keyframes rotation {
- from { -webkit-transform: rotate(0deg); }
- to { -webkit-transform: rotate(359deg); }
-}
-@-moz-keyframes rotation {
- from { -moz-transform: rotate(0deg); }
- to { -moz-transform: rotate(359deg); }
-}
-@-o-keyframes rotation {
- from { -o-transform: rotate(0deg); }
- to { -o-transform: rotate(359deg); }
-}
-@keyframes rotation {
- from { transform: rotate(0deg); }
- to { transform: rotate(359deg); }
-}