-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslideshow3d.css
102 lines (85 loc) · 1.84 KB
/
slideshow3d.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
body {
width: 960px;
margin: 0 auto;
background: #111;
color: #000;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
.no-csstransforms3d #container {
display: none;
}
.csstransforms3d #no-support {
display: none;
}
#container {
-o-perspective: 1000;
-moz-perspective: 1000;
-webkit-perspective: 1000;
perspective: 1000;
-o-perspective-origin: 50% 20%;
-moz-perspective-origin: 50% 20%;
-webkit-perspective-origin: 50% 40%;
perspective-origin: 50% 20%;
-o-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
#stage {
width: 100%;
margin-top: 200px;
padding-bottom: 100px;
-o-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
#shape {
margin: 0 auto;
height: 240px;
width: 240px;
list-style: none;
-o-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-o-transition-duration: 1s;
-moz-transition-duration: 1s;
-webkit-transition-duration: 1s;
transition-duration: 1s;
}
h1 {
text-align: center;
color: #fff;
text-shadow: 0px 0px 2px #fff, 0px 0px 2px #333;
text-transform: uppercase;
line-height: 40px;
font-size: 36px;
}
img {
margin: auto;
text-align: center;
}
#controls, #no-support {
margin: 10px auto;
padding: 15px 10px;
text-align: center;
background: #005982;
color: #fff;
border: 1px solid #fff;
-o-box-shadow: 0 0 5px #fff;
-moz-box-shadow: 0 0 5px #fff;
-webkit-box-shadow: 0 0 5px #fff;
box-shadow: 0 0 5px #fff;
}
#controls input {
margin: 0 20px 0 10px;
}
#controls a {
color: #fff;
margin-left: 5px;
}
#submit {
background: #fff;
}