-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·155 lines (155 loc) · 2.47 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
@import "swiper.css";
@import "easyzoom.css";
body,html,*{
padding:0;
margin:0;
text-align:center;
font-family:"Times New Roman",Times,serif;
text-decoration:none;
color:#000;
}
.invisible{
display:none;
}
#logo{
margin:10px 0;
width:400px;
height:auto;
}
#facebook{
margin-bottom:-10px;
margin-left:auto;
margin-right:auto;
}
#nav{
margin:10px auto;
list-style-type:none;
cursor:pointer;
}
#nav li{
display:inline-block;
padding:0 50px;
border-right:1px solid #888;
}
#nav li:hover{
color:#888;
}
#nav .active{
color:#888;
}
.page-header{
font-size:150%;
}
.divider{
display:block;
margin:2px auto;
border-style:inset;
border-width:1px;
border-color:#000;
width:860px;
}
.arrow-left{
background:url(../img/arrows.png) no-repeat left top;
position:absolute;
left:10px;
top:50%;
margin-top:-15px;
width:17px;
height:30px;
z-index:2;
}
.arrow-right{
background:url(../img/arrows.png) no-repeat left bottom;
position:absolute;
right:10px;
top:50%;
margin-top:-15px;
width:17px;
height:30px;
z-index:2;
}
.thumbnail-swiper{
width:860px;
height:80px;
}
.thumbnail-swiper .swiper-slide{
opacity:.7;
}
.thumbnail-swiper .swiper-slide img{
border-style:inset;
border-width:1px;
border-color:#000;
}
.thumbnail-swiper .active{
opacity:1;
}
.image-swiper{
width:860px;
height:575px;
}
.image-swiper .swiper-slide{
width:860px;
height:575px;
}
.image-swiper .swiper-slide .small-img{
border:1px inset #000;
}
#about div{
text-align:justify;
vertical-align:top;
width:282px;
display:inline-block;
padding:20px;
}
#about #aboutCenter{
padding:20px 0;
text-align:center;
}
#about #aboutCenter img{
border-style:inset;
border-width:1px;
border-color:#000;
width:282px;
height:auto;
}
#about #aboutRight #signature{
width:100%;
height:auto;
}
#price .product-wrapper{
width:860px;
height:auto;
margin:0 auto;
display:inline-block;
vertical-align:top;
}
#price .product-wrapper .productphoto{
margin-top:0;
margin-bottom:0;
width:282px;
height:575px;
border:1px solid #000;
position:relative;
display:inline-block;
vertical-align:top;
}
#price .product-wrapper .productphoto img{
width:90%;
vertical-align:middle;
border-style:double;
border-width:1px;
border-color:#000;
}
input,textarea{
padding:10px;
border:solid 1px #000;
box-shadow:inset 1px 1px 2px 0 #888;
transition:box-shadow .3s;
width:860px;
-webkit-border-radius:10px;
-moz-border-radius:10px;
border-radius:10px;
}
input:focus,textarea:focus{
box-shadow:inset 1px 1px 2px 0 #c9c9c9;
}