-
Notifications
You must be signed in to change notification settings - Fork 0
/
label.css
116 lines (104 loc) · 2.04 KB
/
label.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
108
109
110
111
112
113
114
115
116
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Permanent Marker", cursive;
background-color: #8bc6ec;
background-image: linear-gradient(135deg, #8bc6ec 0%, #9599e2 100%);
overflow: hidden;
}
#navbar {
font-family: "Exo", sans-serif;
display: flex;
color: aliceblue;
justify-content: center;
background-color: #08111e;
}
#navbar-font {
font-size: 60px;
}
#print-button,
#generate-button {
background-color: #08111e;
margin: 10px;
}
.datatable {
display: flex;
justify-content: space-between;
}
#super-container {
background-color: aliceblue;
border-radius: 5px;
margin: auto;
margin-top: 50px;
padding: 50px 10px;
/* border: solid 0.5px; */
display: flex;
justify-content: space-evenly;
flex-direction: row;
width: 70%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#printable {
background-color: white;
width: 30%;
display: flex;
font-weight: 500;
/* justify-content: center; */
flex-direction: column;
font-size: 35px;
line-height: 30px;
padding: 30px;
}
#prod_size{
/* font-weight: 500; */
letter-spacing: 2px;
/* font-size: 1%; */
}
.hr {
padding: 0;
margin: 3px;
display: block;
height: 1px;
background: transparent;
width: 100%;
border: none;
border-top: solid 1.5px #000000 !important;
}
.text-area {
text-align: center;
font-size: 30px;
padding: 5px;
height: 40px;
border-style: solid;
border-radius: 2px;
margin: 5px;
}
#content {
margin: 0;
text-align: center;
}
#output {
display: flex;
justify-content: center;
/* flex-direction: column; */
}
#form {
width: 30%;
display: flex;
flex-direction: column;
}
@media print {
.hr {
padding: 0;
margin: 3px;
display: block;
height: 1px;
background: transparent;
width: 100%;
border: none;
border-top: solid 1.5px #000000 !important;
}
}