aboutsummaryrefslogtreecommitdiff
path: root/legacy/web/app.css
diff options
context:
space:
mode:
Diffstat (limited to 'legacy/web/app.css')
-rw-r--r--legacy/web/app.css62
1 files changed, 62 insertions, 0 deletions
diff --git a/legacy/web/app.css b/legacy/web/app.css
new file mode 100644
index 00000000..f9f28bb9
--- /dev/null
+++ b/legacy/web/app.css
@@ -0,0 +1,62 @@
+.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);
+}
+
+.view-item-disabled {
+ opacity: 0.5;
+}
+
+.toolbar-header-style {
+ background-color: #5fa2dd !important;
+}
+
+body.x-border-layout-ct, div.x-border-layout-ct {
+ background-color: #bbbbbb !important;
+}
+
+.x-fieldset {
+ overflow: visible !important; /* workaround for Safari issue */
+}
+
+#update {
+ position: absolute;
+ width: 100%;
+ top: 20px;
+ font-weight: bold;
+ text-align: center;
+}
+
+#attribution {
+ position: absolute;
+ bottom: 10px;
+ right: 15px;
+ font-size: x-small;
+}
+
+#spinner:before {
+ content: '';
+ box-sizing: border-box;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ width: 60px;
+ height: 60px;
+ margin-top: -30px;
+ margin-left: -30px;
+ border-radius: 50%;
+ border-top: 6px solid #5fa2dd;
+ border-right: 6px solid transparent;
+ animation: spinner .6s linear infinite;
+}
+
+@keyframes spinner {
+ to {
+ transform: rotate(360deg);
+ }
+}