aboutsummaryrefslogtreecommitdiff
path: root/vfd-backend/public/stylesheets/main.css
blob: f335da8e860548cce4b23285a9b3cd40983b20c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
@font-face {
    font-family: ds-digi;
    src: url('../fonts/ds-digi.ttf')
}

html {
    height: 100%;
}

body {
    min-height: 100%;
}

body {
    background-color: #e6e6e6;
}

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;
}

.control-table {
    border-collapse: collapse;
    background: #e5e5e5;
    border: 1px solid #969696;
    margin-right: 10px;
}

.control-table td {
    padding: 10px;
}

.status {
    font-size: 25px;
    font-family: ds-digi;
}
      
.status.error {
    color: #ff0000;
    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;
}

.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; }
}