aboutsummaryrefslogtreecommitdiff
path: root/vfd-main/public/stylesheets/main.css
blob: e92cd24c4e40f05890cc37e2698021831f7b8b58 (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
@font-face {
    font-family: ds-digi;
    src: url('../fonts/ds-digi.ttf')
}

html {
    height: 100%;
}

body {
    height: 100%;
}

body {
    background-color: #e6e6e6;
}

.loader {
	width: 100%;
	font-size: 50px;
	text-align: center;
}

.table-instrument {
	table-layout: fixed;
	width: 100%;
}

.table-instrument td {
	width: 100%;
}

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

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    7% {
        transform: scale(1.3);
    }
    14% {
        transform: scale(1);
    }
    21% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
}