flat-ui-rails 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +44 -0
- data/Rakefile +1 -0
- data/flat-ui-rails.gemspec +17 -0
- data/lib/flat-ui-rails.rb +8 -0
- data/lib/flat-ui-rails/version.rb +5 -0
- data/update.sh +23 -0
- data/vendor/assets/images/checkbox-2x.png +0 -0
- data/vendor/assets/images/checkbox.png +0 -0
- data/vendor/assets/images/demo/browser-2x.png +0 -0
- data/vendor/assets/images/demo/browser-author.jpg +0 -0
- data/vendor/assets/images/demo/browser-pic-1.jpg +0 -0
- data/vendor/assets/images/demo/browser-pic-2.jpg +0 -0
- data/vendor/assets/images/demo/browser-pic-3.jpg +0 -0
- data/vendor/assets/images/demo/browser-pic-4.jpg +0 -0
- data/vendor/assets/images/demo/browser-pic-5.jpg +0 -0
- data/vendor/assets/images/demo/browser-pic-6.jpg +0 -0
- data/vendor/assets/images/demo/browser.png +0 -0
- data/vendor/assets/images/demo/html-icon.png +0 -0
- data/vendor/assets/images/demo/logo-mask-2x.png +0 -0
- data/vendor/assets/images/demo/logo-mask.png +0 -0
- data/vendor/assets/images/demo/video.jpg +0 -0
- data/vendor/assets/images/favicon.ico +0 -0
- data/vendor/assets/images/footer/logo.png +0 -0
- data/vendor/assets/images/illustrations/bag.png +0 -0
- data/vendor/assets/images/illustrations/book.png +0 -0
- data/vendor/assets/images/illustrations/calendar.png +0 -0
- data/vendor/assets/images/illustrations/clipboard.png +0 -0
- data/vendor/assets/images/illustrations/colors.png +0 -0
- data/vendor/assets/images/illustrations/compass.png +0 -0
- data/vendor/assets/images/illustrations/gift.png +0 -0
- data/vendor/assets/images/illustrations/mail.png +0 -0
- data/vendor/assets/images/illustrations/map.png +0 -0
- data/vendor/assets/images/illustrations/news.png +0 -0
- data/vendor/assets/images/illustrations/paper.png +0 -0
- data/vendor/assets/images/illustrations/settings.png +0 -0
- data/vendor/assets/images/illustrations/share.png +0 -0
- data/vendor/assets/images/illustrations/time.png +0 -0
- data/vendor/assets/images/login/icon.png +0 -0
- data/vendor/assets/images/login/imac-2x.png +0 -0
- data/vendor/assets/images/login/imac.png +0 -0
- data/vendor/assets/images/pager/next.png +0 -0
- data/vendor/assets/images/pager/previous.png +0 -0
- data/vendor/assets/images/radio-2x.png +0 -0
- data/vendor/assets/images/radio.png +0 -0
- data/vendor/assets/images/select/toggle.png +0 -0
- data/vendor/assets/images/tile/ribbon-2x.png +0 -0
- data/vendor/assets/images/tile/ribbon.png +0 -0
- data/vendor/assets/images/todo/done-2x.png +0 -0
- data/vendor/assets/images/todo/done.png +0 -0
- data/vendor/assets/images/todo/search-2x.png +0 -0
- data/vendor/assets/images/todo/search.png +0 -0
- data/vendor/assets/images/todo/todo-2x.png +0 -0
- data/vendor/assets/images/todo/todo.png +0 -0
- data/vendor/assets/images/toggle/block-off.png +0 -0
- data/vendor/assets/images/toggle/block-on.png +0 -0
- data/vendor/assets/images/toggle/icon-off-2x.png +0 -0
- data/vendor/assets/images/toggle/icon-off.png +0 -0
- data/vendor/assets/images/toggle/icon-on-2x.png +0 -0
- data/vendor/assets/images/toggle/icon-on.png +0 -0
- data/vendor/assets/images/video/fullscreen-2x.png +0 -0
- data/vendor/assets/images/video/fullscreen.png +0 -0
- data/vendor/assets/images/video/pause-2x.png +0 -0
- data/vendor/assets/images/video/pause.png +0 -0
- data/vendor/assets/images/video/play-2x.png +0 -0
- data/vendor/assets/images/video/play.png +0 -0
- data/vendor/assets/images/video/poster.jpg +0 -0
- data/vendor/assets/images/video/volume-full-2x.png +0 -0
- data/vendor/assets/images/video/volume-full.png +0 -0
- data/vendor/assets/images/video/volume-off-2x.png +0 -0
- data/vendor/assets/images/video/volume-off.png +0 -0
- data/vendor/assets/stylesheets/flat-ui.css +2524 -0
- metadata +120 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Jakub Arnold
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
# Flat-UI for Rails Asset Pipeline
|
2
|
+
|
3
|
+
[Parsley.js](https://github.com/guillaumepotier/Parsley.js) is an awesome form validation library ([documentation](http://parsleyjs.org/documentation.html)).
|
4
|
+
This gem makes it easy to use it with Rails Asset Pipeline.
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
Add this line to your application's Gemfile:
|
9
|
+
|
10
|
+
gem "parsley-rails"
|
11
|
+
|
12
|
+
And then execute:
|
13
|
+
|
14
|
+
$ bundle
|
15
|
+
|
16
|
+
## Usage
|
17
|
+
|
18
|
+
Add the following to your `app/assets/javascripts/application.js`:
|
19
|
+
|
20
|
+
//= require jquery
|
21
|
+
//= require parsley
|
22
|
+
|
23
|
+
To use the `extend` library, add this right after:
|
24
|
+
|
25
|
+
//= require parsley.extend
|
26
|
+
|
27
|
+
Finally, if you want to use a different i18n:
|
28
|
+
|
29
|
+
//= require parsley.i18n.fr
|
30
|
+
|
31
|
+
See the complete [Parsley.js documentation](http://parsleyjs.org/documentation.html).
|
32
|
+
|
33
|
+
## Versions
|
34
|
+
|
35
|
+
The gem follows Parsley.js's versions. If the gem version is `1.1.10.0`, then `1.1.10` is a version of Parsley.js and `0`
|
36
|
+
is a patch level of the gem itself.
|
37
|
+
|
38
|
+
## Contributing
|
39
|
+
|
40
|
+
1. Fork it
|
41
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
42
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
43
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
44
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "flat-ui-rails/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "flat-ui-rails"
|
8
|
+
gem.version = FlatUi::Rails::VERSION
|
9
|
+
gem.authors = ["Jakub Arnold"]
|
10
|
+
gem.email = ["darthdeus@gmail.com"]
|
11
|
+
gem.description = %q{Flat-UI bundled for Rails Asset Pipeline}
|
12
|
+
gem.summary = %q{Flat-UI bundled for Rails Asset Pipeline}
|
13
|
+
gem.homepage = "https://github.com/darthdeus/flat-ui-rails"
|
14
|
+
|
15
|
+
gem.files = `git ls-files`.split($/)
|
16
|
+
gem.require_paths = ["lib"]
|
17
|
+
end
|
data/update.sh
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
#!/bin/sh
|
2
|
+
|
3
|
+
set -e
|
4
|
+
|
5
|
+
if [ $# -eq 0 ]; then
|
6
|
+
echo "No tag supplied. Usage: ./update.sh master"
|
7
|
+
exit 1
|
8
|
+
fi
|
9
|
+
|
10
|
+
TAG=$1
|
11
|
+
EXTRACT_DIRECTORY="$$$(date "+%Y%m%d%H%M%S")"
|
12
|
+
FILE_NAME="$EXTRACT_DIRECTORY.tar.gz"
|
13
|
+
RELEASE_URL="https://github.com/designmodo/Flat-UI/archive/$TAG.tar.gz"
|
14
|
+
RELEASE_PATH="$EXTRACT_DIRECTORY/flat-ui-$TAG"
|
15
|
+
VENDOR_PATH="vendor/assets"
|
16
|
+
|
17
|
+
wget -O $FILE_NAME $RELEASE_URL
|
18
|
+
mkdir $EXTRACT_DIRECTORY
|
19
|
+
tar xfz $FILE_NAME -C $EXTRACT_DIRECTORY
|
20
|
+
|
21
|
+
cp "$RELEASE_PATH/css/flat-ui.css" "$VENDOR_PATH/stylesheets"
|
22
|
+
cp -R "$RELEASE_PATH/images" $VENDOR_PATH
|
23
|
+
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,2524 @@
|
|
1
|
+
@import url("http://fonts.googleapis.com/css?family=Lato:400,700,900,400italic");
|
2
|
+
@font-face {
|
3
|
+
font-family: "Flat-UI-Icons-16";
|
4
|
+
src: url("../fonts/Flat-UI-Icons-16.eot");
|
5
|
+
src: url("../fonts/Flat-UI-Icons-16.eot?#iefix") format("embedded-opentype"), url("../fonts/Flat-UI-Icons-16.woff") format("woff"), url("../fonts/Flat-UI-Icons-16.ttf") format("truetype"), url("../fonts/Flat-UI-Icons-16.svg#Flat-UI-Icons-16") format("svg");
|
6
|
+
font-weight: normal;
|
7
|
+
font-style: normal; }
|
8
|
+
|
9
|
+
/* Use the following CSS code if you want to use data attributes for inserting your icons */
|
10
|
+
[data-icon]:before {
|
11
|
+
font-family: "Flat-UI-Icons-16";
|
12
|
+
content: attr(data-icon);
|
13
|
+
speak: none;
|
14
|
+
font-weight: normal;
|
15
|
+
line-height: 1;
|
16
|
+
-webkit-font-smoothing: antialiased; }
|
17
|
+
|
18
|
+
/* Use the following CSS code if you want to have a class per icon */
|
19
|
+
/*Instead of a list of all class selectors,
|
20
|
+
*you can use the generic selector below, but it's slower:
|
21
|
+
*[class*="fui-"]:before { */
|
22
|
+
.fui-volume-16:before, .fui-video-16:before, .fui-time-16:before, .fui-settings-16:before, .fui-plus-16:before, .fui-new-16:before, .fui-menu-16:before, .fui-man-16:before, .fui-mail-16:before, .fui-lock-16:before, .fui-location-16:before, .fui-heart-16:before, .fui-eye-16:before, .fui-cross-16:before, .fui-cmd-16:before, .fui-checkround-16:before, .fui-checkmark-16:before, .fui-camera-16:before, .fui-calendar-16:before, .fui-bubble-16:before {
|
23
|
+
font-family: "Flat-UI-Icons-16";
|
24
|
+
speak: none;
|
25
|
+
font-style: normal;
|
26
|
+
font-weight: normal;
|
27
|
+
line-height: 1;
|
28
|
+
-webkit-font-smoothing: antialiased; }
|
29
|
+
|
30
|
+
.fui-volume-16:before {
|
31
|
+
content: "\e000"; }
|
32
|
+
|
33
|
+
.fui-video-16:before {
|
34
|
+
content: "\e001"; }
|
35
|
+
|
36
|
+
.fui-time-16:before {
|
37
|
+
content: "\e002"; }
|
38
|
+
|
39
|
+
.fui-settings-16:before {
|
40
|
+
content: "\e003"; }
|
41
|
+
|
42
|
+
.fui-plus-16:before {
|
43
|
+
content: "\e004"; }
|
44
|
+
|
45
|
+
.fui-new-16:before {
|
46
|
+
content: "\e005"; }
|
47
|
+
|
48
|
+
.fui-menu-16:before {
|
49
|
+
content: "\e006"; }
|
50
|
+
|
51
|
+
.fui-man-16:before {
|
52
|
+
content: "\e007"; }
|
53
|
+
|
54
|
+
.fui-mail-16:before {
|
55
|
+
content: "\e008"; }
|
56
|
+
|
57
|
+
.fui-lock-16:before {
|
58
|
+
content: "\e009"; }
|
59
|
+
|
60
|
+
.fui-location-16:before {
|
61
|
+
content: "\e00a"; }
|
62
|
+
|
63
|
+
.fui-heart-16:before {
|
64
|
+
content: "\e00b"; }
|
65
|
+
|
66
|
+
.fui-eye-16:before {
|
67
|
+
content: "\e00c"; }
|
68
|
+
|
69
|
+
.fui-cross-16:before {
|
70
|
+
content: "\e00d"; }
|
71
|
+
|
72
|
+
.fui-cmd-16:before {
|
73
|
+
content: "\e00e"; }
|
74
|
+
|
75
|
+
.fui-checkround-16:before {
|
76
|
+
content: "\e00f"; }
|
77
|
+
|
78
|
+
.fui-checkmark-16:before {
|
79
|
+
content: "\e010"; }
|
80
|
+
|
81
|
+
.fui-camera-16:before {
|
82
|
+
content: "\e011"; }
|
83
|
+
|
84
|
+
.fui-calendar-16:before {
|
85
|
+
content: "\e012"; }
|
86
|
+
|
87
|
+
.fui-bubble-16:before {
|
88
|
+
content: "\e013"; }
|
89
|
+
|
90
|
+
@font-face {
|
91
|
+
font-family: "Flat-UI-Icons-24";
|
92
|
+
src: url("../fonts/Flat-UI-Icons-24.eot");
|
93
|
+
src: url("../fonts/Flat-UI-Icons-24.eot?#iefix") format("embedded-opentype"), url("../fonts/Flat-UI-Icons-24.woff") format("woff"), url("../fonts/Flat-UI-Icons-24.ttf") format("truetype"), url("../fonts/Flat-UI-Icons-24.svg#Flat-UI-Icons-24") format("svg");
|
94
|
+
font-weight: normal;
|
95
|
+
font-style: normal; }
|
96
|
+
|
97
|
+
/* Use the following CSS code if you want to use data attributes for inserting your icons */
|
98
|
+
[data-icon]:before {
|
99
|
+
font-family: "Flat-UI-Icons-24";
|
100
|
+
content: attr(data-icon);
|
101
|
+
speak: none;
|
102
|
+
font-weight: normal;
|
103
|
+
line-height: 1;
|
104
|
+
-webkit-font-smoothing: antialiased; }
|
105
|
+
|
106
|
+
/* Use the following CSS code if you want to have a class per icon */
|
107
|
+
/*Instead of a list of all class selectors,
|
108
|
+
*you can use the generic selector below, but it's slower:
|
109
|
+
*[class*="fui-"]:before { */
|
110
|
+
.fui-video-24:before, .fui-time-24:before, .fui-settings-24:before, .fui-plus-24:before, .fui-new-24:before, .fui-menu-24:before, .fui-man-24:before, .fui-mail-24:before, .fui-lock-24:before, .fui-location-24:before, .fui-heart-24:before, .fui-eye-24:before, .fui-cross-24:before, .fui-cmd-24:before, .fui-checkround-24:before, .fui-checkmark-24:before, .fui-calendar-24:before, .fui-bubble-24:before, .fui-volume-24:before, .fui-camera-24:before {
|
111
|
+
font-family: "Flat-UI-Icons-24";
|
112
|
+
speak: none;
|
113
|
+
font-style: normal;
|
114
|
+
font-weight: normal;
|
115
|
+
line-height: 1;
|
116
|
+
-webkit-font-smoothing: antialiased; }
|
117
|
+
|
118
|
+
.fui-video-24:before {
|
119
|
+
content: "\e000"; }
|
120
|
+
|
121
|
+
.fui-time-24:before {
|
122
|
+
content: "\e001"; }
|
123
|
+
|
124
|
+
.fui-settings-24:before {
|
125
|
+
content: "\e002"; }
|
126
|
+
|
127
|
+
.fui-plus-24:before {
|
128
|
+
content: "\e003"; }
|
129
|
+
|
130
|
+
.fui-new-24:before {
|
131
|
+
content: "\e005"; }
|
132
|
+
|
133
|
+
.fui-menu-24:before {
|
134
|
+
content: "\e006"; }
|
135
|
+
|
136
|
+
.fui-man-24:before {
|
137
|
+
content: "\e007"; }
|
138
|
+
|
139
|
+
.fui-mail-24:before {
|
140
|
+
content: "\e008"; }
|
141
|
+
|
142
|
+
.fui-lock-24:before {
|
143
|
+
content: "\e009"; }
|
144
|
+
|
145
|
+
.fui-location-24:before {
|
146
|
+
content: "\e00a"; }
|
147
|
+
|
148
|
+
.fui-heart-24:before {
|
149
|
+
content: "\e00b"; }
|
150
|
+
|
151
|
+
.fui-eye-24:before {
|
152
|
+
content: "\e00c"; }
|
153
|
+
|
154
|
+
.fui-cross-24:before {
|
155
|
+
content: "\e00d"; }
|
156
|
+
|
157
|
+
.fui-cmd-24:before {
|
158
|
+
content: "\e00e"; }
|
159
|
+
|
160
|
+
.fui-checkround-24:before {
|
161
|
+
content: "\e00f"; }
|
162
|
+
|
163
|
+
.fui-checkmark-24:before {
|
164
|
+
content: "\e010"; }
|
165
|
+
|
166
|
+
.fui-calendar-24:before {
|
167
|
+
content: "\e011"; }
|
168
|
+
|
169
|
+
.fui-bubble-24:before {
|
170
|
+
content: "\e012"; }
|
171
|
+
|
172
|
+
.fui-volume-24:before {
|
173
|
+
content: "\e013"; }
|
174
|
+
|
175
|
+
.fui-camera-24:before {
|
176
|
+
content: "\e004"; }
|
177
|
+
|
178
|
+
body {
|
179
|
+
color: #34495e;
|
180
|
+
font: 14px/1.231 "Lato", sans-serif; }
|
181
|
+
|
182
|
+
a {
|
183
|
+
color: #1abc9c;
|
184
|
+
text-decoration: underline;
|
185
|
+
-webkit-transition: 0.25s;
|
186
|
+
-moz-transition: 0.25s;
|
187
|
+
-o-transition: 0.25s;
|
188
|
+
transition: 0.25s;
|
189
|
+
-webkit-backface-visibility: hidden; }
|
190
|
+
a:hover {
|
191
|
+
color: #2ecc71;
|
192
|
+
text-decoration: none; }
|
193
|
+
|
194
|
+
h1 {
|
195
|
+
font-size: 32px;
|
196
|
+
font-weight: 900; }
|
197
|
+
|
198
|
+
h2 {
|
199
|
+
font-size: 26px;
|
200
|
+
font-weight: 700;
|
201
|
+
margin-bottom: 2px; }
|
202
|
+
|
203
|
+
h3 {
|
204
|
+
font-size: 24px;
|
205
|
+
font-weight: 700;
|
206
|
+
margin-bottom: 4px;
|
207
|
+
margin-top: 2px; }
|
208
|
+
|
209
|
+
h4 {
|
210
|
+
font-size: 18px;
|
211
|
+
font-weight: 500;
|
212
|
+
margin-top: 4px; }
|
213
|
+
|
214
|
+
h5 {
|
215
|
+
font-size: 16px;
|
216
|
+
font-weight: 500;
|
217
|
+
text-transform: uppercase; }
|
218
|
+
|
219
|
+
h6 {
|
220
|
+
font-size: 13px;
|
221
|
+
font-weight: 500;
|
222
|
+
text-transform: uppercase; }
|
223
|
+
|
224
|
+
.btn {
|
225
|
+
border: none;
|
226
|
+
background: #34495e;
|
227
|
+
color: white;
|
228
|
+
font-size: 16.5px;
|
229
|
+
text-decoration: none;
|
230
|
+
text-shadow: none;
|
231
|
+
-webkit-box-shadow: none;
|
232
|
+
-moz-box-shadow: none;
|
233
|
+
box-shadow: none;
|
234
|
+
-webkit-transition: 0.25s;
|
235
|
+
-moz-transition: 0.25s;
|
236
|
+
-o-transition: 0.25s;
|
237
|
+
transition: 0.25s;
|
238
|
+
-webkit-backface-visibility: hidden; }
|
239
|
+
.btn:hover, .btn:focus {
|
240
|
+
background-color: #4e6d8d;
|
241
|
+
color: white;
|
242
|
+
-webkit-transition: 0.25s;
|
243
|
+
-moz-transition: 0.25s;
|
244
|
+
-o-transition: 0.25s;
|
245
|
+
transition: 0.25s;
|
246
|
+
-webkit-backface-visibility: hidden; }
|
247
|
+
.btn:active, .btn.active {
|
248
|
+
background-color: #2c3e50;
|
249
|
+
color: rgba(255, 255, 255, 0.75);
|
250
|
+
-webkit-box-shadow: none;
|
251
|
+
-moz-box-shadow: none;
|
252
|
+
box-shadow: none; }
|
253
|
+
.btn.disabled, .btn[disabled] {
|
254
|
+
background-color: #95a5a6;
|
255
|
+
color: white; }
|
256
|
+
.btn.btn-large {
|
257
|
+
padding-bottom: 12px;
|
258
|
+
padding-top: 13px; }
|
259
|
+
.btn.btn-primary {
|
260
|
+
background-color: #1abc9c; }
|
261
|
+
.btn.btn-primary:hover, .btn.btn-primary:focus {
|
262
|
+
background-color: #2fe2bf; }
|
263
|
+
.btn.btn-primary:active, .btn.btn-primary.active {
|
264
|
+
background-color: #16a085; }
|
265
|
+
.btn.btn-info {
|
266
|
+
background-color: #3498db; }
|
267
|
+
.btn.btn-info:hover, .btn.btn-info:focus {
|
268
|
+
background-color: #5dade2; }
|
269
|
+
.btn.btn-info:active, .btn.btn-info.active {
|
270
|
+
background-color: #2383c4; }
|
271
|
+
.btn.btn-danger {
|
272
|
+
background-color: #e74c3c; }
|
273
|
+
.btn.btn-danger:hover, .btn.btn-danger:focus {
|
274
|
+
background-color: #ec7063; }
|
275
|
+
.btn.btn-danger:active, .btn.btn-danger.active {
|
276
|
+
background-color: #dc2d1b; }
|
277
|
+
.btn.btn-success {
|
278
|
+
background-color: #2ecc71; }
|
279
|
+
.btn.btn-success:hover, .btn.btn-success:focus {
|
280
|
+
background-color: #55d98d; }
|
281
|
+
.btn.btn-success:active, .btn.btn-success.active {
|
282
|
+
background-color: #27ad60; }
|
283
|
+
.btn.btn-warning {
|
284
|
+
background-color: #f1c40f; }
|
285
|
+
.btn.btn-warning:hover, .btn.btn-warning:focus {
|
286
|
+
background-color: #f4d03f; }
|
287
|
+
.btn.btn-warning:active, .btn.btn-warning.active {
|
288
|
+
background-color: #cea70c; }
|
289
|
+
.btn-toolbar .btn {
|
290
|
+
font-size: 18px;
|
291
|
+
padding: 10px 14px 9px; }
|
292
|
+
.btn-toolbar .btn:first-child {
|
293
|
+
-webkit-border-radius: 6px 0 0 6px;
|
294
|
+
-moz-border-radius: 6px 0 0 6px;
|
295
|
+
border-radius: 6px 0 0 6px; }
|
296
|
+
.btn-toolbar .btn:last-child {
|
297
|
+
-webkit-border-radius: 0 6px 6px 0;
|
298
|
+
-moz-border-radius: 0 6px 6px 0;
|
299
|
+
border-radius: 0 6px 6px 0; }
|
300
|
+
|
301
|
+
.btn-toolbar .btn.active {
|
302
|
+
color: white; }
|
303
|
+
|
304
|
+
.demo-headline {
|
305
|
+
padding: 73px 0 110px;
|
306
|
+
text-align: center; }
|
307
|
+
|
308
|
+
.demo-logo {
|
309
|
+
font-size: 90px;
|
310
|
+
font-weight: 900;
|
311
|
+
letter-spacing: -2px;
|
312
|
+
line-height: 100px; }
|
313
|
+
.demo-logo .logo {
|
314
|
+
background: url("../images/demo/logo-mask.png") center 0 no-repeat;
|
315
|
+
background-size: 256px 186px;
|
316
|
+
height: 186px;
|
317
|
+
margin: 0 auto 26px;
|
318
|
+
overflow: hidden;
|
319
|
+
text-indent: -9999em;
|
320
|
+
width: 256px; }
|
321
|
+
.demo-logo small {
|
322
|
+
color: rgba(52, 73, 94, 0.3);
|
323
|
+
display: block;
|
324
|
+
font-size: 22px;
|
325
|
+
font-weight: 700;
|
326
|
+
letter-spacing: -1px;
|
327
|
+
padding-top: 5px; }
|
328
|
+
|
329
|
+
.demo-row {
|
330
|
+
margin-bottom: 20px; }
|
331
|
+
|
332
|
+
.demo-panel-title {
|
333
|
+
margin-bottom: 20px;
|
334
|
+
padding-top: 20px; }
|
335
|
+
.demo-panel-title small {
|
336
|
+
color: #bfc1c3;
|
337
|
+
font-size: inherit;
|
338
|
+
font-weight: 400; }
|
339
|
+
|
340
|
+
.demo-navigation {
|
341
|
+
margin-bottom: -4px;
|
342
|
+
margin-top: -10px; }
|
343
|
+
|
344
|
+
.demo-pager {
|
345
|
+
margin-top: -10px; }
|
346
|
+
|
347
|
+
.demo-tooltips {
|
348
|
+
height: 126px; }
|
349
|
+
.demo-tooltips .tooltip {
|
350
|
+
left: -8px !important;
|
351
|
+
position: relative !important;
|
352
|
+
top: -8px !important; }
|
353
|
+
|
354
|
+
.demo-headings {
|
355
|
+
margin-bottom: 12px; }
|
356
|
+
|
357
|
+
.demo-tiles {
|
358
|
+
margin-bottom: 46px; }
|
359
|
+
|
360
|
+
.demo-icons {
|
361
|
+
margin-bottom: 115px; }
|
362
|
+
|
363
|
+
.demo-icons-24 {
|
364
|
+
font-size: 24px;
|
365
|
+
margin-bottom: 38px;
|
366
|
+
position: relative; }
|
367
|
+
.demo-icons-24 span {
|
368
|
+
margin: 0 0 0 18px; }
|
369
|
+
.demo-icons-24 span:first-child {
|
370
|
+
margin-left: 0; }
|
371
|
+
|
372
|
+
.demo-icons-16 {
|
373
|
+
font-size: 16px;
|
374
|
+
margin: 0 0 38px 5px;
|
375
|
+
position: relative; }
|
376
|
+
.demo-icons-16 span {
|
377
|
+
margin: 0 0 0 28px; }
|
378
|
+
.demo-icons-16 span:first-child {
|
379
|
+
margin-left: 0; }
|
380
|
+
|
381
|
+
.demo-icons-tooltip {
|
382
|
+
bottom: 0;
|
383
|
+
color: #b9c8d8;
|
384
|
+
font-size: 12px;
|
385
|
+
left: 100%;
|
386
|
+
margin-left: 0 !important;
|
387
|
+
position: absolute;
|
388
|
+
width: 80px; }
|
389
|
+
|
390
|
+
.demo-illustrations {
|
391
|
+
margin-bottom: 45px; }
|
392
|
+
.demo-illustrations img {
|
393
|
+
height: 100px;
|
394
|
+
margin-left: 35px;
|
395
|
+
width: 100px;
|
396
|
+
vertical-align: bottom; }
|
397
|
+
.demo-illustrations img.big-illustration {
|
398
|
+
height: 111px;
|
399
|
+
width: 112px; }
|
400
|
+
.demo-illustrations img:first-child {
|
401
|
+
margin-left: 0; }
|
402
|
+
|
403
|
+
.demo-samples {
|
404
|
+
margin-bottom: 46px; }
|
405
|
+
|
406
|
+
.demo-video {
|
407
|
+
border-radius: 6px;
|
408
|
+
padding-top: 95px; }
|
409
|
+
|
410
|
+
.demo-download-section {
|
411
|
+
float: none;
|
412
|
+
margin: 0 auto;
|
413
|
+
padding: 60px 0 90px 20px;
|
414
|
+
text-align: center; }
|
415
|
+
.demo-download-section [class*='fui-'] {
|
416
|
+
margin: 3px 0 -3px; }
|
417
|
+
|
418
|
+
.demo-download {
|
419
|
+
background-color: #e8edf2;
|
420
|
+
border-radius: 50%;
|
421
|
+
height: 120px;
|
422
|
+
margin: 0 auto 32px;
|
423
|
+
padding: 40px 28px 30px 32px;
|
424
|
+
text-align: center;
|
425
|
+
width: 130px; }
|
426
|
+
.demo-download img {
|
427
|
+
height: 104px;
|
428
|
+
width: 82px; }
|
429
|
+
|
430
|
+
.demo-download-text {
|
431
|
+
font-size: 15px;
|
432
|
+
padding: 20px 0;
|
433
|
+
text-align: center; }
|
434
|
+
|
435
|
+
.demo-text-box a:hover {
|
436
|
+
color: #1abc9c; }
|
437
|
+
|
438
|
+
.demo-browser {
|
439
|
+
background: #2c3e50 url("../images/demo/browser.png") 0 0 no-repeat;
|
440
|
+
background-size: 659px 42px;
|
441
|
+
border-radius: 0 0 6px 6px;
|
442
|
+
color: white;
|
443
|
+
margin: 0 41px 140px 0;
|
444
|
+
padding-top: 42px; }
|
445
|
+
|
446
|
+
.demo-browser-side {
|
447
|
+
float: left;
|
448
|
+
padding: 22px 20px;
|
449
|
+
width: 111px; }
|
450
|
+
.demo-browser-side > h5 {
|
451
|
+
margin-bottom: 3px;
|
452
|
+
text-transform: none; }
|
453
|
+
.demo-browser-side > h6 {
|
454
|
+
font-size: 11px;
|
455
|
+
font-weight: 300;
|
456
|
+
line-height: 18px;
|
457
|
+
margin-top: 3px;
|
458
|
+
text-transform: none; }
|
459
|
+
|
460
|
+
.demo-browser-author {
|
461
|
+
background: url("../images/demo/browser-author.jpg") center center no-repeat;
|
462
|
+
border: 3px solid white;
|
463
|
+
display: block;
|
464
|
+
height: 84px;
|
465
|
+
margin: 0 auto;
|
466
|
+
width: 84px;
|
467
|
+
-webkit-border-radius: 50%;
|
468
|
+
-moz-border-radius: 50%;
|
469
|
+
border-radius: 50%; }
|
470
|
+
|
471
|
+
.demo-browser-action {
|
472
|
+
padding: 30px 0 12px; }
|
473
|
+
.demo-browser-action > .btn {
|
474
|
+
padding: 9px 0 10px 11px;
|
475
|
+
text-align: left;
|
476
|
+
-webkit-border-radius: 3px;
|
477
|
+
-moz-border-radius: 3px;
|
478
|
+
border-radius: 3px; }
|
479
|
+
.demo-browser-action > .btn:before {
|
480
|
+
color: white;
|
481
|
+
content: "\e004";
|
482
|
+
font-size: 16px;
|
483
|
+
font-family: "Flat-UI-Icons-16";
|
484
|
+
font-weight: 300;
|
485
|
+
margin-right: 12px;
|
486
|
+
position: relative;
|
487
|
+
top: 1px;
|
488
|
+
-webkit-font-smoothing: antialiased; }
|
489
|
+
|
490
|
+
.demo-browser-content {
|
491
|
+
background-color: #34495e;
|
492
|
+
border-radius: 0 0 6px;
|
493
|
+
overflow: hidden;
|
494
|
+
padding: 21px 0 0 20px; }
|
495
|
+
.demo-browser-content > img {
|
496
|
+
border: 6px solid white;
|
497
|
+
float: left;
|
498
|
+
margin: 0 15px 20px 0;
|
499
|
+
width: 134px; }
|
500
|
+
|
501
|
+
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 3 / 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 2) {
|
502
|
+
.logo {
|
503
|
+
background-image: url("../images/demo/logo-mask-2x.png"); }
|
504
|
+
|
505
|
+
.demo-browser {
|
506
|
+
background-image: url("../images/demo/browser-2x.png"); } }
|
507
|
+
.navbar {
|
508
|
+
font-size: 18px; }
|
509
|
+
.navbar .brand {
|
510
|
+
color: #1abc9c;
|
511
|
+
font-size: inherit;
|
512
|
+
font-weight: 700;
|
513
|
+
padding-bottom: 16px;
|
514
|
+
padding-top: 15px; }
|
515
|
+
.navbar .nav > li:hover > ul {
|
516
|
+
top: 100%; }
|
517
|
+
.navbar .nav > li > ul {
|
518
|
+
padding-top: 13px;
|
519
|
+
top: 80%;
|
520
|
+
background-color: white\9; }
|
521
|
+
.navbar .nav > li > ul:before {
|
522
|
+
content: "";
|
523
|
+
border-style: solid;
|
524
|
+
border-width: 0 9px 9px 9px;
|
525
|
+
border-color: transparent transparent #34495e transparent;
|
526
|
+
height: 0px;
|
527
|
+
position: absolute;
|
528
|
+
left: 15px;
|
529
|
+
top: 5px;
|
530
|
+
width: 0px;
|
531
|
+
-webkit-transform: rotate(360deg); }
|
532
|
+
.navbar .nav > li > ul li:hover ul {
|
533
|
+
opacity: 1;
|
534
|
+
-webkit-transform: scale(1, 1);
|
535
|
+
display: block\9; }
|
536
|
+
.navbar .nav > li > ul li ul {
|
537
|
+
left: 100%; }
|
538
|
+
.navbar .nav > li > a {
|
539
|
+
padding: 14px 15px 17px; }
|
540
|
+
.navbar .nav > li > a:hover {
|
541
|
+
color: #1abc9c; }
|
542
|
+
.navbar .nav li {
|
543
|
+
position: relative; }
|
544
|
+
.navbar .nav li:hover > ul {
|
545
|
+
opacity: 1;
|
546
|
+
z-index: 100;
|
547
|
+
-webkit-transform: scale(1, 1);
|
548
|
+
display: block\9; }
|
549
|
+
.navbar .nav ul {
|
550
|
+
border-radius: 4px;
|
551
|
+
left: 15px;
|
552
|
+
list-style-type: none;
|
553
|
+
margin-left: 0;
|
554
|
+
opacity: 0;
|
555
|
+
position: absolute;
|
556
|
+
top: 0;
|
557
|
+
width: 234px;
|
558
|
+
z-index: -100;
|
559
|
+
-webkit-transform: scale(1, 0.99);
|
560
|
+
-webkit-transform-origin: 0 0;
|
561
|
+
display: none\9;
|
562
|
+
-webkit-transition: 0.3s ease-out;
|
563
|
+
-moz-transition: 0.3s ease-out;
|
564
|
+
-o-transition: 0.3s ease-out;
|
565
|
+
transition: 0.3s ease-out;
|
566
|
+
-webkit-backface-visibility: hidden; }
|
567
|
+
.navbar .nav ul ul {
|
568
|
+
left: 95%;
|
569
|
+
padding-left: 5px; }
|
570
|
+
.navbar .nav ul li {
|
571
|
+
background-color: #34495e;
|
572
|
+
padding: 0 3px 3px; }
|
573
|
+
.navbar .nav ul li:first-child {
|
574
|
+
border-radius: 4px 4px 0 0;
|
575
|
+
padding-top: 3px; }
|
576
|
+
.navbar .nav ul li:last-child {
|
577
|
+
border-radius: 0 0 4px 4px; }
|
578
|
+
.navbar .nav ul li.active > a, .navbar .nav ul li.active > a:hover {
|
579
|
+
background-color: #1abc9c;
|
580
|
+
color: white; }
|
581
|
+
.navbar .nav ul a {
|
582
|
+
border-radius: 2px;
|
583
|
+
color: white;
|
584
|
+
display: block;
|
585
|
+
font-size: 14px;
|
586
|
+
padding: 6px 9px;
|
587
|
+
text-decoration: none; }
|
588
|
+
.navbar .nav ul a:hover {
|
589
|
+
background-color: #1abc9c; }
|
590
|
+
|
591
|
+
.navbar-inner {
|
592
|
+
border: none;
|
593
|
+
padding-left: 4px;
|
594
|
+
padding-right: 4px;
|
595
|
+
-webkit-border-radius: 6px;
|
596
|
+
-moz-border-radius: 6px;
|
597
|
+
border-radius: 6px;
|
598
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); }
|
599
|
+
|
600
|
+
.navbar-inverse .navbar-inner {
|
601
|
+
background: #34495e;
|
602
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); }
|
603
|
+
.navbar-inverse .nav > li > a {
|
604
|
+
color: white; }
|
605
|
+
.navbar-inverse .nav .active > a, .navbar-inverse .nav .active > a:hover, .navbar-inverse .nav .active > a:focus {
|
606
|
+
background-color: transparent;
|
607
|
+
color: #1abc9c;
|
608
|
+
-webkit-box-shadow: none;
|
609
|
+
-moz-box-shadow: none;
|
610
|
+
box-shadow: none; }
|
611
|
+
|
612
|
+
.navbar-unread {
|
613
|
+
background-color: #e74c3c;
|
614
|
+
border-radius: 30px;
|
615
|
+
color: white;
|
616
|
+
display: none;
|
617
|
+
font-size: 12px;
|
618
|
+
font-weight: 500;
|
619
|
+
line-height: 18px;
|
620
|
+
min-width: 8px;
|
621
|
+
padding: 0 5px;
|
622
|
+
position: absolute;
|
623
|
+
right: -7px;
|
624
|
+
text-align: center;
|
625
|
+
text-shadow: none;
|
626
|
+
top: 8px;
|
627
|
+
z-index: 10; }
|
628
|
+
.active .navbar-unread {
|
629
|
+
display: block; }
|
630
|
+
|
631
|
+
.dk_container {
|
632
|
+
cursor: pointer;
|
633
|
+
font-size: 14px;
|
634
|
+
margin-bottom: 10px;
|
635
|
+
outline: none; }
|
636
|
+
|
637
|
+
.dk_toggle {
|
638
|
+
background-color: #1abc9c;
|
639
|
+
color: white;
|
640
|
+
border-radius: 6px;
|
641
|
+
overflow: hidden;
|
642
|
+
padding: 11px 45px 11px 13px;
|
643
|
+
text-decoration: none;
|
644
|
+
white-space: nowrap;
|
645
|
+
-webkit-transition: 0.25s;
|
646
|
+
-moz-transition: 0.25s;
|
647
|
+
-o-transition: 0.25s;
|
648
|
+
transition: 0.25s;
|
649
|
+
-webkit-backface-visibility: hidden; }
|
650
|
+
.dk_toggle:hover, .dk_toggle:focus, .dk_focus .dk_toggle {
|
651
|
+
background-color: #2fe2bf;
|
652
|
+
color: white;
|
653
|
+
outline: none; }
|
654
|
+
.dk_toggle:active {
|
655
|
+
background-color: #16a085;
|
656
|
+
outline: none; }
|
657
|
+
.dk_toggle:active .select-icon {
|
658
|
+
border-left-color: transparent; }
|
659
|
+
|
660
|
+
.select-icon {
|
661
|
+
background: #1abc9c url("../images/select/toggle.png") no-repeat right center;
|
662
|
+
border-left: 2px solid rgba(52, 73, 94, 0.15);
|
663
|
+
border-radius: 0 6px 6px 0;
|
664
|
+
height: 100%;
|
665
|
+
position: absolute;
|
666
|
+
right: 0;
|
667
|
+
top: 0;
|
668
|
+
width: 42px;
|
669
|
+
-webkit-transition: 0.25s;
|
670
|
+
-moz-transition: 0.25s;
|
671
|
+
-o-transition: 0.25s;
|
672
|
+
transition: 0.25s;
|
673
|
+
-webkit-backface-visibility: hidden; }
|
674
|
+
|
675
|
+
.dk_open {
|
676
|
+
z-index: 10; }
|
677
|
+
.dk_open .dk_toggle {
|
678
|
+
background-color: #1abc9c; }
|
679
|
+
.dk_open .dk_toggle .select-icon {
|
680
|
+
background-color: #16a085;
|
681
|
+
border-left-color: transparent; }
|
682
|
+
|
683
|
+
.dk_options {
|
684
|
+
padding-top: 14px; }
|
685
|
+
.dk_options:before {
|
686
|
+
content: "";
|
687
|
+
border-style: solid;
|
688
|
+
border-width: 0 9px 9px 9px;
|
689
|
+
border-color: transparent transparent #34495e transparent;
|
690
|
+
height: 0px;
|
691
|
+
position: absolute;
|
692
|
+
left: 15px;
|
693
|
+
top: 5px;
|
694
|
+
width: 0px;
|
695
|
+
-webkit-transform: rotate(360deg); }
|
696
|
+
.dk_options:before {
|
697
|
+
left: auto;
|
698
|
+
right: 12px; }
|
699
|
+
.dk_options li {
|
700
|
+
padding-bottom: 3px; }
|
701
|
+
.dk_options a {
|
702
|
+
border-radius: 3px;
|
703
|
+
color: white;
|
704
|
+
display: block;
|
705
|
+
padding: 5px 9px;
|
706
|
+
text-decoration: none; }
|
707
|
+
.dk_options a:hover {
|
708
|
+
background-color: #1abc9c; }
|
709
|
+
|
710
|
+
.dk_option_current a {
|
711
|
+
background-color: #1abc9c; }
|
712
|
+
|
713
|
+
.dk_options_inner {
|
714
|
+
background-color: #34495e;
|
715
|
+
border-radius: 5px;
|
716
|
+
margin: 0;
|
717
|
+
max-height: 244px;
|
718
|
+
padding: 3px 3px 0; }
|
719
|
+
|
720
|
+
.dk_touch .dk_options {
|
721
|
+
max-height: 250px; }
|
722
|
+
|
723
|
+
.dk_container {
|
724
|
+
display: none;
|
725
|
+
position: relative;
|
726
|
+
vertical-align: middle; }
|
727
|
+
.dk_container.dk_shown {
|
728
|
+
display: inline-block;
|
729
|
+
zoom: 1;
|
730
|
+
*display: inline; }
|
731
|
+
.dk_container[class*="span"] {
|
732
|
+
float: none;
|
733
|
+
margin-left: 0; }
|
734
|
+
|
735
|
+
.dk_toggle {
|
736
|
+
display: block;
|
737
|
+
position: relative; }
|
738
|
+
|
739
|
+
.dk_open {
|
740
|
+
position: relative; }
|
741
|
+
.dk_open .dk_options {
|
742
|
+
margin-top: -1px;
|
743
|
+
opacity: 1;
|
744
|
+
z-index: 10;
|
745
|
+
display: block\9; }
|
746
|
+
.dk_open .dk_label {
|
747
|
+
color: inherit; }
|
748
|
+
|
749
|
+
.dk_options {
|
750
|
+
margin-top: -21px;
|
751
|
+
position: absolute;
|
752
|
+
left: 0;
|
753
|
+
opacity: 0;
|
754
|
+
width: 220px;
|
755
|
+
z-index: -100;
|
756
|
+
display: none\9;
|
757
|
+
-webkit-transition: 0.3s ease-out;
|
758
|
+
-moz-transition: 0.3s ease-out;
|
759
|
+
-o-transition: 0.3s ease-out;
|
760
|
+
transition: 0.3s ease-out;
|
761
|
+
-webkit-backface-visibility: hidden; }
|
762
|
+
.select-right .dk_options {
|
763
|
+
left: auto;
|
764
|
+
right: 0; }
|
765
|
+
.dk_options a {
|
766
|
+
display: block; }
|
767
|
+
|
768
|
+
.dk_options_inner {
|
769
|
+
overflow: auto;
|
770
|
+
outline: none;
|
771
|
+
position: relative; }
|
772
|
+
|
773
|
+
.dk_touch .dk_options {
|
774
|
+
overflow: hidden; }
|
775
|
+
.dk_touch .dk_options_inner {
|
776
|
+
max-height: none;
|
777
|
+
overflow: visible; }
|
778
|
+
|
779
|
+
.dk_fouc select {
|
780
|
+
position: relative;
|
781
|
+
top: -99999em;
|
782
|
+
visibility: hidden; }
|
783
|
+
|
784
|
+
textarea,
|
785
|
+
input[type="text"],
|
786
|
+
input[type="password"],
|
787
|
+
input[type="datetime"],
|
788
|
+
input[type="datetime-local"],
|
789
|
+
input[type="date"],
|
790
|
+
input[type="month"],
|
791
|
+
input[type="time"],
|
792
|
+
input[type="week"],
|
793
|
+
input[type="number"],
|
794
|
+
input[type="email"],
|
795
|
+
input[type="url"],
|
796
|
+
input[type="search"],
|
797
|
+
input[type="tel"],
|
798
|
+
input[type="color"],
|
799
|
+
.uneditable-input {
|
800
|
+
border: 2px solid #dce4ec;
|
801
|
+
color: #34495e;
|
802
|
+
font-family: "Lato", sans-serif;
|
803
|
+
font-size: 14px;
|
804
|
+
padding: 8px 0 9px 10px;
|
805
|
+
text-indent: 1px;
|
806
|
+
-webkit-border-radius: 6px;
|
807
|
+
-moz-border-radius: 6px;
|
808
|
+
border-radius: 6px;
|
809
|
+
-webkit-box-shadow: none;
|
810
|
+
-moz-box-shadow: none;
|
811
|
+
box-shadow: none; }
|
812
|
+
textarea:-moz-placeholder,
|
813
|
+
input[type="text"]:-moz-placeholder,
|
814
|
+
input[type="password"]:-moz-placeholder,
|
815
|
+
input[type="datetime"]:-moz-placeholder,
|
816
|
+
input[type="datetime-local"]:-moz-placeholder,
|
817
|
+
input[type="date"]:-moz-placeholder,
|
818
|
+
input[type="month"]:-moz-placeholder,
|
819
|
+
input[type="time"]:-moz-placeholder,
|
820
|
+
input[type="week"]:-moz-placeholder,
|
821
|
+
input[type="number"]:-moz-placeholder,
|
822
|
+
input[type="email"]:-moz-placeholder,
|
823
|
+
input[type="url"]:-moz-placeholder,
|
824
|
+
input[type="search"]:-moz-placeholder,
|
825
|
+
input[type="tel"]:-moz-placeholder,
|
826
|
+
input[type="color"]:-moz-placeholder,
|
827
|
+
.uneditable-input:-moz-placeholder {
|
828
|
+
color: #acb6c0; }
|
829
|
+
textarea::-webkit-input-placeholder,
|
830
|
+
input[type="text"]::-webkit-input-placeholder,
|
831
|
+
input[type="password"]::-webkit-input-placeholder,
|
832
|
+
input[type="datetime"]::-webkit-input-placeholder,
|
833
|
+
input[type="datetime-local"]::-webkit-input-placeholder,
|
834
|
+
input[type="date"]::-webkit-input-placeholder,
|
835
|
+
input[type="month"]::-webkit-input-placeholder,
|
836
|
+
input[type="time"]::-webkit-input-placeholder,
|
837
|
+
input[type="week"]::-webkit-input-placeholder,
|
838
|
+
input[type="number"]::-webkit-input-placeholder,
|
839
|
+
input[type="email"]::-webkit-input-placeholder,
|
840
|
+
input[type="url"]::-webkit-input-placeholder,
|
841
|
+
input[type="search"]::-webkit-input-placeholder,
|
842
|
+
input[type="tel"]::-webkit-input-placeholder,
|
843
|
+
input[type="color"]::-webkit-input-placeholder,
|
844
|
+
.uneditable-input::-webkit-input-placeholder {
|
845
|
+
color: #acb6c0; }
|
846
|
+
textarea.placeholder,
|
847
|
+
input[type="text"].placeholder,
|
848
|
+
input[type="password"].placeholder,
|
849
|
+
input[type="datetime"].placeholder,
|
850
|
+
input[type="datetime-local"].placeholder,
|
851
|
+
input[type="date"].placeholder,
|
852
|
+
input[type="month"].placeholder,
|
853
|
+
input[type="time"].placeholder,
|
854
|
+
input[type="week"].placeholder,
|
855
|
+
input[type="number"].placeholder,
|
856
|
+
input[type="email"].placeholder,
|
857
|
+
input[type="url"].placeholder,
|
858
|
+
input[type="search"].placeholder,
|
859
|
+
input[type="tel"].placeholder,
|
860
|
+
input[type="color"].placeholder,
|
861
|
+
.uneditable-input.placeholder {
|
862
|
+
color: #acb6c0; }
|
863
|
+
textarea:focus,
|
864
|
+
input[type="text"]:focus,
|
865
|
+
input[type="password"]:focus,
|
866
|
+
input[type="datetime"]:focus,
|
867
|
+
input[type="datetime-local"]:focus,
|
868
|
+
input[type="date"]:focus,
|
869
|
+
input[type="month"]:focus,
|
870
|
+
input[type="time"]:focus,
|
871
|
+
input[type="week"]:focus,
|
872
|
+
input[type="number"]:focus,
|
873
|
+
input[type="email"]:focus,
|
874
|
+
input[type="url"]:focus,
|
875
|
+
input[type="search"]:focus,
|
876
|
+
input[type="tel"]:focus,
|
877
|
+
input[type="color"]:focus,
|
878
|
+
.uneditable-input:focus {
|
879
|
+
border-color: #1abc9c;
|
880
|
+
-webkit-box-shadow: none;
|
881
|
+
-moz-box-shadow: none;
|
882
|
+
box-shadow: none; }
|
883
|
+
.control-group.error textarea, .control-group.error
|
884
|
+
input[type="text"], .control-group.error
|
885
|
+
input[type="password"], .control-group.error
|
886
|
+
input[type="datetime"], .control-group.error
|
887
|
+
input[type="datetime-local"], .control-group.error
|
888
|
+
input[type="date"], .control-group.error
|
889
|
+
input[type="month"], .control-group.error
|
890
|
+
input[type="time"], .control-group.error
|
891
|
+
input[type="week"], .control-group.error
|
892
|
+
input[type="number"], .control-group.error
|
893
|
+
input[type="email"], .control-group.error
|
894
|
+
input[type="url"], .control-group.error
|
895
|
+
input[type="search"], .control-group.error
|
896
|
+
input[type="tel"], .control-group.error
|
897
|
+
input[type="color"], .control-group.error
|
898
|
+
.uneditable-input {
|
899
|
+
border-color: #e74c3c;
|
900
|
+
color: #e74c3c;
|
901
|
+
-webkit-box-shadow: none;
|
902
|
+
-moz-box-shadow: none;
|
903
|
+
box-shadow: none; }
|
904
|
+
.control-group.error textarea:focus, .control-group.error
|
905
|
+
input[type="text"]:focus, .control-group.error
|
906
|
+
input[type="password"]:focus, .control-group.error
|
907
|
+
input[type="datetime"]:focus, .control-group.error
|
908
|
+
input[type="datetime-local"]:focus, .control-group.error
|
909
|
+
input[type="date"]:focus, .control-group.error
|
910
|
+
input[type="month"]:focus, .control-group.error
|
911
|
+
input[type="time"]:focus, .control-group.error
|
912
|
+
input[type="week"]:focus, .control-group.error
|
913
|
+
input[type="number"]:focus, .control-group.error
|
914
|
+
input[type="email"]:focus, .control-group.error
|
915
|
+
input[type="url"]:focus, .control-group.error
|
916
|
+
input[type="search"]:focus, .control-group.error
|
917
|
+
input[type="tel"]:focus, .control-group.error
|
918
|
+
input[type="color"]:focus, .control-group.error
|
919
|
+
.uneditable-input:focus {
|
920
|
+
-webkit-box-shadow: none;
|
921
|
+
-moz-box-shadow: none;
|
922
|
+
box-shadow: none; }
|
923
|
+
.control-group.success textarea, .control-group.success
|
924
|
+
input[type="text"], .control-group.success
|
925
|
+
input[type="password"], .control-group.success
|
926
|
+
input[type="datetime"], .control-group.success
|
927
|
+
input[type="datetime-local"], .control-group.success
|
928
|
+
input[type="date"], .control-group.success
|
929
|
+
input[type="month"], .control-group.success
|
930
|
+
input[type="time"], .control-group.success
|
931
|
+
input[type="week"], .control-group.success
|
932
|
+
input[type="number"], .control-group.success
|
933
|
+
input[type="email"], .control-group.success
|
934
|
+
input[type="url"], .control-group.success
|
935
|
+
input[type="search"], .control-group.success
|
936
|
+
input[type="tel"], .control-group.success
|
937
|
+
input[type="color"], .control-group.success
|
938
|
+
.uneditable-input {
|
939
|
+
border-color: #2ecc71;
|
940
|
+
color: #2ecc71;
|
941
|
+
-webkit-box-shadow: none;
|
942
|
+
-moz-box-shadow: none;
|
943
|
+
box-shadow: none; }
|
944
|
+
.control-group.success textarea:focus, .control-group.success
|
945
|
+
input[type="text"]:focus, .control-group.success
|
946
|
+
input[type="password"]:focus, .control-group.success
|
947
|
+
input[type="datetime"]:focus, .control-group.success
|
948
|
+
input[type="datetime-local"]:focus, .control-group.success
|
949
|
+
input[type="date"]:focus, .control-group.success
|
950
|
+
input[type="month"]:focus, .control-group.success
|
951
|
+
input[type="time"]:focus, .control-group.success
|
952
|
+
input[type="week"]:focus, .control-group.success
|
953
|
+
input[type="number"]:focus, .control-group.success
|
954
|
+
input[type="email"]:focus, .control-group.success
|
955
|
+
input[type="url"]:focus, .control-group.success
|
956
|
+
input[type="search"]:focus, .control-group.success
|
957
|
+
input[type="tel"]:focus, .control-group.success
|
958
|
+
input[type="color"]:focus, .control-group.success
|
959
|
+
.uneditable-input:focus {
|
960
|
+
-webkit-box-shadow: none;
|
961
|
+
-moz-box-shadow: none;
|
962
|
+
box-shadow: none; }
|
963
|
+
.control-group.warning textarea, .control-group.warning
|
964
|
+
input[type="text"], .control-group.warning
|
965
|
+
input[type="password"], .control-group.warning
|
966
|
+
input[type="datetime"], .control-group.warning
|
967
|
+
input[type="datetime-local"], .control-group.warning
|
968
|
+
input[type="date"], .control-group.warning
|
969
|
+
input[type="month"], .control-group.warning
|
970
|
+
input[type="time"], .control-group.warning
|
971
|
+
input[type="week"], .control-group.warning
|
972
|
+
input[type="number"], .control-group.warning
|
973
|
+
input[type="email"], .control-group.warning
|
974
|
+
input[type="url"], .control-group.warning
|
975
|
+
input[type="search"], .control-group.warning
|
976
|
+
input[type="tel"], .control-group.warning
|
977
|
+
input[type="color"], .control-group.warning
|
978
|
+
.uneditable-input {
|
979
|
+
border-color: #f1c40f;
|
980
|
+
color: #f1c40f;
|
981
|
+
-webkit-box-shadow: none;
|
982
|
+
-moz-box-shadow: none;
|
983
|
+
box-shadow: none; }
|
984
|
+
.control-group.warning textarea:focus, .control-group.warning
|
985
|
+
input[type="text"]:focus, .control-group.warning
|
986
|
+
input[type="password"]:focus, .control-group.warning
|
987
|
+
input[type="datetime"]:focus, .control-group.warning
|
988
|
+
input[type="datetime-local"]:focus, .control-group.warning
|
989
|
+
input[type="date"]:focus, .control-group.warning
|
990
|
+
input[type="month"]:focus, .control-group.warning
|
991
|
+
input[type="time"]:focus, .control-group.warning
|
992
|
+
input[type="week"]:focus, .control-group.warning
|
993
|
+
input[type="number"]:focus, .control-group.warning
|
994
|
+
input[type="email"]:focus, .control-group.warning
|
995
|
+
input[type="url"]:focus, .control-group.warning
|
996
|
+
input[type="search"]:focus, .control-group.warning
|
997
|
+
input[type="tel"]:focus, .control-group.warning
|
998
|
+
input[type="color"]:focus, .control-group.warning
|
999
|
+
.uneditable-input:focus {
|
1000
|
+
-webkit-box-shadow: none;
|
1001
|
+
-moz-box-shadow: none;
|
1002
|
+
box-shadow: none; }
|
1003
|
+
.control-group.info textarea, .control-group.info
|
1004
|
+
input[type="text"], .control-group.info
|
1005
|
+
input[type="password"], .control-group.info
|
1006
|
+
input[type="datetime"], .control-group.info
|
1007
|
+
input[type="datetime-local"], .control-group.info
|
1008
|
+
input[type="date"], .control-group.info
|
1009
|
+
input[type="month"], .control-group.info
|
1010
|
+
input[type="time"], .control-group.info
|
1011
|
+
input[type="week"], .control-group.info
|
1012
|
+
input[type="number"], .control-group.info
|
1013
|
+
input[type="email"], .control-group.info
|
1014
|
+
input[type="url"], .control-group.info
|
1015
|
+
input[type="search"], .control-group.info
|
1016
|
+
input[type="tel"], .control-group.info
|
1017
|
+
input[type="color"], .control-group.info
|
1018
|
+
.uneditable-input {
|
1019
|
+
border-color: #3498db;
|
1020
|
+
color: #3498db;
|
1021
|
+
-webkit-box-shadow: none;
|
1022
|
+
-moz-box-shadow: none;
|
1023
|
+
box-shadow: none; }
|
1024
|
+
.control-group.info textarea:focus, .control-group.info
|
1025
|
+
input[type="text"]:focus, .control-group.info
|
1026
|
+
input[type="password"]:focus, .control-group.info
|
1027
|
+
input[type="datetime"]:focus, .control-group.info
|
1028
|
+
input[type="datetime-local"]:focus, .control-group.info
|
1029
|
+
input[type="date"]:focus, .control-group.info
|
1030
|
+
input[type="month"]:focus, .control-group.info
|
1031
|
+
input[type="time"]:focus, .control-group.info
|
1032
|
+
input[type="week"]:focus, .control-group.info
|
1033
|
+
input[type="number"]:focus, .control-group.info
|
1034
|
+
input[type="email"]:focus, .control-group.info
|
1035
|
+
input[type="url"]:focus, .control-group.info
|
1036
|
+
input[type="search"]:focus, .control-group.info
|
1037
|
+
input[type="tel"]:focus, .control-group.info
|
1038
|
+
input[type="color"]:focus, .control-group.info
|
1039
|
+
.uneditable-input:focus {
|
1040
|
+
-webkit-box-shadow: none;
|
1041
|
+
-moz-box-shadow: none;
|
1042
|
+
box-shadow: none; }
|
1043
|
+
|
1044
|
+
input[disabled],
|
1045
|
+
input[readonly],
|
1046
|
+
textarea[disabled],
|
1047
|
+
textarea[readonly] {
|
1048
|
+
background-color: #eaeded;
|
1049
|
+
border-color: transparent;
|
1050
|
+
color: #cad2d3;
|
1051
|
+
cursor: default; }
|
1052
|
+
|
1053
|
+
input,
|
1054
|
+
textarea,
|
1055
|
+
.uneditable-input {
|
1056
|
+
width: 192px; }
|
1057
|
+
|
1058
|
+
.checkbox,
|
1059
|
+
.radio {
|
1060
|
+
margin-bottom: 12px;
|
1061
|
+
padding-left: 32px;
|
1062
|
+
position: relative;
|
1063
|
+
-webkit-transition: 0.25s;
|
1064
|
+
-moz-transition: 0.25s;
|
1065
|
+
-o-transition: 0.25s;
|
1066
|
+
transition: 0.25s;
|
1067
|
+
-webkit-backface-visibility: hidden; }
|
1068
|
+
.checkbox:hover,
|
1069
|
+
.radio:hover {
|
1070
|
+
color: #1abc9c; }
|
1071
|
+
.checkbox input,
|
1072
|
+
.radio input {
|
1073
|
+
outline: none !important;
|
1074
|
+
opacity: 0;
|
1075
|
+
filter: alpha(opacity=0);
|
1076
|
+
zoom: 1; }
|
1077
|
+
.checkbox.checked .icon,
|
1078
|
+
.radio.checked .icon {
|
1079
|
+
background-position: -60px -30px;
|
1080
|
+
opacity: 1;
|
1081
|
+
display: block\9; }
|
1082
|
+
.checkbox.checked .icon-to-fade,
|
1083
|
+
.radio.checked .icon-to-fade {
|
1084
|
+
opacity: 0;
|
1085
|
+
display: none\9; }
|
1086
|
+
.checkbox.disabled,
|
1087
|
+
.radio.disabled {
|
1088
|
+
color: #d7dddd;
|
1089
|
+
cursor: default; }
|
1090
|
+
.checkbox.disabled .icon,
|
1091
|
+
.radio.disabled .icon {
|
1092
|
+
opacity: 0;
|
1093
|
+
display: none\9; }
|
1094
|
+
.checkbox.disabled .icon-to-fade,
|
1095
|
+
.radio.disabled .icon-to-fade {
|
1096
|
+
background-position: -30px -60px;
|
1097
|
+
opacity: 1;
|
1098
|
+
display: block\9; }
|
1099
|
+
.checkbox.disabled.checked .icon,
|
1100
|
+
.radio.disabled.checked .icon {
|
1101
|
+
background-position: 0 -90px;
|
1102
|
+
opacity: 1;
|
1103
|
+
display: block\9; }
|
1104
|
+
.checkbox.disabled.checked .icon-to-fade,
|
1105
|
+
.radio.disabled.checked .icon-to-fade {
|
1106
|
+
opacity: 0;
|
1107
|
+
display: none\9; }
|
1108
|
+
.checkbox .icon,
|
1109
|
+
.checkbox .icon-to-fade,
|
1110
|
+
.radio .icon,
|
1111
|
+
.radio .icon-to-fade {
|
1112
|
+
background: url("../images/checkbox.png") -90px 0 no-repeat;
|
1113
|
+
display: block;
|
1114
|
+
height: 20px;
|
1115
|
+
left: 0;
|
1116
|
+
opacity: 1;
|
1117
|
+
position: absolute;
|
1118
|
+
top: -1px;
|
1119
|
+
width: 20px;
|
1120
|
+
-webkit-transition: opacity 0.1s linear;
|
1121
|
+
-moz-transition: opacity 0.1s linear;
|
1122
|
+
-o-transition: opacity 0.1s linear;
|
1123
|
+
transition: opacity 0.1s linear;
|
1124
|
+
-webkit-backface-visibility: hidden; }
|
1125
|
+
.checkbox .icon,
|
1126
|
+
.radio .icon {
|
1127
|
+
opacity: 0;
|
1128
|
+
top: 0;
|
1129
|
+
z-index: 2;
|
1130
|
+
display: none\9; }
|
1131
|
+
|
1132
|
+
.radio .icon,
|
1133
|
+
.radio .icon-to-fade {
|
1134
|
+
background-image: url("../images/radio.png"); }
|
1135
|
+
|
1136
|
+
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 3 / 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 2) {
|
1137
|
+
.checkbox .icon {
|
1138
|
+
background-image: url("../images/checkbox-2x.png");
|
1139
|
+
background-size: 110px 110px; }
|
1140
|
+
|
1141
|
+
.radio .icon {
|
1142
|
+
background-image: url("../images/radio-2x.png");
|
1143
|
+
background-size: 110px 110px; } }
|
1144
|
+
.toggle {
|
1145
|
+
background-color: #34495e;
|
1146
|
+
border-radius: 60px;
|
1147
|
+
color: white;
|
1148
|
+
height: 29px;
|
1149
|
+
margin: 0 12px 12px 0;
|
1150
|
+
overflow: hidden;
|
1151
|
+
*zoom: 1;
|
1152
|
+
display: inline-block;
|
1153
|
+
zoom: 1;
|
1154
|
+
*display: inline;
|
1155
|
+
-webkit-transition: 0.25s;
|
1156
|
+
-moz-transition: 0.25s;
|
1157
|
+
-o-transition: 0.25s;
|
1158
|
+
transition: 0.25s;
|
1159
|
+
-webkit-backface-visibility: hidden; }
|
1160
|
+
.toggle:before, .toggle:after {
|
1161
|
+
display: table;
|
1162
|
+
content: ""; }
|
1163
|
+
.toggle:after {
|
1164
|
+
clear: both; }
|
1165
|
+
.toggle.toggle-off {
|
1166
|
+
background-color: #cbd2d8; }
|
1167
|
+
.toggle.toggle-off .toggle-radio {
|
1168
|
+
background-image: url("../images/toggle/icon-off.png");
|
1169
|
+
background-position: 0 0;
|
1170
|
+
color: white;
|
1171
|
+
left: 0;
|
1172
|
+
margin-left: 0.5px;
|
1173
|
+
margin-right: -13px;
|
1174
|
+
z-index: 1; }
|
1175
|
+
.toggle.toggle-off .toggle-radio:first-child {
|
1176
|
+
left: -120%; }
|
1177
|
+
.toggle .toggle-radio {
|
1178
|
+
background: url("../images/toggle/icon-on.png") right top no-repeat;
|
1179
|
+
color: #1abc9c;
|
1180
|
+
display: block;
|
1181
|
+
font-weight: 700;
|
1182
|
+
height: 21px;
|
1183
|
+
left: 120%;
|
1184
|
+
margin-left: -13px;
|
1185
|
+
padding: 5px 32px 3px;
|
1186
|
+
position: relative;
|
1187
|
+
text-align: center;
|
1188
|
+
z-index: 2;
|
1189
|
+
-webkit-transition: 0.25s;
|
1190
|
+
-moz-transition: 0.25s;
|
1191
|
+
-o-transition: 0.25s;
|
1192
|
+
transition: 0.25s;
|
1193
|
+
-webkit-backface-visibility: hidden; }
|
1194
|
+
.toggle .toggle-radio:first-child {
|
1195
|
+
margin-bottom: -29px;
|
1196
|
+
left: 0; }
|
1197
|
+
.toggle input {
|
1198
|
+
display: none;
|
1199
|
+
position: absolute;
|
1200
|
+
outline: none !important;
|
1201
|
+
display: block\9;
|
1202
|
+
opacity: 0.01;
|
1203
|
+
filter: alpha(opacity=1);
|
1204
|
+
zoom: 1; }
|
1205
|
+
.toggle.toggle-icon {
|
1206
|
+
border-radius: 6px 7px 7px 6px; }
|
1207
|
+
.toggle.toggle-icon.toggle-off {
|
1208
|
+
border-radius: 7px 6px 6px 7px; }
|
1209
|
+
.toggle.toggle-icon.toggle-off .toggle-radio {
|
1210
|
+
background-image: url("../images/toggle/block-off.png");
|
1211
|
+
background-position: 0 0; }
|
1212
|
+
.toggle.toggle-icon .toggle-radio {
|
1213
|
+
background-image: url("../images/toggle/block-on.png");
|
1214
|
+
background-position: 62px 0;
|
1215
|
+
border-radius: 6px;
|
1216
|
+
min-width: 27px;
|
1217
|
+
text-align: right; }
|
1218
|
+
.toggle.toggle-icon .toggle-radio:first-child {
|
1219
|
+
text-align: left; }
|
1220
|
+
|
1221
|
+
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 3 / 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 2) {
|
1222
|
+
.toggle.toggle-off .toggle-radio {
|
1223
|
+
background-image: url("../images/toggle/icon-off-2x.png");
|
1224
|
+
background-size: 30px 29px; }
|
1225
|
+
.toggle .toggle-radio {
|
1226
|
+
background-image: url("../images/toggle/icon-on-2x.png");
|
1227
|
+
background-size: 30px 29px; } }
|
1228
|
+
.tagsinput {
|
1229
|
+
background: white;
|
1230
|
+
border: 2px solid #1abc9c;
|
1231
|
+
border-radius: 6px;
|
1232
|
+
height: 100px;
|
1233
|
+
padding: 6px 1px 1px 6px;
|
1234
|
+
overflow-y: auto;
|
1235
|
+
text-align: left; }
|
1236
|
+
.tagsinput .tag {
|
1237
|
+
border-radius: 4px;
|
1238
|
+
background: #1abc9c;
|
1239
|
+
color: white;
|
1240
|
+
cursor: pointer;
|
1241
|
+
margin-right: 5px;
|
1242
|
+
margin-bottom: 5px;
|
1243
|
+
overflow: hidden;
|
1244
|
+
padding: 6px 13px 6px 19px;
|
1245
|
+
position: relative;
|
1246
|
+
vertical-align: middle;
|
1247
|
+
display: inline-block;
|
1248
|
+
zoom: 1;
|
1249
|
+
*display: inline;
|
1250
|
+
-webkit-transition: 0.14s linear;
|
1251
|
+
-moz-transition: 0.14s linear;
|
1252
|
+
-o-transition: 0.14s linear;
|
1253
|
+
transition: 0.14s linear;
|
1254
|
+
-webkit-backface-visibility: hidden; }
|
1255
|
+
.tagsinput .tag:hover {
|
1256
|
+
background-color: #16a085;
|
1257
|
+
padding-left: 12px;
|
1258
|
+
padding-right: 20px; }
|
1259
|
+
.tagsinput .tag:hover .tagsinput-remove-link {
|
1260
|
+
color: white;
|
1261
|
+
opacity: 1;
|
1262
|
+
display: block\9; }
|
1263
|
+
.tagsinput input {
|
1264
|
+
background: transparent;
|
1265
|
+
border: none;
|
1266
|
+
color: #34495e;
|
1267
|
+
font-family: "Lato", sans-serif;
|
1268
|
+
font-size: 14px;
|
1269
|
+
margin: 0px;
|
1270
|
+
padding: 0 0 0 5px;
|
1271
|
+
outline: 0;
|
1272
|
+
margin-right: 5px;
|
1273
|
+
margin-bottom: 5px;
|
1274
|
+
width: 12px; }
|
1275
|
+
|
1276
|
+
.tagsinput-remove-link {
|
1277
|
+
bottom: 0;
|
1278
|
+
color: white;
|
1279
|
+
cursor: pointer;
|
1280
|
+
font-size: 12px;
|
1281
|
+
opacity: 0;
|
1282
|
+
padding: 9px 7px 3px 0;
|
1283
|
+
position: absolute;
|
1284
|
+
right: 0;
|
1285
|
+
text-align: right;
|
1286
|
+
text-decoration: none;
|
1287
|
+
top: 0;
|
1288
|
+
width: 100%;
|
1289
|
+
z-index: 2;
|
1290
|
+
display: none\9; }
|
1291
|
+
.tagsinput-remove-link:before {
|
1292
|
+
color: white; }
|
1293
|
+
|
1294
|
+
.tagsinput-add-container {
|
1295
|
+
vertical-align: middle;
|
1296
|
+
display: inline-block;
|
1297
|
+
zoom: 1;
|
1298
|
+
*display: inline; }
|
1299
|
+
|
1300
|
+
.tagsinput-add {
|
1301
|
+
background-color: #bbc3cb;
|
1302
|
+
border-radius: 3px;
|
1303
|
+
color: white;
|
1304
|
+
cursor: pointer;
|
1305
|
+
margin-bottom: 5px;
|
1306
|
+
padding: 6px 9px;
|
1307
|
+
display: inline-block;
|
1308
|
+
zoom: 1;
|
1309
|
+
*display: inline;
|
1310
|
+
-webkit-transition: 0.25s;
|
1311
|
+
-moz-transition: 0.25s;
|
1312
|
+
-o-transition: 0.25s;
|
1313
|
+
transition: 0.25s;
|
1314
|
+
-webkit-backface-visibility: hidden; }
|
1315
|
+
.tagsinput-add:hover {
|
1316
|
+
background-color: #1abc9c; }
|
1317
|
+
|
1318
|
+
.tags_clear {
|
1319
|
+
clear: both;
|
1320
|
+
width: 100%;
|
1321
|
+
height: 0px; }
|
1322
|
+
|
1323
|
+
.not_valid {
|
1324
|
+
background: #fbd8db !important;
|
1325
|
+
color: #90111a !important; }
|
1326
|
+
|
1327
|
+
.progress, .ui-slider {
|
1328
|
+
background: #e8edf2;
|
1329
|
+
border-radius: 32px;
|
1330
|
+
height: 12px;
|
1331
|
+
-webkit-box-shadow: none;
|
1332
|
+
-moz-box-shadow: none;
|
1333
|
+
box-shadow: none;
|
1334
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); }
|
1335
|
+
.progress .bar, .ui-slider .bar {
|
1336
|
+
background: #1abc9c;
|
1337
|
+
-webkit-box-shadow: none !important;
|
1338
|
+
-moz-box-shadow: none !important;
|
1339
|
+
box-shadow: none !important;
|
1340
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); }
|
1341
|
+
.progress .bar-success, .ui-slider .bar-success {
|
1342
|
+
background-color: #2ecc71;
|
1343
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); }
|
1344
|
+
.progress .bar-warning, .ui-slider .bar-warning {
|
1345
|
+
background-color: #f1c40f;
|
1346
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); }
|
1347
|
+
.progress .bar-danger, .ui-slider .bar-danger {
|
1348
|
+
background-color: #e74c3c;
|
1349
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); }
|
1350
|
+
.progress .bar-info, .ui-slider .bar-info {
|
1351
|
+
background-color: #3498db;
|
1352
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); }
|
1353
|
+
|
1354
|
+
.ui-slider {
|
1355
|
+
margin-bottom: 20px;
|
1356
|
+
position: relative; }
|
1357
|
+
|
1358
|
+
.ui-slider-handle {
|
1359
|
+
background-color: #16a085;
|
1360
|
+
border-radius: 50%;
|
1361
|
+
cursor: pointer;
|
1362
|
+
height: 18px;
|
1363
|
+
margin-left: -9px;
|
1364
|
+
position: absolute;
|
1365
|
+
top: -3px;
|
1366
|
+
width: 18px;
|
1367
|
+
z-index: 2;
|
1368
|
+
-webkit-transition: background 0.25s;
|
1369
|
+
-moz-transition: background 0.25s;
|
1370
|
+
-o-transition: background 0.25s;
|
1371
|
+
transition: background 0.25s;
|
1372
|
+
-webkit-backface-visibility: hidden; }
|
1373
|
+
.ui-slider-handle[style*='100'] {
|
1374
|
+
margin-left: -15px; }
|
1375
|
+
.ui-slider-handle:hover, .ui-slider-handle:focus {
|
1376
|
+
background-color: #2fe2bf;
|
1377
|
+
outline: none; }
|
1378
|
+
.ui-slider-handle:active {
|
1379
|
+
background-color: #16a085; }
|
1380
|
+
|
1381
|
+
.ui-slider-range {
|
1382
|
+
background-color: #1abc9c;
|
1383
|
+
border-radius: 30px 0 0 30px;
|
1384
|
+
display: block;
|
1385
|
+
height: 100%;
|
1386
|
+
position: absolute;
|
1387
|
+
z-index: 1; }
|
1388
|
+
|
1389
|
+
.ui-slider-segment {
|
1390
|
+
background-color: #d6dbe0;
|
1391
|
+
border-radius: 50%;
|
1392
|
+
float: left;
|
1393
|
+
height: 6px;
|
1394
|
+
margin: 3px -6px 0 25%;
|
1395
|
+
width: 6px; }
|
1396
|
+
|
1397
|
+
.pager {
|
1398
|
+
background-color: #34495e;
|
1399
|
+
border-radius: 6px;
|
1400
|
+
color: white;
|
1401
|
+
font-size: 16px;
|
1402
|
+
font-weight: 700;
|
1403
|
+
display: inline-block;
|
1404
|
+
zoom: 1;
|
1405
|
+
*display: inline; }
|
1406
|
+
.pager li:first-child > a, .pager li:first-child > span {
|
1407
|
+
border-left: none;
|
1408
|
+
padding-left: 20px;
|
1409
|
+
-webkit-border-radius: 6px 0 0 6px;
|
1410
|
+
-moz-border-radius: 6px 0 0 6px;
|
1411
|
+
border-radius: 6px 0 0 6px; }
|
1412
|
+
.pager li:first-child > a img, .pager li:first-child > span img {
|
1413
|
+
margin-left: 0;
|
1414
|
+
margin-right: 13px;
|
1415
|
+
margin-left: 0 \9;
|
1416
|
+
margin-right: 9px \9; }
|
1417
|
+
.pager li.pager-center {
|
1418
|
+
padding: 9px 18px 10px;
|
1419
|
+
padding-left: 0;
|
1420
|
+
padding-right: 0;
|
1421
|
+
display: inline-block;
|
1422
|
+
zoom: 1;
|
1423
|
+
*display: inline; }
|
1424
|
+
.pager li.previous img, .pager li.next img {
|
1425
|
+
height: 14px;
|
1426
|
+
margin: -1px 0 0 13px;
|
1427
|
+
margin-left: 9px \9;
|
1428
|
+
vertical-align: middle; }
|
1429
|
+
.pager li > a, .pager li > span {
|
1430
|
+
background: none;
|
1431
|
+
border: none;
|
1432
|
+
border-left: 2px solid #2c3e50;
|
1433
|
+
color: white;
|
1434
|
+
padding: 9px 18px 10px;
|
1435
|
+
padding-left: 7px;
|
1436
|
+
text-decoration: none;
|
1437
|
+
white-space: nowrap;
|
1438
|
+
-webkit-border-radius: 0 6px 6px 0;
|
1439
|
+
-moz-border-radius: 0 6px 6px 0;
|
1440
|
+
border-radius: 0 6px 6px 0; }
|
1441
|
+
.pager li > a:hover, .pager li > a:focus, .pager li > span:hover, .pager li > span:focus {
|
1442
|
+
background-color: #4e6d8d; }
|
1443
|
+
.pager li > a:active, .pager li > span:active {
|
1444
|
+
background-color: #2c3e50; }
|
1445
|
+
|
1446
|
+
.pagination ul {
|
1447
|
+
background: #d7dce0;
|
1448
|
+
-webkit-border-radius: 6px;
|
1449
|
+
-moz-border-radius: 6px;
|
1450
|
+
border-radius: 6px;
|
1451
|
+
-webkit-box-shadow: none;
|
1452
|
+
-moz-box-shadow: none;
|
1453
|
+
box-shadow: none; }
|
1454
|
+
.pagination ul > li:first-child {
|
1455
|
+
-webkit-border-radius: 6px 0 0 6px;
|
1456
|
+
-moz-border-radius: 6px 0 0 6px;
|
1457
|
+
border-radius: 6px 0 0 6px; }
|
1458
|
+
.pagination ul > li:last-child {
|
1459
|
+
-webkit-border-radius: 0 6px 6px 0;
|
1460
|
+
-moz-border-radius: 0 6px 6px 0;
|
1461
|
+
border-radius: 0 6px 6px 0; }
|
1462
|
+
.pagination ul > li.previous > a, .pagination ul > li.previous > span, .pagination ul > li.next > a, .pagination ul > li.next > span {
|
1463
|
+
background: transparent;
|
1464
|
+
border: none;
|
1465
|
+
border-right: 2px solid white !important;
|
1466
|
+
margin: 0 9px 0 0;
|
1467
|
+
padding: 11px 17px 12px 17px;
|
1468
|
+
-webkit-border-radius: 6px 0 0 6px;
|
1469
|
+
-moz-border-radius: 6px 0 0 6px;
|
1470
|
+
border-radius: 6px 0 0 6px;
|
1471
|
+
-webkit-box-shadow: none !important;
|
1472
|
+
-moz-box-shadow: none !important;
|
1473
|
+
box-shadow: none !important; }
|
1474
|
+
.pagination ul > li.next > a, .pagination ul > li.next > span {
|
1475
|
+
border-left: 2px solid white !important;
|
1476
|
+
margin-left: 9px;
|
1477
|
+
margin-right: 0;
|
1478
|
+
-webkit-border-radius: 0 6px 6px 0;
|
1479
|
+
-moz-border-radius: 0 6px 6px 0;
|
1480
|
+
border-radius: 0 6px 6px 0; }
|
1481
|
+
.pagination ul > li.active > a, .pagination ul > li.active > span {
|
1482
|
+
background-color: white;
|
1483
|
+
border-color: white;
|
1484
|
+
border-width: 2px;
|
1485
|
+
color: #d7dce0;
|
1486
|
+
margin: 10px 5px 9px; }
|
1487
|
+
.pagination ul > li.active > a:hover, .pagination ul > li.active > a:focus, .pagination ul > li.active > span:hover, .pagination ul > li.active > span:focus {
|
1488
|
+
background-color: white;
|
1489
|
+
border-color: white;
|
1490
|
+
color: #d7dce0;
|
1491
|
+
-webkit-box-shadow: none;
|
1492
|
+
-moz-box-shadow: none;
|
1493
|
+
box-shadow: none; }
|
1494
|
+
.pagination ul > li > a, .pagination ul > li > span {
|
1495
|
+
background: white;
|
1496
|
+
border: 5px solid #d7dce0;
|
1497
|
+
border-radius: 50px;
|
1498
|
+
color: white;
|
1499
|
+
line-height: 16px;
|
1500
|
+
margin: 7px 2px 6px;
|
1501
|
+
padding: 0 4px;
|
1502
|
+
-webkit-transition: background 0.2s ease-out, border-color 0s ease-out, color 0.2s ease-out;
|
1503
|
+
-moz-transition: background 0.2s ease-out, border-color 0s ease-out, color 0.2s ease-out;
|
1504
|
+
-o-transition: background 0.2s ease-out, border-color 0s ease-out, color 0.2s ease-out;
|
1505
|
+
transition: background 0.2s ease-out, border-color 0s ease-out, color 0.2s ease-out;
|
1506
|
+
-webkit-backface-visibility: hidden; }
|
1507
|
+
.pagination ul > li > a:hover, .pagination ul > li > a :focus, .pagination ul > li > span:hover, .pagination ul > li > span :focus {
|
1508
|
+
background-color: #1abc9c;
|
1509
|
+
border-color: #1abc9c;
|
1510
|
+
color: white;
|
1511
|
+
-webkit-transition: background 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out;
|
1512
|
+
-moz-transition: background 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out;
|
1513
|
+
-o-transition: background 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out;
|
1514
|
+
transition: background 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out;
|
1515
|
+
-webkit-backface-visibility: hidden; }
|
1516
|
+
.pagination ul > li > a:active, .pagination ul > li > span:active {
|
1517
|
+
background-color: #16a085;
|
1518
|
+
border-color: #16a085; }
|
1519
|
+
.pagination ul img {
|
1520
|
+
height: 14px;
|
1521
|
+
margin-top: -1px;
|
1522
|
+
vertical-align: middle;
|
1523
|
+
width: 13px; }
|
1524
|
+
|
1525
|
+
.share {
|
1526
|
+
background-color: #ecf0f5;
|
1527
|
+
border-radius: 6px;
|
1528
|
+
position: relative; }
|
1529
|
+
.share:before {
|
1530
|
+
content: "";
|
1531
|
+
border-style: solid;
|
1532
|
+
border-width: 0 9px 9px 9px;
|
1533
|
+
border-color: transparent transparent #ecf0f5 transparent;
|
1534
|
+
height: 0px;
|
1535
|
+
position: absolute;
|
1536
|
+
left: 23px;
|
1537
|
+
top: -9px;
|
1538
|
+
width: 0px;
|
1539
|
+
-webkit-transform: rotate(360deg); }
|
1540
|
+
.share ul {
|
1541
|
+
list-style-type: none;
|
1542
|
+
margin: 0;
|
1543
|
+
padding: 15px; }
|
1544
|
+
.share li {
|
1545
|
+
padding-top: 11px;
|
1546
|
+
*zoom: 1; }
|
1547
|
+
.share li:before, .share li:after {
|
1548
|
+
display: table;
|
1549
|
+
content: ""; }
|
1550
|
+
.share li:after {
|
1551
|
+
clear: both; }
|
1552
|
+
.share li:first-child {
|
1553
|
+
padding-top: 0; }
|
1554
|
+
.share .toggle {
|
1555
|
+
float: right;
|
1556
|
+
margin: 0; }
|
1557
|
+
.share .btn {
|
1558
|
+
-webkit-border-radius: 0 0 6px 6px;
|
1559
|
+
-moz-border-radius: 0 0 6px 6px;
|
1560
|
+
border-radius: 0 0 6px 6px; }
|
1561
|
+
|
1562
|
+
.share-label {
|
1563
|
+
float: left;
|
1564
|
+
font-size: 15px;
|
1565
|
+
padding-top: 5px;
|
1566
|
+
width: 50%; }
|
1567
|
+
|
1568
|
+
.tooltip {
|
1569
|
+
font-size: 13px; }
|
1570
|
+
.tooltip.in {
|
1571
|
+
opacity: 1;
|
1572
|
+
filter: alpha(opacity=100);
|
1573
|
+
zoom: 1; }
|
1574
|
+
.tooltip.top {
|
1575
|
+
padding-bottom: 9px; }
|
1576
|
+
.tooltip.top .tooltip-arrow {
|
1577
|
+
border-top-color: #34495e;
|
1578
|
+
border-width: 9px 9px 0;
|
1579
|
+
bottom: 0;
|
1580
|
+
margin-left: -9px; }
|
1581
|
+
.tooltip.right .tooltip-arrow {
|
1582
|
+
border-right-color: #34495e;
|
1583
|
+
border-width: 9px 9px 9px 0;
|
1584
|
+
margin-top: -9px;
|
1585
|
+
left: -3px; }
|
1586
|
+
.tooltip.bottom {
|
1587
|
+
padding-top: 8px; }
|
1588
|
+
.tooltip.bottom .tooltip-arrow {
|
1589
|
+
border-bottom-color: #34495e;
|
1590
|
+
border-width: 0 9px 9px;
|
1591
|
+
margin-left: -9px;
|
1592
|
+
top: -1px; }
|
1593
|
+
.tooltip.left .tooltip-arrow {
|
1594
|
+
border-right-color: #34495e;
|
1595
|
+
border-width: 9px 9px 9px 0;
|
1596
|
+
margin-top: -3px;
|
1597
|
+
top: -3px; }
|
1598
|
+
|
1599
|
+
.tooltip-inner {
|
1600
|
+
background-color: #34495e;
|
1601
|
+
line-height: 18px;
|
1602
|
+
padding: 12px 12px;
|
1603
|
+
text-align: center;
|
1604
|
+
width: 183px;
|
1605
|
+
-webkit-border-radius: 6px;
|
1606
|
+
-moz-border-radius: 6px;
|
1607
|
+
border-radius: 6px; }
|
1608
|
+
|
1609
|
+
.palette {
|
1610
|
+
color: white;
|
1611
|
+
margin: 0;
|
1612
|
+
padding: 15px;
|
1613
|
+
text-transform: uppercase; }
|
1614
|
+
.palette dt {
|
1615
|
+
display: block;
|
1616
|
+
font-weight: 500;
|
1617
|
+
opacity: 0.8; }
|
1618
|
+
.palette dd {
|
1619
|
+
font-weight: 200;
|
1620
|
+
margin-left: 0;
|
1621
|
+
opacity: 0.8; }
|
1622
|
+
|
1623
|
+
.palette-firm {
|
1624
|
+
background-color: #1abc9c; }
|
1625
|
+
|
1626
|
+
.palette-firm-dark {
|
1627
|
+
background-color: #16a085; }
|
1628
|
+
|
1629
|
+
.palette-success {
|
1630
|
+
background-color: #2ecc71; }
|
1631
|
+
|
1632
|
+
.palette-success-dark {
|
1633
|
+
background-color: #27ad60; }
|
1634
|
+
|
1635
|
+
.palette-info {
|
1636
|
+
background-color: #3498db; }
|
1637
|
+
|
1638
|
+
.palette-info-dark {
|
1639
|
+
background-color: #2383c4; }
|
1640
|
+
|
1641
|
+
.palette-warning {
|
1642
|
+
background-color: #f1c40f; }
|
1643
|
+
|
1644
|
+
.palette-warning-dark {
|
1645
|
+
background-color: #cea70c; }
|
1646
|
+
|
1647
|
+
.palette-danger {
|
1648
|
+
background-color: #e74c3c; }
|
1649
|
+
|
1650
|
+
.palette-danger-dark {
|
1651
|
+
background-color: #dc2d1b; }
|
1652
|
+
|
1653
|
+
.palette-night {
|
1654
|
+
background-color: #34495e; }
|
1655
|
+
|
1656
|
+
.palette-night-dark {
|
1657
|
+
background-color: #2c3e50; }
|
1658
|
+
|
1659
|
+
.palette-bright {
|
1660
|
+
background-color: #f1c40f; }
|
1661
|
+
|
1662
|
+
.palette-bright-dark {
|
1663
|
+
background-color: #cea70c; }
|
1664
|
+
|
1665
|
+
.palette-success-dark {
|
1666
|
+
background-color: #27ae60; }
|
1667
|
+
|
1668
|
+
.palette-info-dark {
|
1669
|
+
background-color: #2980b9; }
|
1670
|
+
|
1671
|
+
.palette-bright-dark {
|
1672
|
+
background-color: #f39c12; }
|
1673
|
+
|
1674
|
+
.palette-amethyst {
|
1675
|
+
background-color: #9b59b6; }
|
1676
|
+
|
1677
|
+
.palette-wisteria {
|
1678
|
+
background-color: #8e44ad; }
|
1679
|
+
|
1680
|
+
.palette-carrot {
|
1681
|
+
background-color: #e67e22; }
|
1682
|
+
|
1683
|
+
.palette-pumpkin {
|
1684
|
+
background-color: #d35400; }
|
1685
|
+
|
1686
|
+
.palette-alizarin {
|
1687
|
+
background-color: #e74c3c; }
|
1688
|
+
|
1689
|
+
.palette-pomegranate {
|
1690
|
+
background-color: #c0392b; }
|
1691
|
+
|
1692
|
+
.palette-clouds {
|
1693
|
+
background-color: #ecf0f1;
|
1694
|
+
color: #bdc3c7; }
|
1695
|
+
|
1696
|
+
.palette-silver {
|
1697
|
+
background-color: #bdc3c7; }
|
1698
|
+
|
1699
|
+
.palette-concrete {
|
1700
|
+
background-color: #95a5a6; }
|
1701
|
+
|
1702
|
+
.palette-asbestos {
|
1703
|
+
background-color: #7f8c8d; }
|
1704
|
+
|
1705
|
+
.palette-paragraph {
|
1706
|
+
color: #7f8c8d;
|
1707
|
+
font-size: 12px;
|
1708
|
+
line-height: 17px; }
|
1709
|
+
.palette-paragraph span {
|
1710
|
+
color: #bdc3c7; }
|
1711
|
+
|
1712
|
+
.palette-headline {
|
1713
|
+
color: #7f8c8d;
|
1714
|
+
font-weight: 700;
|
1715
|
+
margin-top: -5px; }
|
1716
|
+
|
1717
|
+
.tile {
|
1718
|
+
background-color: #ecf0f5;
|
1719
|
+
border-radius: 6px;
|
1720
|
+
padding: 14px;
|
1721
|
+
position: relative;
|
1722
|
+
text-align: center; }
|
1723
|
+
.tile.tile-hot:before {
|
1724
|
+
background: url("../images/tile/ribbon.png") 0 0 no-repeat;
|
1725
|
+
background-size: 82px 82px;
|
1726
|
+
content: "";
|
1727
|
+
height: 82px;
|
1728
|
+
position: absolute;
|
1729
|
+
right: -4px;
|
1730
|
+
top: -4px;
|
1731
|
+
width: 82px; }
|
1732
|
+
.tile p {
|
1733
|
+
font-size: 15px;
|
1734
|
+
margin-bottom: 33px; }
|
1735
|
+
|
1736
|
+
.tile-image {
|
1737
|
+
height: 100px;
|
1738
|
+
margin: 31px 0 27px;
|
1739
|
+
vertical-align: bottom; }
|
1740
|
+
.tile-image.big-illustration {
|
1741
|
+
height: 111px;
|
1742
|
+
margin-top: 20px;
|
1743
|
+
width: 112px; }
|
1744
|
+
|
1745
|
+
.tile-title {
|
1746
|
+
font-size: 20px;
|
1747
|
+
margin: 0; }
|
1748
|
+
|
1749
|
+
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 3 / 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 2) {
|
1750
|
+
.tile.tile-hot:before {
|
1751
|
+
background-image: url("../images/tile/ribbon-2x.png"); } }
|
1752
|
+
.todo {
|
1753
|
+
background-color: #2c3e50;
|
1754
|
+
border-radius: 8px 8px 6px 6px;
|
1755
|
+
color: #6285a8;
|
1756
|
+
margin-bottom: 20px; }
|
1757
|
+
.todo ul {
|
1758
|
+
margin: 0;
|
1759
|
+
list-style-type: none; }
|
1760
|
+
.todo li {
|
1761
|
+
background: #34495e url("../images/todo/todo.png") 92% center no-repeat;
|
1762
|
+
background-size: 20px 20px;
|
1763
|
+
cursor: pointer;
|
1764
|
+
margin-top: 2px;
|
1765
|
+
padding: 18px 42px 17px 25px;
|
1766
|
+
position: relative;
|
1767
|
+
-webkit-transition: 0.25s;
|
1768
|
+
-moz-transition: 0.25s;
|
1769
|
+
-o-transition: 0.25s;
|
1770
|
+
transition: 0.25s;
|
1771
|
+
-webkit-backface-visibility: hidden; }
|
1772
|
+
.todo li:first-child {
|
1773
|
+
margin-top: 0; }
|
1774
|
+
.todo li:last-child {
|
1775
|
+
border-radius: 0 0 6px 6px;
|
1776
|
+
padding-bottom: 18px; }
|
1777
|
+
.todo li.todo-done {
|
1778
|
+
background: transparent url("../images/todo/done.png") 92% center no-repeat;
|
1779
|
+
background-size: 20px 20px;
|
1780
|
+
color: #1abc9c; }
|
1781
|
+
.todo li.todo-done .todo-name {
|
1782
|
+
color: #1abc9c; }
|
1783
|
+
|
1784
|
+
.todo-search {
|
1785
|
+
background: #1abc9c url("../images/todo/search.png") 92% center no-repeat;
|
1786
|
+
background-size: 16px 16px;
|
1787
|
+
border-radius: 6px 6px 0 0;
|
1788
|
+
color: #34495e;
|
1789
|
+
padding: 19px 25px 20px; }
|
1790
|
+
|
1791
|
+
input.todo-search-field {
|
1792
|
+
background: none;
|
1793
|
+
border: none;
|
1794
|
+
color: #34495e;
|
1795
|
+
font-size: 19px;
|
1796
|
+
font-weight: 700;
|
1797
|
+
margin: 0;
|
1798
|
+
line-height: 23px;
|
1799
|
+
padding: 5px 0;
|
1800
|
+
text-indent: 0;
|
1801
|
+
-webkit-box-shadow: none;
|
1802
|
+
-moz-box-shadow: none;
|
1803
|
+
box-shadow: none; }
|
1804
|
+
input.todo-search-field:-moz-placeholder {
|
1805
|
+
color: #34495e; }
|
1806
|
+
input.todo-search-field::-webkit-input-placeholder {
|
1807
|
+
color: #34495e; }
|
1808
|
+
input.todo-search-field.placeholder {
|
1809
|
+
color: #34495e; }
|
1810
|
+
|
1811
|
+
.todo-icon {
|
1812
|
+
float: left;
|
1813
|
+
font-size: 24px;
|
1814
|
+
padding: 11px 22px 0 0; }
|
1815
|
+
|
1816
|
+
.todo-content {
|
1817
|
+
padding-top: 1px;
|
1818
|
+
overflow: hidden; }
|
1819
|
+
|
1820
|
+
.todo-name {
|
1821
|
+
color: white;
|
1822
|
+
font-size: 17px;
|
1823
|
+
margin: 1px 0 3px; }
|
1824
|
+
|
1825
|
+
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 3 / 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 2) {
|
1826
|
+
.todo li {
|
1827
|
+
background-image: "../images/todo/todo-2x.png"; }
|
1828
|
+
.todo li.todo-done {
|
1829
|
+
background-image: "../images/todo/done-2x.png"; }
|
1830
|
+
|
1831
|
+
.todo-search {
|
1832
|
+
background-image: "../images/todo/search-2x.png"; } }
|
1833
|
+
footer {
|
1834
|
+
background-color: #eceff1;
|
1835
|
+
color: #bdc1c5;
|
1836
|
+
font-size: 15px;
|
1837
|
+
padding: 0; }
|
1838
|
+
footer a {
|
1839
|
+
color: #a1a4a7;
|
1840
|
+
font-weight: 700; }
|
1841
|
+
footer p {
|
1842
|
+
font-size: 15px;
|
1843
|
+
line-height: 20px; }
|
1844
|
+
|
1845
|
+
.footer-title {
|
1846
|
+
margin: 0 0 22px;
|
1847
|
+
padding-top: 21px; }
|
1848
|
+
|
1849
|
+
.footer-brand {
|
1850
|
+
display: block;
|
1851
|
+
margin-bottom: 26px;
|
1852
|
+
width: 220px; }
|
1853
|
+
.footer-brand img {
|
1854
|
+
width: 216px; }
|
1855
|
+
|
1856
|
+
.footer-banner {
|
1857
|
+
background-color: #1abc9c;
|
1858
|
+
color: #cff3ec;
|
1859
|
+
margin-left: 42px;
|
1860
|
+
min-height: 286px;
|
1861
|
+
padding: 0 30px 30px; }
|
1862
|
+
.footer-banner .footer-title {
|
1863
|
+
color: white; }
|
1864
|
+
.footer-banner a {
|
1865
|
+
color: #cff3ec;
|
1866
|
+
text-decoration: underline; }
|
1867
|
+
.footer-banner a:hover {
|
1868
|
+
text-decoration: none; }
|
1869
|
+
.footer-banner ul {
|
1870
|
+
list-style-type: none;
|
1871
|
+
margin: 0 0 26px; }
|
1872
|
+
.footer-banner ul li {
|
1873
|
+
border-top: 1px solid #1bc6a5;
|
1874
|
+
line-height: 19px;
|
1875
|
+
padding: 6px 0; }
|
1876
|
+
.footer-banner ul li:first-child {
|
1877
|
+
border-top: none;
|
1878
|
+
padding-top: 1px; }
|
1879
|
+
|
1880
|
+
.video-js {
|
1881
|
+
background-color: #34495e;
|
1882
|
+
border-radius: 6px 6px 0 0;
|
1883
|
+
margin-top: -95px;
|
1884
|
+
position: relative;
|
1885
|
+
padding: 0;
|
1886
|
+
font-size: 10px;
|
1887
|
+
vertical-align: middle; }
|
1888
|
+
.video-js .vjs-tech {
|
1889
|
+
border-radius: 6px 6px 0 0;
|
1890
|
+
position: absolute;
|
1891
|
+
top: 0;
|
1892
|
+
left: 0;
|
1893
|
+
width: 100%;
|
1894
|
+
height: 100%; }
|
1895
|
+
.video-js:-moz-full-screen {
|
1896
|
+
position: absolute; }
|
1897
|
+
|
1898
|
+
body.vjs-full-window {
|
1899
|
+
padding: 0;
|
1900
|
+
margin: 0;
|
1901
|
+
height: 100%;
|
1902
|
+
overflow-y: auto; }
|
1903
|
+
|
1904
|
+
.video-js.vjs-fullscreen {
|
1905
|
+
position: fixed;
|
1906
|
+
overflow: hidden;
|
1907
|
+
z-index: 1000;
|
1908
|
+
left: 0;
|
1909
|
+
top: 0;
|
1910
|
+
bottom: 0;
|
1911
|
+
right: 0;
|
1912
|
+
width: 100% !important;
|
1913
|
+
height: 100% !important;
|
1914
|
+
_position: absolute; }
|
1915
|
+
.video-js:-webkit-full-screen {
|
1916
|
+
width: 100% !important;
|
1917
|
+
height: 100% !important; }
|
1918
|
+
|
1919
|
+
.vjs-poster {
|
1920
|
+
margin: 0 auto;
|
1921
|
+
padding: 0;
|
1922
|
+
cursor: pointer;
|
1923
|
+
position: relative;
|
1924
|
+
width: 100%;
|
1925
|
+
max-height: 100%; }
|
1926
|
+
|
1927
|
+
.video-js .vjs-text-track-display {
|
1928
|
+
text-align: center;
|
1929
|
+
position: absolute;
|
1930
|
+
bottom: 4em;
|
1931
|
+
left: 1em;
|
1932
|
+
right: 1em;
|
1933
|
+
font-family: "Lato", sans-serif; }
|
1934
|
+
.video-js .vjs-text-track {
|
1935
|
+
display: none;
|
1936
|
+
color: white;
|
1937
|
+
font-size: 1.4em;
|
1938
|
+
text-align: center;
|
1939
|
+
margin-bottom: 0.1em;
|
1940
|
+
background: black;
|
1941
|
+
background: rgba(0, 0, 0, 0.5); }
|
1942
|
+
.video-js .vjs-subtitles {
|
1943
|
+
color: white; }
|
1944
|
+
.video-js .vjs-captions {
|
1945
|
+
color: #ffcc66; }
|
1946
|
+
|
1947
|
+
.vjs-tt-cue {
|
1948
|
+
display: block; }
|
1949
|
+
|
1950
|
+
.vjs-fade-in {
|
1951
|
+
visibility: visible !important;
|
1952
|
+
opacity: 1 !important;
|
1953
|
+
-webkit-transition: visibility 0s linear 0s, opacity 0.3s linear;
|
1954
|
+
-moz-transition: visibility 0s linear 0s, opacity 0.3s linear;
|
1955
|
+
-o-transition: visibility 0s linear 0s, opacity 0.3s linear;
|
1956
|
+
transition: visibility 0s linear 0s, opacity 0.3s linear;
|
1957
|
+
-webkit-backface-visibility: hidden; }
|
1958
|
+
|
1959
|
+
.vjs-fade-out {
|
1960
|
+
visibility: hidden !important;
|
1961
|
+
opacity: 0 !important;
|
1962
|
+
-webkit-transition: visibility 0s linear 1.5s, opacity 1.5s linear;
|
1963
|
+
-moz-transition: visibility 0s linear 1.5s, opacity 1.5s linear;
|
1964
|
+
-o-transition: visibility 0s linear 1.5s, opacity 1.5s linear;
|
1965
|
+
transition: visibility 0s linear 1.5s, opacity 1.5s linear;
|
1966
|
+
-webkit-backface-visibility: hidden; }
|
1967
|
+
|
1968
|
+
.vjs-controls {
|
1969
|
+
border-radius: 0 0 6px 6px;
|
1970
|
+
position: absolute;
|
1971
|
+
bottom: -47px;
|
1972
|
+
left: 0;
|
1973
|
+
right: 0;
|
1974
|
+
margin: 0;
|
1975
|
+
padding: 0;
|
1976
|
+
height: 47px;
|
1977
|
+
color: white;
|
1978
|
+
background: #2c3e50; }
|
1979
|
+
.vjs-controls.vjs-fade-out {
|
1980
|
+
visibility: visible !important;
|
1981
|
+
opacity: 1 !important; }
|
1982
|
+
|
1983
|
+
.vjs-control {
|
1984
|
+
background-position: center center;
|
1985
|
+
background-repeat: no-repeat;
|
1986
|
+
position: relative;
|
1987
|
+
float: left;
|
1988
|
+
text-align: center;
|
1989
|
+
margin: 0;
|
1990
|
+
padding: 0;
|
1991
|
+
height: 18px;
|
1992
|
+
width: 18px; }
|
1993
|
+
.vjs-control:focus {
|
1994
|
+
outline: 0; }
|
1995
|
+
.vjs-control div {
|
1996
|
+
background-position: center center;
|
1997
|
+
background-repeat: no-repeat; }
|
1998
|
+
|
1999
|
+
.vjs-control-text {
|
2000
|
+
border: 0;
|
2001
|
+
clip: rect(0 0 0 0);
|
2002
|
+
height: 1px;
|
2003
|
+
margin: -1px;
|
2004
|
+
overflow: hidden;
|
2005
|
+
padding: 0;
|
2006
|
+
position: absolute;
|
2007
|
+
width: 1px; }
|
2008
|
+
|
2009
|
+
.vjs-play-control {
|
2010
|
+
cursor: pointer !important;
|
2011
|
+
height: 47px;
|
2012
|
+
left: 0;
|
2013
|
+
position: absolute;
|
2014
|
+
top: 0;
|
2015
|
+
width: 58px; }
|
2016
|
+
|
2017
|
+
.vjs-paused .vjs-play-control {
|
2018
|
+
background: url("../images/video/play.png") center -31px no-repeat;
|
2019
|
+
background-size: 16px 64px; }
|
2020
|
+
.vjs-paused .vjs-play-control:hover div {
|
2021
|
+
opacity: 0; }
|
2022
|
+
.vjs-paused .vjs-play-control div {
|
2023
|
+
background: url("../images/video/play.png") center 15px no-repeat;
|
2024
|
+
background-size: 16px 64px;
|
2025
|
+
height: 47px;
|
2026
|
+
-webkit-transition: opacity 0.25s;
|
2027
|
+
-moz-transition: opacity 0.25s;
|
2028
|
+
-o-transition: opacity 0.25s;
|
2029
|
+
transition: opacity 0.25s;
|
2030
|
+
-webkit-backface-visibility: hidden; }
|
2031
|
+
|
2032
|
+
.vjs-playing .vjs-play-control {
|
2033
|
+
background: url("../images/video/pause.png") center -31px no-repeat;
|
2034
|
+
background-size: 15px 64px; }
|
2035
|
+
.vjs-playing .vjs-play-control:hover div {
|
2036
|
+
opacity: 0; }
|
2037
|
+
.vjs-playing .vjs-play-control div {
|
2038
|
+
background: url("../images/video/pause.png") center 15px no-repeat;
|
2039
|
+
background-size: 15px 64px;
|
2040
|
+
height: 47px;
|
2041
|
+
-webkit-transition: opacity 0.25s;
|
2042
|
+
-moz-transition: opacity 0.25s;
|
2043
|
+
-o-transition: opacity 0.25s;
|
2044
|
+
transition: opacity 0.25s;
|
2045
|
+
-webkit-backface-visibility: hidden; }
|
2046
|
+
|
2047
|
+
.vjs-rewind-control {
|
2048
|
+
width: 5em;
|
2049
|
+
cursor: pointer !important; }
|
2050
|
+
.vjs-rewind-control div {
|
2051
|
+
width: 19px;
|
2052
|
+
height: 16px;
|
2053
|
+
background: url("video-js.png");
|
2054
|
+
margin: 0.5em auto 0; }
|
2055
|
+
|
2056
|
+
.vjs-mute-control {
|
2057
|
+
background: url("../images/video/volume-full.png") center -48px no-repeat;
|
2058
|
+
background-size: 16px 64px;
|
2059
|
+
cursor: pointer !important;
|
2060
|
+
position: absolute;
|
2061
|
+
right: 51px;
|
2062
|
+
top: 14px; }
|
2063
|
+
.vjs-mute-control:hover div, .vjs-mute-control:focus div {
|
2064
|
+
opacity: 0; }
|
2065
|
+
.vjs-mute-control.vjs-vol-0,
|
2066
|
+
.vjs-mute-control.vjs-vol-0 div {
|
2067
|
+
background-image: url("../images/video/volume-off.png"); }
|
2068
|
+
.vjs-mute-control div {
|
2069
|
+
background: #2c3e50 url("../images/video/volume-full.png") no-repeat center 2px;
|
2070
|
+
background-size: 16px 64px;
|
2071
|
+
height: 18px;
|
2072
|
+
-webkit-transition: opacity 0.25s;
|
2073
|
+
-moz-transition: opacity 0.25s;
|
2074
|
+
-o-transition: opacity 0.25s;
|
2075
|
+
transition: opacity 0.25s;
|
2076
|
+
-webkit-backface-visibility: hidden; }
|
2077
|
+
|
2078
|
+
.vjs-volume-control,
|
2079
|
+
.vjs-volume-level,
|
2080
|
+
.vjs-volume-handle,
|
2081
|
+
.vjs-volume-bar {
|
2082
|
+
display: none; }
|
2083
|
+
|
2084
|
+
.vjs-progress-control {
|
2085
|
+
border-radius: 32px;
|
2086
|
+
position: absolute;
|
2087
|
+
left: 60px;
|
2088
|
+
right: 180px;
|
2089
|
+
height: 12px;
|
2090
|
+
width: auto;
|
2091
|
+
top: 18px;
|
2092
|
+
background: #eff2f6; }
|
2093
|
+
|
2094
|
+
.vjs-progress-holder {
|
2095
|
+
position: relative;
|
2096
|
+
cursor: pointer !important;
|
2097
|
+
padding: 0;
|
2098
|
+
margin: 0;
|
2099
|
+
height: 12px; }
|
2100
|
+
|
2101
|
+
.vjs-play-progress, .vjs-load-progress {
|
2102
|
+
border-radius: 32px;
|
2103
|
+
position: absolute;
|
2104
|
+
display: block;
|
2105
|
+
height: 12px;
|
2106
|
+
margin: 0;
|
2107
|
+
padding: 0;
|
2108
|
+
left: 0;
|
2109
|
+
top: 0; }
|
2110
|
+
|
2111
|
+
.vjs-play-progress {
|
2112
|
+
background: #1abc9c;
|
2113
|
+
left: -1px; }
|
2114
|
+
|
2115
|
+
.vjs-load-progress {
|
2116
|
+
background: #d6dbe0;
|
2117
|
+
border-radius: 32px 0 0 32px; }
|
2118
|
+
.vjs-load-progress[style*='100%'], .vjs-load-progress[style*='99%'] {
|
2119
|
+
border-radius: 32px; }
|
2120
|
+
|
2121
|
+
.vjs-seek-handle {
|
2122
|
+
background-color: #16a085;
|
2123
|
+
border-radius: 50%;
|
2124
|
+
position: absolute;
|
2125
|
+
width: 18px;
|
2126
|
+
height: 18px;
|
2127
|
+
margin: -3px 0 0 1px;
|
2128
|
+
left: 0;
|
2129
|
+
top: 0;
|
2130
|
+
-webkit-transition: background-color 0.25s;
|
2131
|
+
-moz-transition: background-color 0.25s;
|
2132
|
+
-o-transition: background-color 0.25s;
|
2133
|
+
transition: background-color 0.25s;
|
2134
|
+
-webkit-backface-visibility: hidden; }
|
2135
|
+
.vjs-seek-handle[style*='95.'] {
|
2136
|
+
margin-left: 3px; }
|
2137
|
+
.vjs-seek-handle[style='left: 0%;'] {
|
2138
|
+
margin-left: -2px; }
|
2139
|
+
.vjs-seek-handle:hover, .vjs-seek-handle:focus {
|
2140
|
+
background-color: #138d75; }
|
2141
|
+
.vjs-seek-handle:active {
|
2142
|
+
background-color: #117e69; }
|
2143
|
+
|
2144
|
+
.vjs-time-controls {
|
2145
|
+
position: absolute;
|
2146
|
+
height: 20px;
|
2147
|
+
width: 50px;
|
2148
|
+
top: 16px;
|
2149
|
+
font: 300 13px "Lato", sans-serif; }
|
2150
|
+
|
2151
|
+
.vjs-current-time {
|
2152
|
+
right: 128px;
|
2153
|
+
text-align: right; }
|
2154
|
+
|
2155
|
+
.vjs-duration {
|
2156
|
+
color: #667687;
|
2157
|
+
right: 69px;
|
2158
|
+
text-align: left; }
|
2159
|
+
|
2160
|
+
.vjs-remaining-time {
|
2161
|
+
display: none; }
|
2162
|
+
|
2163
|
+
.vjs-time-divider {
|
2164
|
+
color: #667687;
|
2165
|
+
font-size: 14px;
|
2166
|
+
position: absolute;
|
2167
|
+
right: 121px;
|
2168
|
+
top: 15px; }
|
2169
|
+
|
2170
|
+
.vjs-secondary-controls {
|
2171
|
+
float: right; }
|
2172
|
+
|
2173
|
+
.vjs-fullscreen-control {
|
2174
|
+
background-image: url("../images/video/fullscreen.png");
|
2175
|
+
background-position: center -47px;
|
2176
|
+
background-size: 15px 64px;
|
2177
|
+
cursor: pointer !important;
|
2178
|
+
position: absolute;
|
2179
|
+
right: 17px;
|
2180
|
+
top: 13px; }
|
2181
|
+
.vjs-fullscreen-control:hover div, .vjs-fullscreen-control:focus div {
|
2182
|
+
opacity: 0; }
|
2183
|
+
.vjs-fullscreen-control div {
|
2184
|
+
height: 18px;
|
2185
|
+
background: url("../images/video/fullscreen.png") no-repeat center 2px;
|
2186
|
+
background-size: 15px 64px;
|
2187
|
+
-webkit-transition: opacity 0.25s;
|
2188
|
+
-moz-transition: opacity 0.25s;
|
2189
|
+
-o-transition: opacity 0.25s;
|
2190
|
+
transition: opacity 0.25s;
|
2191
|
+
-webkit-backface-visibility: hidden; }
|
2192
|
+
|
2193
|
+
.vjs-menu-button {
|
2194
|
+
display: none !important; }
|
2195
|
+
|
2196
|
+
@-webkit-keyframes sharp {
|
2197
|
+
0% {
|
2198
|
+
background: #e74c3c;
|
2199
|
+
border-radius: 10px;
|
2200
|
+
-webkit-transform: rotate(0deg);
|
2201
|
+
-moz-transform: rotate(0deg);
|
2202
|
+
-ms-transform: rotate(0deg);
|
2203
|
+
-o-transform: rotate(0deg);
|
2204
|
+
transform: rotate(0deg); }
|
2205
|
+
|
2206
|
+
50% {
|
2207
|
+
background: #ebedee;
|
2208
|
+
border-radius: 0;
|
2209
|
+
-webkit-transform: rotate(180deg);
|
2210
|
+
-moz-transform: rotate(180deg);
|
2211
|
+
-ms-transform: rotate(180deg);
|
2212
|
+
-o-transform: rotate(180deg);
|
2213
|
+
transform: rotate(180deg); }
|
2214
|
+
|
2215
|
+
100% {
|
2216
|
+
background: #e74c3c;
|
2217
|
+
border-radius: 10px;
|
2218
|
+
-webkit-transform: rotate(360deg);
|
2219
|
+
-moz-transform: rotate(360deg);
|
2220
|
+
-ms-transform: rotate(360deg);
|
2221
|
+
-o-transform: rotate(360deg);
|
2222
|
+
transform: rotate(360deg); } }
|
2223
|
+
|
2224
|
+
@-moz-keyframes sharp {
|
2225
|
+
0% {
|
2226
|
+
background: #e74c3c;
|
2227
|
+
border-radius: 10px;
|
2228
|
+
-webkit-transform: rotate(0deg);
|
2229
|
+
-moz-transform: rotate(0deg);
|
2230
|
+
-ms-transform: rotate(0deg);
|
2231
|
+
-o-transform: rotate(0deg);
|
2232
|
+
transform: rotate(0deg); }
|
2233
|
+
|
2234
|
+
50% {
|
2235
|
+
background: #ebedee;
|
2236
|
+
border-radius: 0;
|
2237
|
+
-webkit-transform: rotate(180deg);
|
2238
|
+
-moz-transform: rotate(180deg);
|
2239
|
+
-ms-transform: rotate(180deg);
|
2240
|
+
-o-transform: rotate(180deg);
|
2241
|
+
transform: rotate(180deg); }
|
2242
|
+
|
2243
|
+
100% {
|
2244
|
+
background: #e74c3c;
|
2245
|
+
border-radius: 10px;
|
2246
|
+
-webkit-transform: rotate(360deg);
|
2247
|
+
-moz-transform: rotate(360deg);
|
2248
|
+
-ms-transform: rotate(360deg);
|
2249
|
+
-o-transform: rotate(360deg);
|
2250
|
+
transform: rotate(360deg); } }
|
2251
|
+
|
2252
|
+
@-o-keyframes sharp {
|
2253
|
+
0% {
|
2254
|
+
background: #e74c3c;
|
2255
|
+
border-radius: 10px;
|
2256
|
+
-webkit-transform: rotate(0deg);
|
2257
|
+
-moz-transform: rotate(0deg);
|
2258
|
+
-ms-transform: rotate(0deg);
|
2259
|
+
-o-transform: rotate(0deg);
|
2260
|
+
transform: rotate(0deg); }
|
2261
|
+
|
2262
|
+
50% {
|
2263
|
+
background: #ebedee;
|
2264
|
+
border-radius: 0;
|
2265
|
+
-webkit-transform: rotate(180deg);
|
2266
|
+
-moz-transform: rotate(180deg);
|
2267
|
+
-ms-transform: rotate(180deg);
|
2268
|
+
-o-transform: rotate(180deg);
|
2269
|
+
transform: rotate(180deg); }
|
2270
|
+
|
2271
|
+
100% {
|
2272
|
+
background: #e74c3c;
|
2273
|
+
border-radius: 10px;
|
2274
|
+
-webkit-transform: rotate(360deg);
|
2275
|
+
-moz-transform: rotate(360deg);
|
2276
|
+
-ms-transform: rotate(360deg);
|
2277
|
+
-o-transform: rotate(360deg);
|
2278
|
+
transform: rotate(360deg); } }
|
2279
|
+
|
2280
|
+
@keyframes sharp {
|
2281
|
+
0% {
|
2282
|
+
background: #e74c3c;
|
2283
|
+
border-radius: 10px;
|
2284
|
+
-webkit-transform: rotate(0deg);
|
2285
|
+
-moz-transform: rotate(0deg);
|
2286
|
+
-ms-transform: rotate(0deg);
|
2287
|
+
-o-transform: rotate(0deg);
|
2288
|
+
transform: rotate(0deg); }
|
2289
|
+
|
2290
|
+
50% {
|
2291
|
+
background: #ebedee;
|
2292
|
+
border-radius: 0;
|
2293
|
+
-webkit-transform: rotate(180deg);
|
2294
|
+
-moz-transform: rotate(180deg);
|
2295
|
+
-ms-transform: rotate(180deg);
|
2296
|
+
-o-transform: rotate(180deg);
|
2297
|
+
transform: rotate(180deg); }
|
2298
|
+
|
2299
|
+
100% {
|
2300
|
+
background: #e74c3c;
|
2301
|
+
border-radius: 10px;
|
2302
|
+
-webkit-transform: rotate(360deg);
|
2303
|
+
-moz-transform: rotate(360deg);
|
2304
|
+
-ms-transform: rotate(360deg);
|
2305
|
+
-o-transform: rotate(360deg);
|
2306
|
+
transform: rotate(360deg); } }
|
2307
|
+
|
2308
|
+
.vjs-loading-spinner {
|
2309
|
+
background: #ebedee;
|
2310
|
+
border-radius: 10px;
|
2311
|
+
display: none;
|
2312
|
+
height: 16px;
|
2313
|
+
left: 50%;
|
2314
|
+
margin: -8px 0 0 -8px;
|
2315
|
+
position: absolute;
|
2316
|
+
top: 50%;
|
2317
|
+
width: 16px;
|
2318
|
+
-webkit-animation: sharp 2s ease infinite;
|
2319
|
+
-moz-animation: sharp 2s ease infinite;
|
2320
|
+
-o-animation: sharp 2s ease infinite;
|
2321
|
+
animation: sharp 2s ease infinite; }
|
2322
|
+
|
2323
|
+
.login {
|
2324
|
+
background: url("../images/login/imac.png") 0 0 no-repeat;
|
2325
|
+
background-size: 940px 778px;
|
2326
|
+
color: white;
|
2327
|
+
margin-bottom: 77px;
|
2328
|
+
padding: 38px 38px 267px;
|
2329
|
+
position: relative; }
|
2330
|
+
|
2331
|
+
.login-screen {
|
2332
|
+
background-color: #1abc9c;
|
2333
|
+
min-height: 317px;
|
2334
|
+
padding: 123px 199px 33px 306px; }
|
2335
|
+
|
2336
|
+
.login-icon {
|
2337
|
+
left: 200px;
|
2338
|
+
position: absolute;
|
2339
|
+
top: 160px;
|
2340
|
+
width: 96px; }
|
2341
|
+
.login-icon > img {
|
2342
|
+
display: block;
|
2343
|
+
margin-bottom: 6px;
|
2344
|
+
width: 100%; }
|
2345
|
+
.login-icon > h4 {
|
2346
|
+
font-size: 17px;
|
2347
|
+
font-weight: 200;
|
2348
|
+
line-height: 34px;
|
2349
|
+
opacity: 0.95; }
|
2350
|
+
.login-icon > h4 small {
|
2351
|
+
color: inherit;
|
2352
|
+
display: block;
|
2353
|
+
font-size: inherit;
|
2354
|
+
font-weight: 700; }
|
2355
|
+
|
2356
|
+
.login-form {
|
2357
|
+
background-color: #eceff1;
|
2358
|
+
border-radius: 6px;
|
2359
|
+
padding: 24px 23px 20px;
|
2360
|
+
position: relative; }
|
2361
|
+
.login-form:before {
|
2362
|
+
content: "";
|
2363
|
+
border-style: solid;
|
2364
|
+
border-width: 12px 12px 12px 0;
|
2365
|
+
border-color: transparent #eceff1 transparent transparent;
|
2366
|
+
height: 0px;
|
2367
|
+
position: absolute;
|
2368
|
+
left: -12px;
|
2369
|
+
top: 35px;
|
2370
|
+
width: 0;
|
2371
|
+
-webkit-transform: rotate(360deg); }
|
2372
|
+
.login-form .control-group {
|
2373
|
+
margin-bottom: 6px;
|
2374
|
+
position: relative; }
|
2375
|
+
.login-form .login-field {
|
2376
|
+
border-color: transparent;
|
2377
|
+
font-size: 17px;
|
2378
|
+
padding-bottom: 11px;
|
2379
|
+
padding-top: 11px;
|
2380
|
+
text-indent: 3px;
|
2381
|
+
width: 299px; }
|
2382
|
+
.login-form .login-field:focus + .login-field-icon {
|
2383
|
+
color: #1abc9c; }
|
2384
|
+
.login-form .login-field-icon {
|
2385
|
+
color: #bfc9ca;
|
2386
|
+
font-size: 16px;
|
2387
|
+
position: absolute;
|
2388
|
+
right: 13px;
|
2389
|
+
top: 14px;
|
2390
|
+
-webkit-transition: 0.25s;
|
2391
|
+
-moz-transition: 0.25s;
|
2392
|
+
-o-transition: 0.25s;
|
2393
|
+
transition: 0.25s;
|
2394
|
+
-webkit-backface-visibility: hidden; }
|
2395
|
+
|
2396
|
+
.login-link {
|
2397
|
+
color: #bfc9ca;
|
2398
|
+
display: block;
|
2399
|
+
font-size: 13px;
|
2400
|
+
margin-top: 15px;
|
2401
|
+
text-align: center; }
|
2402
|
+
|
2403
|
+
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 3 / 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 2) {
|
2404
|
+
.login {
|
2405
|
+
background-image: url("../images/login/imac-2x.png"); } }
|
2406
|
+
.ptn, .pvn, .pan {
|
2407
|
+
padding-top: 0; }
|
2408
|
+
|
2409
|
+
.ptx, .pvx, .pax {
|
2410
|
+
padding-top: 3px; }
|
2411
|
+
|
2412
|
+
.pts, .pvs, .pas {
|
2413
|
+
padding-top: 5px; }
|
2414
|
+
|
2415
|
+
.ptm, .pvm, .pam {
|
2416
|
+
padding-top: 10px; }
|
2417
|
+
|
2418
|
+
.ptl, .pvl, .pal {
|
2419
|
+
padding-top: 20px; }
|
2420
|
+
|
2421
|
+
.prn, .phn, .pan {
|
2422
|
+
padding-right: 0; }
|
2423
|
+
|
2424
|
+
.prx, .phx, .pax {
|
2425
|
+
padding-right: 3px; }
|
2426
|
+
|
2427
|
+
.prs, .phs, .pas {
|
2428
|
+
padding-right: 5px; }
|
2429
|
+
|
2430
|
+
.prm, .phm, .pam {
|
2431
|
+
padding-right: 10px; }
|
2432
|
+
|
2433
|
+
.prl, .phl, .pal {
|
2434
|
+
padding-right: 20px; }
|
2435
|
+
|
2436
|
+
.pbn, .pvn, .pan {
|
2437
|
+
padding-bottom: 0; }
|
2438
|
+
|
2439
|
+
.pbx, .pvx, .pax {
|
2440
|
+
padding-bottom: 3px; }
|
2441
|
+
|
2442
|
+
.pbs, .pvs, .pas {
|
2443
|
+
padding-bottom: 5px; }
|
2444
|
+
|
2445
|
+
.pbm, .pvm, .pam {
|
2446
|
+
padding-bottom: 10px; }
|
2447
|
+
|
2448
|
+
.pbl, .pvl, .pal {
|
2449
|
+
padding-bottom: 20px; }
|
2450
|
+
|
2451
|
+
.pln, .phn, .pan {
|
2452
|
+
padding-left: 0; }
|
2453
|
+
|
2454
|
+
.plx, .phx, .pax {
|
2455
|
+
padding-left: 3px; }
|
2456
|
+
|
2457
|
+
.pls, .phs, .pas {
|
2458
|
+
padding-left: 5px; }
|
2459
|
+
|
2460
|
+
.plm, .phm, .pam {
|
2461
|
+
padding-left: 10px; }
|
2462
|
+
|
2463
|
+
.pll, .phl, .pal {
|
2464
|
+
padding-left: 20px; }
|
2465
|
+
|
2466
|
+
.mtn, .mvn, .man {
|
2467
|
+
margin-top: 0px; }
|
2468
|
+
|
2469
|
+
.mtx, .mvx, .max {
|
2470
|
+
margin-top: 3px; }
|
2471
|
+
|
2472
|
+
.mts, .mvs, .mas {
|
2473
|
+
margin-top: 5px; }
|
2474
|
+
|
2475
|
+
.mtm, .mvm, .mam {
|
2476
|
+
margin-top: 10px; }
|
2477
|
+
|
2478
|
+
.mtl, .mvl, .mal {
|
2479
|
+
margin-top: 20px; }
|
2480
|
+
|
2481
|
+
.mrn, .mhn, .man {
|
2482
|
+
margin-right: 0px; }
|
2483
|
+
|
2484
|
+
.mrx, .mhx, .max {
|
2485
|
+
margin-right: 3px; }
|
2486
|
+
|
2487
|
+
.mrs, .mhs, .mas {
|
2488
|
+
margin-right: 5px; }
|
2489
|
+
|
2490
|
+
.mrm, .mhm, .mam {
|
2491
|
+
margin-right: 10px; }
|
2492
|
+
|
2493
|
+
.mrl, .mhl, .mal {
|
2494
|
+
margin-right: 20px; }
|
2495
|
+
|
2496
|
+
.mbn, .mvn, .man {
|
2497
|
+
margin-bottom: 0px; }
|
2498
|
+
|
2499
|
+
.mbx, .mvx, .max {
|
2500
|
+
margin-bottom: 3px; }
|
2501
|
+
|
2502
|
+
.mbs, .mvs, .mas {
|
2503
|
+
margin-bottom: 5px; }
|
2504
|
+
|
2505
|
+
.mbm, .mvm, .mam {
|
2506
|
+
margin-bottom: 10px; }
|
2507
|
+
|
2508
|
+
.mbl, .mvl, .mal {
|
2509
|
+
margin-bottom: 20px; }
|
2510
|
+
|
2511
|
+
.mln, .mhn, .man {
|
2512
|
+
margin-left: 0px; }
|
2513
|
+
|
2514
|
+
.mlx, .mhx, .max {
|
2515
|
+
margin-left: 3px; }
|
2516
|
+
|
2517
|
+
.mls, .mhs, .mas {
|
2518
|
+
margin-left: 5px; }
|
2519
|
+
|
2520
|
+
.mlm, .mhm, .mam {
|
2521
|
+
margin-left: 10px; }
|
2522
|
+
|
2523
|
+
.mll, .mhl, .mal {
|
2524
|
+
margin-left: 20px; }
|