-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.scss
78 lines (63 loc) · 1.08 KB
/
index.scss
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
@font-face { font-family: MerchantCopy; src: url('Merchant Copy.ttf'); }
* {
box-sizing: border-box;
font-family: MerchantCopy;
font-size: 24px;
color: MidnightBlue;
}
body {
margin: 0;
}
main {
// center the receipt
position: relative;
height: 100vh;
min-height: 500px;
background-color: lightgray;
}
#title {
margin: 0 0 24px 0;
p {
margin: 0;
text-align: center;
}
}
#heading {
margin: 0 0 24px 0;
p {
margin: 0;
font-size: 22px;
}
}
#receipt {
// center the receipt
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
// styling
background-color: white;
padding: 50px 16px 50px 16px;
tr {
height: 23px;
}
td {
padding: 1px;
&:nth-child(2) {
text-align: right;
}
}
input {
width: 60px;
border: none;
border-bottom: 2px solid MidnightBlue;
text-align: right;
&:focus {
outline: none;
border-bottom: 3px solid MidnightBlue;
}
&::-webkit-outer-spin-button, &::-webkit-inner-spin-button {
-webkit-appearance: none;
}
}
}