-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (83 loc) · 1.09 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
93
94
95
96
97
98
99
100
101
102
103
104
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');
*,
*::before,
*::after {
box-sizing: border-box;
outline: none;
}
html,
body,
ul,
ol {
padding: 0;
margin: 0;
font-size: 14px;
font-family: 'Roboto', sans-serif;
}
ul,
ol {
list-style: none;
}
button {
background-color: transparent;
border: none;
}
a {
text-decoration: none;
display: inline-block;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
margin: 0;
}
figure {
margin: 0;
}
img {
display: inline-block;
max-width: 100%;
}
a i {
font-size: 16px;
}
a .fa-file-lines {
color: blue;
}
a .fa-tag {
color: green;
}
a .fa-trash-can {
color: red
}
.fa-reply {
color: red
}
.fa-share {
color: green;
}
.fa-cart-arrow-down {
color: blueviolet;
}
.fa-arrow-up {
color: blue;
}
.fa-arrow-down {
color: blue;
}
.customer-list-item {
cursor: pointer;
}
.customer-list-item:hover {
background-color: #f1f1f1;
}
.product-list-item {
cursor: pointer;
}
.product-list-item:hover {
background-color: #f1f1f1;
}