-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathproduct.component.css
More file actions
81 lines (73 loc) · 1.28 KB
/
product.component.css
File metadata and controls
81 lines (73 loc) · 1.28 KB
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
/* Products Component's private CSS styles */
.products {
margin: 0 0 2em 0;
list-style-type: none;
padding: 0;
width: 15em;
}
.products li {
position: relative;
cursor: pointer;
background-color: #EEE;
margin: .5em;
padding: .3em 0;
height: 1.6em;
border-radius: 4px;
}
.products li:hover {
color: #607D8B;
background-color: #DDD;
left: .1em;
}
.products a {
color: #888;
text-decoration: none;
position: relative;
display: block;
width: 250px;
}
.products a:hover {
color:#607D8B;
}
.products .badge {
display: inline-block;
font-size: small;
color: white;
padding: 0.8em 0.7em 0 0.7em;
background-color: #607D8B;
line-height: 1em;
position: relative;
left: -1px;
top: -4px;
height: 1.8em;
min-width: 16px;
text-align: right;
margin-right: .8em;
border-radius: 4px 0 0 4px;
}
button {
background-color: #eee;
border: none;
padding: 5px 10px;
border-radius: 4px;
cursor: pointer;
cursor: hand;
font-family: Arial;
}
button:hover {
background-color: #cfd8dc;
}
button.delete {
position: relative;
left: 194px;
top: -32px;
background-color: gray !important;
color: white;
}
button.edit {
position: relative;
left: 140px;
top: -32px;
background-color: rgb(29, 150, 99) !important;
color: white;
}