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
|
/* Application */
/* General global styles */
/* . Layout . */
body {
background: url('../images/background.png') repeat;
padding: 0 2.8em;
}
header {
font-family: neoretrodrawregular, znikomitno24regular, seasideresortnfregular, itsadzokes01regular, sans-serif;
font-size: 80px;
margin: 0.2em 0 0.4em;
}
#samples {
margin: 3em 0;
}
/* . Inputs . */
.url-input {
width: 80%;
padding: 0.3em 0.4em;
font-size: 1.5em;
}
.key { /* http://cssdeck.com/labs/apple-keyboard-via-css3 */
display: block;
color: #aaa;
font: bold 18pt Helvetica, sans-serif;
text-decoration: none;
text-align: center;
width: 44px;
height: 41px;
margin: 5px;
background: #eff0f2;
-moz-border-radius: 4px;
border-radius: 4px;
border-top: 1px solid #f5f5f5;
-webkit-box-shadow:
inset 0 0 25px #e8e8e8,
0 1px 0 #c3c3c3,
0 2px 0 #c9c9c9,
0 2px 3px #333;
-moz-box-shadow:
inset 0 0 25px #e8e8e8,
0 1px 0 #c3c3c3,
0 2px 0 #c9c9c9,
0 2px 3px #333;
box-shadow:
inset 0 0 25px #e8e8e8,
0 1px 0 #c3c3c3,
0 2px 0 #c9c9c9,
0 2px 3px #333;
text-shadow: 0px 1px 0px #f5f5f5;
}
.key-input {
border: none;
}
.key-input:hover {
background: #dddee0;
}
/* . Buttons . */
.button {
border-width: 1px;
border-style: solid;
cursor: pointer;
padding: 0.05em 0.4em 0.2em;
position: relative;
top: -0.07em;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 0px 4px 1px 0px rgba(40, 150, 44, 1);
box-shadow: 0px 4px 1px 0px rgba(40, 150, 44, 1);
-webkit-transition: all 150ms linear;
-moz-transition: all 150ms linear;
-o-transition: all 150ms linear;
-ms-transition: all 150ms linear;
transition: all 150ms linear;
}
.button:active {
top: 0;
-webkit-box-shadow: 0px 0px 1px 0px rgba(40, 150, 44, 1);
box-shadow: 0px 0px 1px 0px rgba(40, 150, 44, 1);
}
.button:focus {
outline: none;
}
.button.green {
background-color: #34bf39;
border-color: #2faf34;
color: #eee;
text-shadow: 0px 1px 2px rgba(0,0,0,0.9);
}
.button.green:hover {
background-color: #39d740;
color: #fff;
}
.button.green:active {
background-color: #2ea732;
color: #ddd;
}
.button.green.large {
font-size: 2em;
line-height: 1;
}
|