-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.scss
More file actions
98 lines (95 loc) · 1.8 KB
/
styles.scss
File metadata and controls
98 lines (95 loc) · 1.8 KB
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
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
letter-spacing: 0.3pt;
font-family: "Roboto", sans-serif;
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
}
#name {
width: 100px;
height: 100%;
padding: 2px;
padding-left: 5px;
}
#accept {
height: 100%;
margin: 0;
padding: 2px;
}
#logout {
display: none;
}
#container {
margin-top: 5px;
margin-left: 20%;
margin-right: 20%;
padding-left: 20px;
padding-right: 20px;
height: 100%;
display: grid;
grid-template-columns: auto;
grid-template-rows: 50px auto;
grid-template-areas: "header" "content";
}
#header {
border: 1px solid #ccc;
border-collapse: collapse;
background-color: #efa;
display: flex;
grid-area: header;
flex-direction: column;
justify-content: center;
align-items: center;
}
#content {
display: flex;
flex-flow: column nowrap;
align-items: center;
justify-content: center;
border: 1px solid #ccc;
border-collapse: collapse;
padding: 20px;
grid-area: content;
background-color: #bea;
}
#enterName {
margin-left: 10px;
justify-self: flex-start;
}
#displayName {
display: none;
margin-right: 10px;
margin-left: 10px;
}
#addButton {
height: 100%;
}
#productTable {
display: none;
tr.data:hover {
background-color: #fff;
}
}
#productName {
width: 300px;
}
#productQuantity {
width: 46px;
}
input {
height: 100%;
padding: 2px;
padding-left: 7px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
display: none;
-webkit-appearance: none;
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
input[type=number] {
-moz-appearance:textfield; /* Firefox */
}