aboutsummaryrefslogtreecommitdiff
path: root/backend/public/stylesheets/main.css
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2014-09-30 08:57:29 +0200
committerJakob Odersky <jodersky@gmail.com>2014-09-30 08:57:29 +0200
commit8ec08695eade13b053caa6bd103065a056cdf179 (patch)
tree9ce23ab688b4a469ecf40d4b1c31a848ed7dca64 /backend/public/stylesheets/main.css
downloadmavigator-8ec08695eade13b053caa6bd103065a056cdf179.tar.gz
mavigator-8ec08695eade13b053caa6bd103065a056cdf179.tar.bz2
mavigator-8ec08695eade13b053caa6bd103065a056cdf179.zip
initial commit
Diffstat (limited to 'backend/public/stylesheets/main.css')
-rw-r--r--backend/public/stylesheets/main.css66
1 files changed, 66 insertions, 0 deletions
diff --git a/backend/public/stylesheets/main.css b/backend/public/stylesheets/main.css
new file mode 100644
index 0000000..24fb7bc
--- /dev/null
+++ b/backend/public/stylesheets/main.css
@@ -0,0 +1,66 @@
+@font-face {
+ font-family: ds-digi;
+ src: url('../fonts/ds-digi.ttf')
+}
+
+nav.side {
+ position: absolute;
+ left: 0;
+ width: 15%;
+ height: 100%;
+ background: #FFFFCC;
+ border: 1px solid #969696;
+ box-sizing: border-box;
+ -moz-box-sizing:border-box;
+}
+
+.status-table {
+ border-collapse: collapse;
+ background: #e5e5e5;
+ border: 1px solid #969696;
+ margin-right: 10px;
+}
+
+.status-table td {
+ padding: 10px;
+}
+
+
+.status {
+ font-size: 25px;
+ font-family: ds-digi;
+}
+
+.status.error {
+ color: #ff0000;
+}
+
+.status.critical {
+ animation-name: blinker;
+ animation-duration: 1s;
+ animation-timing-function: linear;
+ animation-iteration-count: infinite;
+
+ -webkit-animation-name: blinker;
+ -webkit-animation-duration: 1s;
+ -webkit-animation-timing-function: linear;
+ -webkit-animation-iteration-count: infinite;
+}
+
+@-moz-keyframes blinker { /* Decimal not necessary, 0 and 1 is enough */
+ 0% { opacity: 1.0; }
+ 50% { opacity: 0.0; }
+ 100% { opacity: 1.0; }
+}
+
+@-webkit-keyframes blinker {
+ 0% { opacity: 1.0; }
+ 50% { opacity: 0.0; }
+ 100% { opacity: 1.0; }
+}
+
+@keyframes blinker {
+ 0% { opacity: 1.0; }
+ 50% { opacity: 0.0; }
+ 100% { opacity: 1.0; }
+} \ No newline at end of file