-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
55 lines (49 loc) · 1.12 KB
/
index.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
@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 {
position: relative;
height: 100vh;
min-height: 500px;
background-color: lightgray; }
#title {
margin: 0 0 24px 0; }
#title p {
margin: 0;
text-align: center; }
#heading {
margin: 0 0 24px 0; }
#heading p {
margin: 0;
font-size: 22px; }
#receipt {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
padding: 50px 16px 50px 16px; }
#receipt tr {
height: 23px; }
#receipt td {
padding: 1px; }
#receipt td:nth-child(2) {
text-align: right; }
#receipt input {
width: 60px;
border: none;
border-bottom: 2px solid MidnightBlue;
text-align: right; }
#receipt input:focus {
outline: none;
border-bottom: 3px solid MidnightBlue; }
#receipt input::-webkit-outer-spin-button, #receipt input::-webkit-inner-spin-button {
-webkit-appearance: none; }
/*# sourceMappingURL=index.css.map */