forked from amirnathoo/Wine-Box
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
182 lines (160 loc) · 3.04 KB
/
style.css
File metadata and controls
182 lines (160 loc) · 3.04 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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/* general styling */
body, html {
height: 100%;
margin: 0;
padding: 0;
}
body {
background-color: #fbfbfb;
color: black;
text-align: left;
}
input {
border: 1px solid #ccc;
height: 20px;
line-height: 20px;
}
/* instructions styling */
div.container {
width: 100%;
height: 100%;
}
div.listenactive:active, div.listenactive.active {
color: white;
text-shadow: 0 -1px 1px #46677F;
background: -webkit-gradient(linear,left top,left bottom,from(#7BB5DB),to(#4775B8));
background: -moz-linear-gradient(top,#7BB5DB,#4775B8);
background: linear-gradient(top,#7BB5DB,#4775B8);
border-bottom-color: #609FD0;
-moz-box-shadow: inset 0 2px 2px #4775b8;
-webkit-box-shadow: inset 0 2px 2px #4775b8;
-moz-box-shadow: inset 0 2px 2px #4775b8;
-webkit-box-shadow: inset 0 2px 2px #4775b8;
box-shadow: inset 0 2px 2px #4775b8;
}
div.listenactive:active img, div.listenactive.active img,
div.listenactive:active fieldset, div.listenactive.active fieldset {
display:none;
}
div.label {
font-size:18px;
line-height:22px;
font-weight:bold;
text-decoration:none;
position:absolute;
top:14px;
left:8px;
}
img.icon {
position:absolute;
top:0px;
right:0px;
}
div.container, #list {
display: none;
}
div#picture, div#rate {
width:100%;
height:100%;
background-size:cover;
}
div.step {
height: 50px;
background-color: #fff;
box-shadow: 0 1px 3px rgba(34,25,25,0.4);
-moz-box-shadow: 0 1px 2px rgba(34,25,25,0.4);
-webkit-box-shadow: 0 1px 3px rgba(34,25,25,0.4);
display: inline-block;
vertical-align: middle;
width: 100%;
white-space: nowrap;
overflow: hidden;
font-family:arial;
}
div.instruction {
font-size:18px;
line-height:22px;
font-weight:bold;
text-decoration:none;
padding: 14px 0px;
}
div.center {
text-align: center;
}
div.left{
text-align: left;
}
/* ratings widget */
#rate_container .ratephoto fieldset {
text-align: center;
padding: 16px 0px;
}
#list_container .ratephoto fieldset {
padding: 0px 0px 0px 8px;
}
#rate_container fieldset div {
margin: 0px auto;
}
.ratephoto fieldset div {
width: 7em;
}
.ratephoto fieldset br {
display:none;
}
.ratephoto fieldset label {
position:relative;
height:1.4em;
width:1.4em;
overflow:hidden;
float:left;
}
.ratephoto fieldset img {
width:2.8em;
height:1.4em;
position:absolute;
top:0;
left:0;
}
.ratephoto fieldset .no_star img {
left:-1.4em;
}
/* list view */
.image_wrapper {
width: 34px;
height: 34px;
overflow: hidden;
position: relative;
float: left;
margin: 8px 0px;
}
.image_wrapper img {
position: absolute;
top: 8px;
left: 0;
width: 34px;
}
.title {
font-size:18px;
line-height:22px;
font-weight:bold;
text-decoration:none;
display: inline-block;
margin: 4px 0px 0px 8px;
overflow: hidden;
}
#list .title {
width: 75%;
}
img.detail_icon {
float: right;
padding: 10px 8px;
}
img.detail {
margin: 3px 0 0 0;
width: 100%;
}
/* map view */
#map {
width: 100%;
height: 100%;
}