-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcatalog.css
152 lines (133 loc) · 3.27 KB
/
catalog.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
/*********************************
* C O N T E N T S E C T I O N *
*********************************/
ul.items {
background-color: #ffffff;
width: 1000px;
padding-left:0px;
padding-bottom:20px;
}
li.item {
display: inline-block;
width: 300px;
height: 400px;
border: solid 1px grey;
margin-left: 20px;
margin-bottom: 20px;
padding-left:0px;
box-shadow: 5px 5px 10px -5px grey;
}
div.title {
font-size: 20px;
text-align: center;
color: #06266F;
height: 50px;
margin: 0px 5px;
}
div.image {
text-align: center;
margin-bottom: 5px;
margin-left: 5px;
width: 290px;
height: 290px;
background: url(img/goods/preview/0.png);
cursor: pointer;
}
div.image img {
display: block;
width: 290px;
height: 290px;
border: 0px solid;
}
div.price {
float:left;
width:125px;
height:40px;
position:relative;
left:15px;
padding-top:8px;
font-size: 20px;
text-align:center;
color:#1240AB;
cursor: pointer;
}
div.price:hover {
text-decoration: underline;
}
div.button-order
{
width:125px;
height:36px;
float:left;
position:relative;
left:30px;
background: #1240AB;
background: -webkit-linear-gradient(#6C8CD5 0%, #4671D5 5%, #1240AB 95%, #06266F 100%);
background: -moz-linear-gradient( #6C8CD5 0%, #4671D5 5%, #1240AB 95%, #06266F 100%);
background: -o-linear-gradient( #6C8CD5 0%, #4671D5 5%, #1240AB 95%, #06266F 100%);
background: -ms-linear-gradient( #6C8CD5 0%, #4671D5 5%, #1240AB 95%, #06266F 100%);
border: 1px solid #333;
padding-top:4px;
font: 26px verdana;
text-align:center;
color:#ffffff;
cursor: pointer;
}
div.button-order:not(.loading):hover {
box-shadow: 0px 0px 3px #1240AB;
background: #2A4480;
background: -webkit-linear-gradient(#6C8CD5 0%, #4671D5 5%, #2A4480 95%, #06266F 100%);
background: -moz-linear-gradient( #6C8CD5 0%, #4671D5 5%, #2A4480 95%, #06266F 100%);
background: -o-linear-gradient( #6C8CD5 0%, #4671D5 5%, #2A4480 95%, #06266F 100%);
background: -ms-linear-gradient( #6C8CD5 0%, #4671D5 5%, #2A4480 95%, #06266F 100%);
}
div.button-order:not(.loading):active {
box-shadow: 0px 0px 3px #06266F;
text-shadow: -1px -1px 0px #000;
background: #2A4480;
background: -webkit-linear-gradient(#06266F 0%, #1240AB 5%, #4671D5 95%, #6C8CD5 100%);
background: -moz-linear-gradient( #06266F 0%, #1240AB 5%, #4671D5 95%, #6C8CD5 100%);
background: -o-linear-gradient( #06266F 0%, #1240AB 5%, #4671D5 95%, #6C8CD5 100%);
background: -ms-linear-gradient( #06266F 0%, #1240AB 5%, #4671D5 95%, #6C8CD5 100%);
}
div.button-order.loading {
color: transparent;
background: #1240AB;
cursor: wait;
}
@keyframes rotation {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
div.button-order.loading::after {
position: absolute;
display: block;
width: 20px;
height: 20px;
left: calc(50% - 15px);
top: calc(50% - 15px);
content: ' ';
border: 5px solid transparent;
border-left-color: rgba(255, 255, 255, 0.6);
border-radius: 30px;
transform-origin: center center;
animation: rotation 0.7s infinite;
animation-timing-function: linear;
}
div.no-items {
text-align: center;
font-weight: bold;
padding: 150px 20px;
}
div.navigation {
/*font-size: 18px;*/
text-align: center;
}
li.navigation {
display:inline-block;
text-align:center;
margin: 0px 10px;
}
li.navigation.current {
font-weight: bold;
}