aboutsummaryrefslogtreecommitdiff
path: root/vfd-backend/public/stylesheets/main.css
blob: 295bc0340defdbb9b1bb266eb00129c8d0fdc8f5 (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
@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;
}

.heartbeat{
    color: rgba(165, 25, 25, 1);
    animation: heartbeat 1s linear;
    opacity: 0;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.3);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}