-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdemo-styles.css
115 lines (101 loc) · 2.54 KB
/
demo-styles.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
body {
width: 780px;
margin-top: 0;
margin-left: auto;
margin-right: auto;
padding: 10px;
overflow-y: scroll;
}
[unresolved] {
visibility: hidden;
}
ff-record-list {
margin-left: auto;
margin-right: auto;
padding: 20px 0;
}
ff-record {
padding: 15px 1.5% 0 1.5%;
width: 28%;
overflow: hidden;
margin: 5px;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
ff-record img {
width: 215px;
height: 215px;
}
ff-record .priceContainer {
display: flex;
justify-content: space-between;
margin-top: 8px;
}
ff-record .price {
color: #3c3c3b;
font-weight: bold;
text-decoration: underline;
}
ff-record .brand {
color: #3c3c3b;
font-weight: bold;
}
ff-record a, ff-record a:visited, ff-record a:active {
text-decoration: none;
color: #000;
font-weight: bold;
height: 35px;
overflow: hidden;
display: block;
}
ff-searchbox input {
height: 32px;
width: 300px;
background-color: #EEEEEE;
border-radius: 5px;
padding-left: 10px;
outline: none;
margin-bottom: 15px;
font-size: 15px;
color: #3c3c3b;
}
ff-loading-spinner {
text-align: center;
}
button:disabled {
background-color: gray;
background-image: none;
cursor: default;
}
button {
cursor: pointer;
display: inline-block;
border: none;
color: #EDEDED;
border-radius: 3px 3px 3px 3px;
-webkit-border-radius: 3px 3px 3px 3px;
-moz-border-radius: 3px 3px 3px 3px;
font-family: Verdana;
width: auto;
height: auto;
font-size: 14px;
padding: 10px 40px;
box-shadow: inset 0 1px 0 0 #FFF6CE, inset 0 -1px 0 0 #E3C852, inset 0 0 0 1px #FCE88D, 0 2px 4px 0 #D4D4D4;
-moz-box-shadow: inset 0 1px 0 0 #FFF6CE, inset 0 -1px 0 0 #E3C852, inset 0 0 0 1px #FCE88D, 0 2px 4px 0 #D4D4D4;
-webkit-box-shadow: inset 0 1px 0 0 #FFF6CE, inset 0 -1px 0 0 #E3C852, inset 0 0 0 1px #FCE88D, 0 2px 4px 0 #D4D4D4;
text-shadow: 0 1px 0 #FFFFFF;
background-image: linear-gradient(to top, #006299, #006299);
background-color: #006299;
border-radius: 6px;
}
button:hover:not([disabled]) {
border: none;
color: #EDEDED;
box-shadow: inset 0 1px 0 0 #007BBF, inset 0 -1px 0 0 #007BBF, inset 0 0 0 1px #007BBF;
-moz-box-shadow: inset 0 1px 0 0 #007BBF, inset 0 -1px 0 0 #007BBF, inset 0 0 0 1px #007BBF;
-webkit-box-shadow: inset 0 1px 0 0 #007BBF, inset 0 -1px 0 0 #007BBF, inset 0 0 0 1px #007BBF;
background-color: #007BBF;
}