Browse Source

Quality profile styling

pull/5180/head
Ruud 10 years ago
parent
commit
8391656af9
  1. 2
      couchpotato/core/plugins/category/static/category.js
  2. 50
      couchpotato/core/plugins/profile/static/profile.js
  3. 257
      couchpotato/core/plugins/profile/static/profile.scss
  4. 5
      couchpotato/core/plugins/quality/static/quality.js
  5. 33
      couchpotato/core/plugins/quality/static/quality.scss
  6. 6
      couchpotato/static/fonts/config.json
  7. BIN
      couchpotato/static/fonts/icons.eot
  8. 1
      couchpotato/static/fonts/icons.svg
  9. BIN
      couchpotato/static/fonts/icons.ttf
  10. BIN
      couchpotato/static/fonts/icons.woff
  11. 11
      couchpotato/static/style/_fonts.scss
  12. 62
      couchpotato/static/style/combined.min.css

2
couchpotato/core/plugins/category/static/category.js

@ -125,7 +125,7 @@ var CategoryListBase = new Class({
new Element('span.category_label', {
'text': category.data.label
}),
new Element('span.handle')
new Element('span.handle.icon-handle')
).inject(category_list);
});

50
couchpotato/core/plugins/profile/static/profile.js

@ -270,47 +270,42 @@ Profile.Type = new Class({
var data = self.data;
self.el = new Element('li.type').adopt(
new Element('span.quality_type').grab(
new Element('span.quality_type.select_wrapper.icon-dropdown').grab(
self.fillQualities()
),
self.finish_container = new Element('label.finish').adopt(
new Element('span.finish').grab(
self.finish = new Element('input.finish[type=checkbox]', {
'checked': data.finish !== undefined ? data.finish : 1,
'events': {
'change': function(){
if(self.el == self.el.getParent().getElement(':first-child')){
self.finish_class.check();
alert('Top quality always finishes the search');
return;
}
self.fireEvent('change');
self.finish = new Element('input.finish[type=checkbox]', {
'checked': data.finish !== undefined ? data.finish : 1,
'events': {
'change': function(){
if(self.el == self.el.getParent().getElement(':first-child')){
alert('Top quality always finishes the search');
return;
}
self.fireEvent('change');
}
})
),
}
}),
new Element('span.check_label[text=finish]')
),
self['3d_container'] = new Element('label.threed').adopt(
new Element('span.3d').grab(
self['3d'] = new Element('input.3d[type=checkbox]', {
'checked': data['3d'] !== undefined ? data['3d'] : 0,
'events': {
'change': function(){
self.fireEvent('change');
}
self['3d'] = new Element('input.3d[type=checkbox]', {
'checked': data['3d'] !== undefined ? data['3d'] : 0,
'events': {
'change': function(){
self.fireEvent('change');
}
})
),
}
}),
new Element('span.check_label[text=3D]')
),
new Element('span.delete.icon2', {
new Element('span.delete.icon-cancel', {
'events': {
'click': self.del.bind(self)
}
}),
new Element('span.handle')
new Element('span.handle.icon-handle')
);
self.el[self.data.quality ? 'removeClass' : 'addClass']('is_empty');
@ -318,9 +313,6 @@ Profile.Type = new Class({
if(self.data.quality && Quality.getQuality(self.data.quality).allow_3d)
self.el.addClass('allow_3d');
self.finish_class = new Form.Check(self.finish);
self['3d_class'] = new Form.Check(self['3d']);
},
fillQualities: function(){

257
couchpotato/core/plugins/profile/static/profile.scss

@ -1,197 +1,152 @@
@import "couchpotato/static/style/_mixins";
.add_new_profile {
padding: 20px;
display: block;
text-align: center;
font-size: 20px;
border-bottom: 1px solid rgba(255,255,255,0.2);
border-bottom: 1px solid $theme_off;
}
.profile {
border-bottom: 1px solid rgba(255,255,255,0.2);
position: relative;
}
margin-bottom: 20px;
.profile > .delete {
position: absolute;
padding: 16px;
right: 0;
cursor: pointer;
opacity: 0.6;
color: #fd5353;
.quality_label input {
font-weight: bold;
}
.profile > .delete:hover {
opacity: 1;
}
.profile .ctrlHolder:hover {
background: none;
}
.ctrlHolder {
.profile .qualities {
min-height: 80px;
}
.types {
flex: 1 1 auto;
min-width: 360px;
.profile .formHint {
width: 210px !important;
vertical-align: top !important;
margin: 0 !important;
padding-left: 3px !important;
opacity: 0.1;
}
.profile:hover .formHint {
opacity: 1;
}
.type {
display: flex;
flex-row: row nowrap;
align-items: center;
padding: 2px 0;
.profile .wait_for {
padding-top: 0;
padding-bottom: 20px;
}
label {
min-width: 0;
margin-left: $padding/2;
.profile .wait_for input {
margin: 0 5px !important;
}
.profile .wait_for .minimum_score_input {
width: 40px !important;
text-align: left;
}
.profile .types {
padding: 0;
margin: 0 20px 0 -4px;
display: inline-block;
}
span {
font-size: .9em;
}
}
.profile .types li {
padding: 3px 5px;
border-bottom: 1px solid rgba(255,255,255,0.2);
list-style: none;
}
.profile .types li:last-child { border: 0; }
input[type=checkbox] {
margin-right: 3px;
}
.profile .types li > * {
display: inline-block;
vertical-align: middle;
line-height: 0;
margin-right: 10px;
}
.delete, .handle {
margin-left: $padding/4;
width: 20px;
font-size: 20px;
opacity: .1;
text-align: center;
cursor: pointer;
&.handle {
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: grab;
}
&:hover {
opacity: 1;
}
}
.profile .type .check {
margin-top: -1px;
&.is_empty {
.delete, .handle {
display: none;
}
}
}
.profile .quality_type select {
width: 120px;
margin-left: -1px;
}
}
.profile .types li.is_empty .check,
.profile .types li.is_empty .delete,
.profile .types li.is_empty .handle,
.profile .types li.is_empty .check_label {
visibility: hidden;
}
&.wait_for.wait_for {
display: block;
.profile .types .type label {
display: inline-block;
width: auto;
float: none;
text-transform: uppercase;
font-size: 11px;
font-weight: normal;
margin-right: 20px;
text-shadow: none;
vertical-align: bottom;
padding: 0;
height: 17px;
input {
min-width: 0;
width: 40px;
text-align: center;
margin: 0 2px;
}
.profile .types .type label .check {
margin-right: 5px;
}
.profile .types .type label .check_label {
display: inline-block;
vertical-align: top;
height: 16px;
line-height: 13px;
}
.profile .types .type .threed {
display: none;
}
.advanced {
display: none;
color: $primary_color;
.profile .types .type.allow_3d .threed {
display: inline-block;
.show_advanced & {
display: inline;
}
}
.profile .types .type .handle {
background: url('../../images/handle.png') center;
display: inline-block;
height: 20px;
width: 20px;
cursor: -moz-grab;
cursor: -webkit-grab;
cursor: grab;
margin: 0;
}
.profile .types .type .delete {
height: 20px;
width: 20px;
line-height: 20px;
visibility: hidden;
cursor: pointer;
font-size: 13px;
color: #fd5353;
}
.profile .types .type:not(.allow_3d) .delete {
margin-left: 55px;
}
.profile .types .type:hover:not(.is_empty) .delete {
visibility: visible;
.formHint {
}
#profile_ordering {
}
}
#profile_ordering ul {
float: left;
#profile_ordering {
ul {
list-style: none;
margin: 0;
width: 275px;
padding: 0;
}
#profile_ordering li {
border-bottom: 1px solid rgba(255,255,255,0.2);
padding: 0 5px;
li {
border-bottom: 1px solid $theme_off;
padding: 5px;
display: flex;
align-items: center;
&:hover {
background: $theme_off;
}
#profile_ordering li:last-child { border: 0; }
#profile_ordering li .check {
margin: 2px 10px 0 0;
vertical-align: top;
}
&:last-child { border: 0; }
#profile_ordering li > span {
display: inline-block;
height: 20px;
vertical-align: top;
line-height: 20px;
input[type=checkbox] {
margin: 2px 10px 0 0;
vertical-align: top;
}
> span {
display: inline-block;
height: 20px;
vertical-align: top;
line-height: 20px;
&.profile_label {
flex: 1 1 auto;
}
}
#profile_ordering li .handle {
background: url('../../images/handle.png') center;
width: 20px;
float: right;
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: grab;
.handle {
font-size: 20px;
width: 20px;
float: right;
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: grab;
opacity: .5;
text-align: center;
&:hover {
opacity: 1;
}
}
}
#profile_ordering .formHint {
clear: none;
float: right;
width: 250px;
margin: 0;
.formHint {
}
}

5
couchpotato/core/plugins/quality/static/quality.js

@ -132,11 +132,8 @@ var QualityBase = new Class({
new Element('span.profile_label', {
'text': profile.data.label
}),
new Element('span.handle')
new Element('span.handle.icon-handle')
).inject(self.profiles_list);
new Form.Check(check);
});
// Sortable

33
couchpotato/core/plugins/quality/static/quality.scss

@ -1,26 +1,19 @@
.group_sizes {
}
@import "couchpotato/static/style/_mixins";
.group_sizes .head {
font-weight: bold;
}
.group_sizes {
.group_sizes .ctrlHolder {
padding-top: 4px !important;
padding-bottom: 4px !important;
font-size: 12px;
.item {
.label {
min-width: 150px;
}
.group_sizes .label {
max-width: 120px;
.min, .max {
display: inline-block;
width: 70px !important;
min-width: 0 !important;
margin-right: $padding/2;
text-align: center;
}
}
.group_sizes .min, .group_sizes .max {
text-align: center;
width: 50px;
max-width: 50px;
margin: 0 5px !important;
padding: 0 3px;
display: inline-block;
}
}

6
couchpotato/static/fonts/config.json

@ -127,6 +127,12 @@
"src": "fontawesome"
},
{
"uid": "2cfb3f2b46b34a1790aec0aa846297b6",
"css": "menu",
"code": 59417,
"src": "entypo"
},
{
"uid": "c311c48d79488965b0fab7f9cd12b6b5",
"css": "left-arrow",
"code": 59392,

BIN
couchpotato/static/fonts/icons.eot

Binary file not shown.

1
couchpotato/static/fonts/icons.svg

@ -31,6 +31,7 @@
<glyph glyph-name="refresh" unicode="&#xe816;" d="m843 261q0-3 0-4-36-150-150-243t-267-93q-81 0-157 31t-136 88l-72-72q-11-11-25-11t-25 11-11 25v250q0 14 11 25t25 11h250q14 0 25-11t10-25-10-25l-77-77q40-37 90-57t105-20q74 0 139 37t104 99q6 10 29 66 5 13 17 13h107q8 0 13-6t5-12z m14 446v-250q0-14-10-25t-26-11h-250q-14 0-25 11t-10 25 10 25l77 77q-82 77-194 77-75 0-140-37t-104-99q-6-10-29-66-5-13-17-13h-111q-7 0-13 6t-5 12v4q36 150 151 243t268 93q81 0 158-31t137-88l72 72q11 11 25 11t26-11 10-25z" horiz-adv-x="857.1" />
<glyph glyph-name="home" unicode="&#xe817;" d="m786 296v-267q0-15-11-26t-25-10h-214v214h-143v-214h-214q-15 0-25 10t-11 26v267q0 1 0 2t0 2l321 264 321-264q1-1 1-4z m124 39l-34-41q-5-5-12-6h-2q-7 0-12 3l-386 322-386-322q-7-4-13-4-7 2-12 7l-35 41q-4 5-3 13t6 12l401 334q18 15 42 15t43-15l136-114v109q0 8 5 13t13 5h107q8 0 13-5t5-13v-227l122-102q5-5 6-12t-4-13z" horiz-adv-x="928.6" />
<glyph glyph-name="movie" unicode="&#xe818;" d="m214-43v72q0 14-10 25t-25 10h-72q-14 0-25-10t-11-25v-72q0-14 11-25t25-11h72q14 0 25 11t10 25z m0 214v72q0 14-10 25t-25 11h-72q-14 0-25-11t-11-25v-72q0-14 11-25t25-10h72q14 0 25 10t10 25z m0 215v71q0 15-10 25t-25 11h-72q-14 0-25-11t-11-25v-71q0-15 11-25t25-11h72q14 0 25 11t10 25z m572-429v286q0 14-11 25t-25 11h-429q-14 0-25-11t-10-25v-286q0-14 10-25t25-11h429q15 0 25 11t11 25z m-572 643v71q0 15-10 26t-25 10h-72q-14 0-25-10t-11-26v-71q0-15 11-25t25-11h72q14 0 25 11t10 25z m786-643v72q0 14-11 25t-25 10h-71q-15 0-25-10t-11-25v-72q0-14 11-25t25-11h71q15 0 25 11t11 25z m-214 429v285q0 15-11 26t-25 10h-429q-14 0-25-10t-10-26v-285q0-15 10-25t25-11h429q15 0 25 11t11 25z m214-215v72q0 14-11 25t-25 11h-71q-15 0-25-11t-11-25v-72q0-14 11-25t25-10h71q15 0 25 10t11 25z m0 215v71q0 15-11 25t-25 11h-71q-15 0-25-11t-11-25v-71q0-15 11-25t25-11h71q15 0 25 11t11 25z m0 214v71q0 15-11 26t-25 10h-71q-15 0-25-10t-11-26v-71q0-15 11-25t25-11h71q15 0 25 11t11 25z m71 89v-750q0-37-26-63t-63-26h-893q-36 0-63 26t-26 63v750q0 37 26 63t63 27h893q37 0 63-27t26-63z" horiz-adv-x="1071.4" />
<glyph glyph-name="menu" unicode="&#xe819;" d="m650 400q22 0 36-15t14-35-15-35-35-15l-600 0q-20 0-35 15t-15 35 14 35 36 15l600 0z m-600 100q-20 0-35 15t-15 35 14 35 36 15l600 0q22 0 36-15t14-35-15-35-35-15l-600 0z m600-300q22 0 36-15t14-35-15-35-35-15l-600 0q-20 0-35 15t-15 35 14 35 36 15l600 0z" horiz-adv-x="700" />
</font>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 13 KiB

BIN
couchpotato/static/fonts/icons.ttf

Binary file not shown.

BIN
couchpotato/static/fonts/icons.woff

Binary file not shown.

11
couchpotato/static/style/_fonts.scss

@ -1,11 +1,11 @@
/* Fonts */
@font-face {
font-family: 'icons';
src: url('../fonts/icons.eot?74719541');
src: url('../fonts/icons.eot?74719541#iefix') format('embedded-opentype'),
url('../fonts/icons.woff?74719541') format('woff'),
url('../fonts/icons.ttf?74719541') format('truetype'),
url('../fonts/icons.svg?74719541#icons') format('svg');
src: url('../fonts/icons.eot?74719542');
src: url('../fonts/icons.eot?74719542#iefix') format('embedded-opentype'),
url('../fonts/icons.woff?747195412') format('woff'),
url('../fonts/icons.ttf?74719542') format('truetype'),
url('../fonts/icons.svg?74719542#icons') format('svg');
font-weight: normal;
font-style: normal;
}
@ -44,6 +44,7 @@
.icon-refresh:before { content: '\e816'; }
.icon-home:before { content: '\e817'; }
.icon-movie:before { content: '\e818'; }
.icon-menu:before, .icon-handle:before { content: '\e819'; }
@font-face {
font-family: 'OpenSans';

62
couchpotato/static/style/combined.min.css

@ -318,43 +318,32 @@
.report_popup.report_popup .button{display:inline-block;margin:10px 0;padding:10px;color:#FFF}
.report_popup.report_popup .bug{width:80%;height:80%;max-height:800px;max-width:800px;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-flex-flow:column nowrap;-ms-flex-flow:column nowrap;flex-flow:column nowrap}
.report_popup.report_popup .bug textarea{display:block;width:100%;background:#FFF;padding:20px;overflow:auto;color:#666;height:70%;font-size:12px}
.do_report.do_report{z-index:10000;position:absolute;padding:10px;background:#ac0000;color:#FFF}.add_new_profile{padding:20px;display:block;text-align:center;font-size:20px;border-bottom:1px solid rgba(255,255,255,.2)}
.profile{border-bottom:1px solid rgba(255,255,255,.2);position:relative}
.profile>.delete{position:absolute;padding:16px;right:0;cursor:pointer;opacity:.6;color:#fd5353}
.profile>.delete:hover{opacity:1}
.profile .ctrlHolder:hover{background:0 0}
.profile .qualities{min-height:80px}
.profile .formHint{width:210px!important;vertical-align:top!important;margin:0!important;padding-left:3px!important;opacity:.1}
.profile:hover .formHint{opacity:1}
.profile .wait_for{padding-top:0;padding-bottom:20px}
.profile .wait_for input{margin:0 5px!important}
.profile .wait_for .minimum_score_input{width:40px!important;text-align:left}
.profile .types{padding:0;margin:0 20px 0 -4px;display:inline-block}
.profile .types li{padding:3px 5px;border-bottom:1px solid rgba(255,255,255,.2);list-style:none}
.profile .types li:last-child{border:0}
.profile .types li>*{display:inline-block;vertical-align:middle;line-height:0;margin-right:10px}
.profile .type .check{margin-top:-1px}
.profile .quality_type select{width:120px;margin-left:-1px}
.profile .types li.is_empty .check,.profile .types li.is_empty .check_label,.profile .types li.is_empty .delete,.profile .types li.is_empty .handle{visibility:hidden}
.profile .types .type label{display:inline-block;width:auto;float:none;text-transform:uppercase;font-size:11px;font-weight:400;margin-right:20px;text-shadow:none;vertical-align:bottom;padding:0;height:17px}
.profile .types .type label .check{margin-right:5px}
.profile .types .type label .check_label{display:inline-block;vertical-align:top;height:16px;line-height:13px}
.profile .types .type .threed{display:none}
.profile .types .type.allow_3d .threed{display:inline-block}
.profile .types .type .handle{background:url(../../images/handle.png) center;display:inline-block;height:20px;width:20px;cursor:-moz-grab;cursor:-webkit-grab;cursor:grab;margin:0}
.profile .types .type .delete{height:20px;width:20px;line-height:20px;visibility:hidden;cursor:pointer;font-size:13px;color:#fd5353}
.profile .types .type:not(.allow_3d) .delete{margin-left:55px}
.profile .types .type:hover:not(.is_empty) .delete{visibility:visible}
#profile_ordering ul{float:left;margin:0;width:275px;padding:0}
#profile_ordering li{border-bottom:1px solid rgba(255,255,255,.2);padding:0 5px}
.do_report.do_report{z-index:10000;position:absolute;padding:10px;background:#ac0000;color:#FFF}.add_new_profile{padding:20px;display:block;text-align:center;font-size:20px;border-bottom:1px solid #eaeaea}
.profile{margin-bottom:20px}
.profile .quality_label input{font-weight:700}
.profile .ctrlHolder .types{-webkit-box-flex:1;-webkit-flex:1 1 auto;-moz-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-width:360px}
.profile .ctrlHolder .types .type{display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;flex-row:row nowrap;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center;padding:2px 0}
.profile .ctrlHolder .types .type label{min-width:0;margin-left:10px}
.profile .ctrlHolder .types .type label span{font-size:.9em}
.profile .ctrlHolder .types .type input[type=checkbox]{margin-right:3px}
.profile .ctrlHolder .types .type .delete,.profile .ctrlHolder .types .type .handle{margin-left:5px;width:20px;font-size:20px;opacity:.1;text-align:center;cursor:pointer}
.profile .ctrlHolder .types .type .delete.handle,.profile .ctrlHolder .types .type .handle.handle{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}
.profile .ctrlHolder .types .type .delete:hover,.profile .ctrlHolder .types .type .handle:hover{opacity:1}
.profile .ctrlHolder .types .type.is_empty .delete,.profile .ctrlHolder .types .type.is_empty .handle{display:none}
.profile .ctrlHolder.wait_for.wait_for{display:block}
.profile .ctrlHolder.wait_for.wait_for input{min-width:0;width:40px;text-align:center;margin:0 2px}
.profile .ctrlHolder.wait_for.wait_for .advanced{display:none;color:#ac0000}
.show_advanced .profile .ctrlHolder.wait_for.wait_for .advanced{display:inline}
#profile_ordering ul{list-style:none;margin:0;width:275px;padding:0}
#profile_ordering li{border-bottom:1px solid #eaeaea;padding:5px;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;align-items:center}
#profile_ordering li:hover{background:#eaeaea}
#profile_ordering li:last-child{border:0}
#profile_ordering li .check{margin:2px 10px 0 0;vertical-align:top}
#profile_ordering li input[type=checkbox]{margin:2px 10px 0 0;vertical-align:top}
#profile_ordering li>span{display:inline-block;height:20px;vertical-align:top;line-height:20px}
#profile_ordering li .handle{background:url(../../images/handle.png) center;width:20px;float:right;cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}
#profile_ordering .formHint{clear:none;float:right;width:250px;margin:0}.group_sizes .head{font-weight:700}
.group_sizes .ctrlHolder{padding-top:4px!important;padding-bottom:4px!important;font-size:12px}
.group_sizes .label{max-width:120px}
.group_sizes .max,.group_sizes .min{text-align:center;width:50px;max-width:50px;margin:0 5px!important;padding:0 3px;display:inline-block}.page.userscript{position:absolute;width:100%;top:0;bottom:0;left:0;right:0;padding:0}
#profile_ordering li>span.profile_label{-webkit-box-flex:1;-webkit-flex:1 1 auto;-moz-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}
#profile_ordering li .handle{font-size:20px;width:20px;float:right;cursor:-webkit-grab;cursor:-moz-grab;cursor:grab;opacity:.5;text-align:center}
#profile_ordering li .handle:hover{opacity:1}.group_sizes .item .label{min-width:150px}
.group_sizes .item .max,.group_sizes .item .min{display:inline-block;width:70px!important;min-width:0!important;margin-right:10px;text-align:center}.page.userscript{position:absolute;width:100%;top:0;bottom:0;left:0;right:0;padding:0}
.page.userscript .frame.loading{text-align:center;font-size:20px;padding:20px}
.page.userscript .media_result{height:140px}
.page.userscript .media_result .thumbnail{width:90px}
@ -408,7 +397,7 @@
.page.login input[type=password],.page.login input[type=text]{width:100%!important;font-size:25px;padding:14px!important}
.page.login .remember_me{font-size:15px;float:left;width:150px;padding:20px 0}
.page.login .remember_me .check{margin:5px 5px 0 0}
.page.login .button{font-size:25px;padding:20px;float:right}@font-face{font-family:icons;src:url(../fonts/icons.eot?74719541);src:url(../fonts/icons.eot?74719541#iefix) format("embedded-opentype"),url(../fonts/icons.woff?74719541) format("woff"),url(../fonts/icons.ttf?74719541) format("truetype"),url(../fonts/icons.svg?74719541#icons) format("svg");font-weight:400;font-style:normal}
.page.login .button{font-size:25px;padding:20px;float:right}@font-face{font-family:icons;src:url(../fonts/icons.eot?74719542);src:url(../fonts/icons.eot?74719542#iefix) format("embedded-opentype"),url(../fonts/icons.woff?747195412) format("woff"),url(../fonts/icons.ttf?74719542) format("truetype"),url(../fonts/icons.svg?74719542#icons) format("svg");font-weight:400;font-style:normal}
[class*=" icon-"]:before,[class^=icon-]:before{font-family:icons;font-style:normal;font-weight:400;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.icon-left-arrow:before{content:'\e800'}
.icon-settings:before{content:'\e801'}
@ -435,6 +424,7 @@
.icon-refresh:before{content:'\e816'}
.icon-home:before{content:'\e817'}
.icon-movie:before{content:'\e818'}
.icon-handle:before,.icon-menu:before{content:'\e819'}
@font-face{font-family:OpenSans;src:url(../fonts/OpenSans-Light-webfont.eot);src:url(../fonts/OpenSans-Light-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Light-webfont.woff) format("woff"),url(../fonts/OpenSans-Light-webfont.ttf) format("truetype"),url(../fonts/OpenSans-Light-webfont.svg#OpenSansRegular) format("svg");font-weight:200;font-style:normal}
@font-face{font-family:OpenSans;src:url(../fonts/OpenSans-Regular-webfont.eot);src:url(../fonts/OpenSans-Regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Regular-webfont.woff) format("woff"),url(../fonts/OpenSans-Regular-webfont.ttf) format("truetype"),url(../fonts/OpenSans-Regular-webfont.svg#OpenSansRegular) format("svg");font-weight:400;font-style:normal}
@font-face{font-family:OpenSans;src:url(../fonts/OpenSans-Italic-webfont.eot);src:url(../fonts/OpenSans-Italic-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Italic-webfont.woff) format("woff"),url(../fonts/OpenSans-Italic-webfont.ttf) format("truetype"),url(../fonts/OpenSans-Italic-webfont.svg#OpenSansItalic) format("svg");font-weight:400;font-style:italic}

Loading…
Cancel
Save