-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.css
52 lines (46 loc) · 805 Bytes
/
css.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
body {
margin: 0 auto;
font-family: monospace;
}
.myHref {
color: white;
background-color: #2c1f9e;
text-decoration: none;
outline: none;
cursor: pointer;
padding: 12px;
border-radius: 6px;
text-transform: uppercase;
}
.myHref:hover {
background-color: #2c1f9e;
color: white;
outline: none;
text-decoration: none;
}
.myHref:active {
background-color: #3223b3;
text-decoration: none;
outline: none;
}
.scanBtn {
padding-top: 30px;
padding-bottom: 30px;
text-align: center;
}
.barcode {
margin: 10px auto;
width: 320px;
text-align: center;
word-break: break-word;
padding: 9px;
min-height: 56px;
background-color: #e6e6e6;
display: flex;
justify-content: center;
align-items: center;
border-radius: 6px;
}
.canvas {
text-align: center;
}