summaryrefslogtreecommitdiff
path: root/media/css/scanner.css
blob: c30f85019914bf79ee01602b97fe8061774f5998 (plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
body {
    padding-top: 60px;
    padding-bottom: 60px;
}

dl.found_list dt {
    background-color: lightgray;
    padding: 3px;
    padding-left: 5px;
    border-radius: 3px;
}

dl.found_list dd {
    margin-bottom: 3px;
    padding: 3px;
}

dl.found_list dd.found_dyn_warn {
    background-color: darkred;
    color: white;
}

dl.found_list dd ul {
    padding-left: 15px;
    margin-bottom: 0;
}

dl.found_list dd textarea {
    width: 100%;
    height: 7em;
}

#completed_div {
    display: none;
}

table#statsTable tbody tr th {
    background-color: lightgray;
}

video#qrpreview {
    border: 1px solid black;
    width: 200px;
    height: 200px;
    display: block;
    margin: 0 auto;
}

button.cancelButton {
    margin-top: 20px;
}

div.buttonrow {
    margin-bottom: 10px;
}


/*
 * Loading spinner
 */
div#loading {
    float: right;
}

.spinner-ring {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
}

.spinner-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 42px;
    height: 42px;
    margin: 6px;
    border: 6px solid #000;
    border-radius: 50%;
    animation: spinner-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #000 transparent transparent transparent;
}

.spinner-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.spinner-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes spinner-ring {
    0% {
	transform: rotate(0deg);
    }
    100% {
	transform: rotate(360deg);
    }
}