-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
110 lines (93 loc) · 1.66 KB
/
styles.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
width: 100%;
height: 100%;
}
body {
width: 100%;
height: 100%;
background: #2c3e50;
background: -webkit-linear-gradient(to left, #3498db, #2c3e50);
background: linear-gradient(to left, #3498db, #2c3e50);
overflow-y: scroll;
}
.row {
margin-top: 1rem;
}
ul.list {
list-style: none;
}
ul.list > li {
display: grid;
grid-template-columns: repeat(2, auto);
justify-content: start;
column-gap: 3%;
margin-top: 4%;
}
ul.list > li > img {
box-shadow: 5px 5px 10px -1px black;
}
button.delete-button {
grid-column: 1;
box-shadow: 2px 2px 10px -1px black;
grid-row: 1;
justify-self: end;
}
input#count-container {
cursor: default;
width: auto;
}
.barcode {
border-top-style: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input.edit-name#edit-name {
border-bottom: none;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
z-index: 1;
cursor: default;
text-align: left;
width: min(66px, 100%);
margin-right: 0;
}
.li-container {
display: flex;
flex-direction: column;
overflow: hidden;
background-color: red;
}
.second-row {
margin-top: 0;
}
.input-container-name {
grid-column: 1;
}
.input-container-count {
grid-column: 1;
}
.input-container-column {
grid-column: 2;
grid-row: 1;
display: grid;
grid-template-rows: auto;
align-items: flex-start;
}
@media only screen and (max-width: 768px) {
.input-container-column {
grid-column: 1;
grid-row: 2;
display: grid;
grid-template-rows: auto;
align-items: flex-start;
row-gap: 5%;
}
}