-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
96 lines (80 loc) · 1.48 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
Html, body{
margin:0;
padding:0;
background-color:rgb(129, 38, 38);
}
h1{
font-size: 65px;
margin-top: 40px;
padding-bottom: 40px;
}
.main-table{
padding-left: 55px;
max-width:100vw;
margin:auto;
}
.table{
font-weight: bold;
font-size: 20px;
padding-right:50px;
}
.thead{
border-top:3px solid white;
border-bottom:3px solid white;
color:white;
}
.pricePerItem{
font-size: 25px;
}
@media screen and (min-width:1200px) {
.table{
font-weight: bold;
font-size: 30px;
}
}
@media screen and (max-width:576px) {
.table{
font-weight: bold;
font-size: 15px;
}
.total{
font-weight: bold;
font-size: 20px;
border: 10px solid rgb(10, 10, 10);
text-align: center;
justify-content: center;
border-radius: 20px;
background-color: white;
box-sizing: border-box;
margin-top: 20px;
}
}
.total{
font-weight: bold;
font-size: 40px;
border: 10px solid rgb(10, 10, 10);
text-align: center;
justify-content: center;
border-radius: 50px;
background-color: white;
box-sizing: border-box;
margin-top: 30px;
}
p{
display: inline-block;
padding-left: 10px;
padding-top: 25px;
}
.btn{
background-color: rgb(5, 4, 4);
color: white;
border-radius: 10px;
font-size: 25px;
}
#addNewItem{
display: inline-flex;
padding-left: 3px;
}
#addNewItem{
padding-left: 2;
}