-
Notifications
You must be signed in to change notification settings - Fork 0
/
style1.css
99 lines (86 loc) · 1.71 KB
/
style1.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
.windy-demo {
width: 200px;
margin: 40px auto;
color: #aaa;
}
.windy-demo ul.wi-container {
border-radius: 5px;
}
.windy-demo ul.wi-container::before,
.windy-demo ul.wi-container::after {
content: '';
width: 100%;
height: 100%;
position: absolute;
background: white;
left: 0;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
.windy-demo ul.wi-container::before {
top: 10px;
z-index: -2;
box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}
.windy-demo ul.wi-container::after {
top: 7px;
z-index: -1;
}
.windy-demo h4 {
color: #666;
font-size: 14px;
padding: 8px 0 5px;
margin: 5px 0;
border-bottom: 1px solid #f0f0f0;
}
.windy-demo p {
font-size: 12px;
font-weight: bold;
padding: 0;
margin: 0;
}
.windy-demo ul.wi-container li {
border-radius: 5px;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.windy-demo li img {
display: block;
margin: 0 auto;
max-width: 100%;
box-shadow: 0 0 1px 1px rgba(255,255,255,0.6), 0 0 0 4px rgba(0,0,0,0.1);
}
.windy-demo nav {
position: relative;
width: 96px;
margin: 0 auto;
}
.windy-demo nav span {
width: 40px;
height: 40px;
margin: 0 4px;
float: left;
background: url(../images/nav.png) no-repeat 100% 0;
text-indent: -9000px;
cursor: pointer;
border-radius: 50%;
box-shadow: 0 2px 3px rgba(0,0,0,0.5);
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.windy-demo nav span:first-child {
background-position: 0 0;
}
.windy-demo nav span:active {
box-shadow: 0 1px 1px rgba(0,0,0,0.3);
background-position: 100% 2px;
}
.windy-demo nav span:first-child:active {
background-position: 0 2px;
}