-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
125 lines (101 loc) · 3.47 KB
/
styles.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
html {
background: #b5c1cc; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover, #b5c1cc 0%, #5d83a0 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#b5c1cc), color-stop(100%,#5d83a0)); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover, #b5c1cc 0%,#5d83a0 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover, #b5c1cc 0%,#5d83a0 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover, #b5c1cc 0%,#5d83a0 100%); /* IE10+ */
background: radial-gradient(center, ellipse cover, #b5c1cc 0%,#5d83a0 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b5c1cc', endColorstr='#5d83a0',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
height : 100%;
}
body {
background-color : white;
font-size : 14px;
max-width : 975px;
min-width : 400px;
width : 100%;
min-height : 100%;
margin : 8px auto;
padding : 15px;
font-family : Helvetica sans-serif;
-moz-perspective: 1000px;
-webkit-perspective: 1000px;
position: relative;
}
h1 {
font-size : 3.5em;
font-family: 'Love Ya Like A Sister', cursive;
text-align: center;
}
h1:first-letter {
font-size : 1.3em;
}
#header {
padding : 15px;
margin-bottom : 1em;
}
[type=submit] {
display : block;
float : right;
}
#content {
}
#content form {
width : 80%;
margin : 0 auto;
max-width : 500px;
}
#content textarea {
width : 100%;
font-family : inherit;
}
#remote,iframe {
height : 93%;
}
iframe {
width : 101%;
}
ruby img {
width : 100px;
height : 100px;
border : solid thin grey;
display : block;
}
ruby rt {
text-align: center;
}
/* transform */
#flip {
width: 100%;
height: 100%;
position: absolute;
-moz-transform-style: preserve-3d;
-moz-transition: -moz-transform 1s;
-moz-transform: rotateY( 0 );
-webkit-transform-style: -webkit-preserve-3d;
-webkit-transition: -webkit-transform 1s;
-webkit-transform: rotateY( 0 );
}
#flip > div {
display: block;
position: absolute;
width: 100%;
height: 100%;
-moz-backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}
#flip .front {
}
#flip .back {
-moz-transform: rotateY( 180deg );
-webkit-transform: rotateY( 180deg );
}
#flip.flipped {
-moz-transform: rotateY( 180deg );
-webkit-transform: rotateY( 180deg );
}
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 2px/*{cornerRadius}*/; -webkit-border-top-left-radius: 2px/*{cornerRadius}*/; -khtml-border-top-left-radius: 2px/*{cornerRadius}*/; border-top-left-radius: 2px/*{cornerRadius}*/; }
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 2px/*{cornerRadius}*/; -webkit-border-top-right-radius: 2px/*{cornerRadius}*/; -khtml-border-top-right-radius: 2px/*{cornerRadius}*/; border-top-right-radius: 2px/*{cornerRadius}*/; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 2px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 2px/*{cornerRadius}*/; -khtml-border-bottom-left-radius: 2px/*{cornerRadius}*/; border-bottom-left-radius: 2px/*{cornerRadius}*/; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 2px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 2px/*{cornerRadius}*/; -khtml-border-bottom-right-radius: 2px/*{cornerRadius}*/; border-bottom-right-radius: 2px/*{cornerRadius}*/; }