-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdetail.css
68 lines (68 loc) · 1 KB
/
detail.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
/*------------- Book detail section ------------------*/
#book-detail
{
margin-top: 60px;
}
.book-style
{
box-shadow: 5px -5px 8px #888888;
border-radius: 3%;
}
.author
{
font-weight: 900;
font-size: 40px;
}
.rating {
unicode-bidi: bidi-override;
direction: rtl;
font-size: 30px;
}
.rating > span {
display: inline-block;
position: relative;
width: 1.1em;
}
.rating > span:hover:before,
.rating > span:hover ~ span:before {
position: absolute;
content: "\2605";
color: gold;
}
.price
{
margin-top: 20px;
align-items: center;
border-bottom: 1px solid gray;
}
.sale-price
{
font-weight: 900;
font-size: 40px;
}
.origin-price
{
margin-left: 20px;
text-decoration: line-through;
}
.full-description
{
margin-top: 20px;
border-bottom: 1px solid gray;
}
.full-description .condition
{
margin-top: 10px;
}
.full-description .condition span
{
color: green;
}
.add-button
{
margin-top: 20px;
}
.more-details
{
margin-top: 20px;
}