-
Notifications
You must be signed in to change notification settings - Fork 1
/
howto.css
53 lines (48 loc) · 1.77 KB
/
howto.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
.yui3-thxcard-howto {
display: block;
margin: auto;
width: 800px;
height: 600px;
}
.yui3-thxcard-howto-content {
text-align: center;
font-family: 'Tangerine', serif;
font-size: x-large;
-webkit-box-shadow: 2px 2px 10px #11111f; /* Saf3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
-moz-box-shadow: 2px 2px 10px #111111; /* FF3.5 - 3.6 */
-o-box-shadow: 2px 2px 10px #111111; /* FF3.5 - 3.6 */
box-shadow: 2px 2px 10px #111111; /* Opera 10.5, IE9, FF4+, Chrome 6+, iOS 5 */
height:100%;
width:100%;
}
.yui3-thxcard-howto-content .background {
width: 100%;
height: 100%;
border: 1px black solid;
background-color: white;
}
.yui3-thxcard-howto-content .background.clicked {
background-image: linear-gradient(top left, blue, rgba(255,0,0,0));
background-image: -webkit-linear-gradient(top left, blue, rgba(255,0,0,0));
background-image: -moz-linear-gradient(top left, blue, rgba(255,0,0,0));
background-image: -o-linear-gradient(top left, blue, rgba(255,0,0,0));
}
.yui3-thxcard-howto-content .frame:first-child {
width: 50%;
height: 40%;
position: relative;
left: 40%;
top: 10%;
border: 1px black solid;
background-color: white;
-webkit-box-shadow: 2px 2px 10px #11511f; /* Saf3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
-moz-box-shadow: 2px 2px 10px #11511f; /* FF3.5 - 3.6 */
-o-box-shadow: 2px 2px 10px #11511f; /* FF3.5 - 3.6 */
box-shadow: 2px 2px 10px #11511f; /* Opera 10.5, IE9, FF4+, Chrome 6+, iOS 5 */
}
.yui3-thxcard-howto-content .frame.clicked {
background-image: linear-gradient(bottom right, blue, rgba(255,0,0,0));
background-image: -webkit-linear-gradient(bottom right, blue, rgba(255,0,0,0));
background-image: -moz-linear-gradient(bottom right, blue, rgba(255,0,0,0));
background-image: -o-linear-gradient(bottom right, blue, rgba(255,0,0,0));
}