-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (76 loc) · 1.17 KB
/
style.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
*{
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
a{
color: black;
font-weight: 550;
text-decoration: none;
}
header{
height: 60px;
background-color: #806BDC;
text-align: center;
}
.NavBar{
padding-top: 18px;
}
#navbar-title{
color: white;
font-size: 25px;
}
.Items{
padding-top: 15px;
padding-bottom: 15px;
}
#item-table{
width: 100%;
text-align: center;
}
.Item-img{
height: 64px;
}
.Item-tag{
font-size: 14px;
}
.Item-tag:hover{
color: #806BDC;
}
.Shopping-container{
background-color: lightgrey;
text-align: center;
padding-bottom: 30px;
}
h2{
text-align: center;
}
#shopping-time-img{
margin-top: 30px;
width: 90vw;
height: 60vh;
}
.Sales-table{
width: 90vw;
margin: auto;
border: 1px solid grey;
border-collapse: collapse;
padding: 12px;
}
.Sales-table-head{
background-color: #806BDC;
}
.Information{
width: 92vw;
margin: 20px;
font-size: 11px;
color: #878787;
list-style-position: inside;
}
.footer{
height: 50px;
padding-top: 28px;
background-color: black;
color: white;
text-align: center;
}