-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathListAroundSample.css
72 lines (72 loc) · 1.8 KB
/
ListAroundSample.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
.list-sample-around {
height: 100%;
width: 100%;
}
/* item */
.list-sample-around-item {
height: 30%;
//border-top: 1px solid silver;
padding: 12px 16px;
border-radius: 5%;
background-image: -moz-linear-gradient(top, #ffffff, #dbdbdb);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #dbdbdb));
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff', EndColorStr='#dbdbdb');
//border: 1px solid #fff;
-moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
-webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
}
.list-sample-around-item-selected {
background: #226B9A url(assets/item-hilite.png) repeat-x bottom;
}
.list-sample-around-item > * {
display: inline-block;
vertical-align: middle;
}
.list-sample-around-avatar {
width: 64px;
height: 64px;
padding-right: 10px;
border-radius: 15%;
}
.list-sample-around-name {
font-family:"Century Gothic", CenturyGothic, AppleGothic, sans-serif;
font-size: 16px;
font-weight: normal;
color: chocolate; /*darkred, firebrick, indianred*/
}
.list-sample-around-description {
font-size: 12px;
color: grey;
}
.list-sample-around-remove-button {
float: right;
display: none;
}
/* divider */
.list-sample-around-divider {
/*background-color: #666;*/
font-family:"Century Gothic", CenturyGothic, AppleGothic, sans-serif;
background-color: white;
font-size: 14px;
font-weight: normal;
padding: 8px 16px;
color: grey;
}
/* popup */
.list-sample-around-popup {
width: 280px;
}
.list-sample-around-popup > * {
display: block;
margin: 10px 10px;
}
.list-sample-around-populate-button {
float: right;
margin-top: 25px;
}
.list-sample-around-label {
display: inline-block;
width: 120px;
padding-right: 10px;
}