-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.css
107 lines (90 loc) · 2.06 KB
/
admin.css
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
105
106
107
body {
display: flex;
justify-content: center;
margin: 0;
padding: 0;
height: 100vh;
box-sizing: border-box;
text-align: center;
background: #edf2f4;
}
.container {
width: 100%;
max-width: 500px;
margin: 5px;
}
.container h1 {
color: #ffffff;
}
.section {
background-color: #ffffff;
padding: 50px 30px;
border: 1.5px solid #b2b2b2;
border-radius: 0.25em;
box-shadow: 0 20px 25px rgba(0, 0, 0, 0.25);
}
#my-qr-reader {
padding: 20px !important;
border: 1.5px solid #b2b2b2 !important;
border-radius: 8px;
}
#my-qr-reader img[alt="Info icon"] {
display: none;
}
#my-qr-reader img[alt="Camera based scan"] {
width: 100px !important;
height: 100px !important;
}
button {
padding: 10px 20px;
border: 1px solid #b2b2b2;
outline: none;
border-radius: 0.25em;
color: white;
font-size: 15px;
cursor: pointer;
margin-top: 15px;
margin-bottom: 10px;
background-color: #008000ad;
transition: 0.3s background-color;
}
button:hover {
background-color: #008000;
}
#html5-qrcode-anchor-scan-type-change {
text-decoration: none !important;
color: #1d9bf0;
}
video {
width: 100% !important;
border: 1px solid #b2b2b2 !important;
border-radius: 0.25em;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd; text-align: left; padding: 8px;
}
th:nth-child(even) {
background-color: #dddddd;
}
.titles {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 30px;
font-weight: bold;
color: #670c0f;
text-align: center;
vertical-align: text-bottom;
}
.main-titles{
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 60px;
font-weight: bold;
color: #670c0f;
text-align: center;
vertical-align: text-top;
margin-bottom: 10px
}