1
|
1 |
|
|
2 |
|
|
3 |
@font-face {
|
|
4 |
font-family: 'batch';
|
|
5 |
src: url('app://font/batch/batch.svg#batch_iconsregular') format('svg');
|
|
6 |
font-weight: normal;
|
|
7 |
font-style: normal;
|
|
8 |
}
|
0
|
9 |
|
|
10 |
@font-face {
|
|
11 |
font-family: 'exo';
|
1
|
12 |
src: url('app://font/exo/exo-regular.svg#exoregular') format('svg');
|
0
|
13 |
font-weight: normal;
|
|
14 |
font-style: normal;
|
|
15 |
}
|
|
16 |
|
|
17 |
@font-face {
|
|
18 |
font-family: 'exobold';
|
1
|
19 |
src: url('app://font/exo/exo-bold.svg#exoextrabolditalic') format('svg');
|
|
20 |
font-weight: normal;
|
|
21 |
font-style: normal;
|
|
22 |
}
|
|
23 |
|
|
24 |
/* TODO: TideKit 1.4, w/ newer webkit. */
|
|
25 |
/*
|
|
26 |
@font-face {
|
|
27 |
font-family: 'exo';
|
|
28 |
src: url('app://font/exo/exo-regular.eot'),
|
|
29 |
url('app://font/exo/exo-regular.eot?#iefix') format('embedded-opentype'),
|
|
30 |
url('app://font/exo/exo-regular.woff') format('woff'),
|
|
31 |
url('app://font/exo/exo-regular.ttf') format('truetype'),
|
|
32 |
url('app://font/exo/exo-regular.svg#exoregular') format('svg');
|
0
|
33 |
font-weight: normal;
|
|
34 |
font-style: normal;
|
|
35 |
}
|
|
36 |
|
|
37 |
@font-face {
|
1
|
38 |
font-family: 'exobold';
|
|
39 |
src: url('app://font/exo/exo-bold.eot'),
|
|
40 |
url('app://font/exo/exo-bold.eot?#iefix') format('embedded-opentype'),
|
|
41 |
url('app://font/exo/exo-bold.woff') format('woff'),
|
|
42 |
url('app://font/exo/exo-bold.ttf') format('truetype'),
|
|
43 |
url('app://font/exo/exo-bold.svg#exobold') format('svg');
|
0
|
44 |
font-weight: normal;
|
|
45 |
font-style: normal;
|
|
46 |
}
|
1
|
47 |
*/
|
|
48 |
|
|
49 |
/* http://adamwhitcroft.com/batch/ */
|
|
50 |
/*
|
|
51 |
@font-face {
|
|
52 |
font-family: 'batch';
|
|
53 |
src: url('app://font/batch/batch.eot'),
|
|
54 |
url('app://font/batch/batch.eot?#iefix') format('embedded-opentype'),
|
|
55 |
url('app://font/batch/batch.woff') format('woff'),
|
|
56 |
url('app://font/batch/batch.ttf') format('truetype'),
|
|
57 |
url('app://font/batch/batch.svg#batch') format('svg');
|
|
58 |
font-weight: normal;
|
|
59 |
font-style: normal;
|
|
60 |
}
|
|
61 |
*/
|
0
|
62 |
|
|
63 |
a {
|
|
64 |
text-decoration: none;
|
|
65 |
color: inherit !important;
|
|
66 |
}
|
|
67 |
|
|
68 |
.icon {
|
|
69 |
font-family: 'batch';
|
|
70 |
line-height: 1;
|
|
71 |
text-shadow: none;
|
|
72 |
}
|
|
73 |
|
|
74 |
body {
|
|
75 |
background-color: #333;
|
|
76 |
color: #fff;
|
|
77 |
margin: 10px;
|
|
78 |
padding: 0;
|
|
79 |
font-family: "exo", Helvetica, Geneva, sans-serif;
|
|
80 |
font-size: 1em;
|
|
81 |
text-shadow: 2px 2px 2px #000;
|
1
|
82 |
user-select: none;
|
0
|
83 |
}
|
|
84 |
|
|
85 |
fieldset {
|
|
86 |
border: 1px inset #222;
|
|
87 |
border-radius: 5px;
|
|
88 |
background-image: -webkit-gradient( linear, left top, left bottom, color-stop( 0%, #222 ), color-stop( 20%, #303030) );
|
|
89 |
}
|
|
90 |
|
|
91 |
/* button styles */
|
|
92 |
/* ---------------------------------------------- */
|
|
93 |
.button {
|
|
94 |
display: inline-block;
|
|
95 |
vertical-align: baseline;
|
|
96 |
margin: 0 2px;
|
|
97 |
outline: none;
|
|
98 |
cursor: pointer;
|
|
99 |
text-align: center;
|
|
100 |
text-decoration: none;
|
|
101 |
font: 14px/100% Arial, Helvetica, Geneva, sans-serif;
|
|
102 |
padding: .5em 2em .55em;
|
|
103 |
text-shadow: -1px -1px 0 rgba(0,0,0,0.3);
|
|
104 |
box-shadow: 0 1px 2px rgba(0,0,0,.2);
|
|
105 |
border: 1px solid #7d99ca;
|
|
106 |
border-radius: 3px;
|
|
107 |
color: #FFF;
|
|
108 |
background-color: #a5b8da;
|
|
109 |
background-image: -webkit-gradient( linear, left top, left bottom, from(#a5b8da), to(#7089b3) );
|
|
110 |
}
|
|
111 |
|
|
112 |
.button:hover {
|
|
113 |
border: 1px solid #5d7fbc;
|
|
114 |
background-color: #819bcb;
|
|
115 |
background-image: -webkit-gradient( linear, left top, left bottom, from(#819bcb), to(#536f9d) );
|
|
116 |
}
|
|
117 |
|
|
118 |
.button:active {
|
|
119 |
position: relative;
|
|
120 |
top: 1px;
|
|
121 |
}
|
|
122 |
|
|
123 |
|
|
124 |
/* input field styles */
|
|
125 |
/* ---------------------------------------------- */
|
|
126 |
|
|
127 |
::-webkit-input-placeholder { color: #333; }
|
|
128 |
|
|
129 |
input[type="text"],
|
|
130 |
select {
|
|
131 |
font-family: "exo", Helvetica, Geneva, sans-serif;
|
|
132 |
font-size: 0.8em;
|
|
133 |
padding: 2px;
|
|
134 |
background-color: #888;
|
|
135 |
border-top: 1px solid #333;
|
|
136 |
border-right: 1px solid #777;
|
|
137 |
border-bottom: 1px solid #777;
|
|
138 |
border-left: 1px solid #333;
|
|
139 |
color: #000;
|
|
140 |
box-shadow: inset -4px 4px 10px #555;
|
|
141 |
border-radius: 3px;
|
|
142 |
}
|
|
143 |
|
|
144 |
input[type="text"]:active,
|
|
145 |
select:active {
|
|
146 |
border: 1px solid #00ffff;
|
|
147 |
}
|
|
148 |
|
|
149 |
input[type="text"]:focus,
|
|
150 |
select:focus {
|
|
151 |
background-color: #bbb;
|
|
152 |
}
|
|
153 |
|