aboutsummaryrefslogblamecommitdiff
path: root/vfd-backend/public/stylesheets/main.css
blob: f335da8e860548cce4b23285a9b3cd40983b20c6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13




                                    







                     



                              










                               
                





                              
                   


                  






                         








                                                






























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