@ -0,0 +1,39 @@ |
||||
.PHONY: all help migrate run qa clean coverage |
||||
|
||||
# target: all - Default target. Does nothing.
|
||||
all: |
||||
@clear
|
||||
@echo "Hello $(LOGNAME), nothing to do by default"
|
||||
@echo "Try 'make help'"
|
||||
|
||||
# target: help - Display callable targets.
|
||||
help: |
||||
@clear
|
||||
@egrep "^# target:" [Mm]akefile
|
||||
|
||||
# target: migrate - Run migration
|
||||
migrate: |
||||
python3 manage.py migrate
|
||||
|
||||
# target: run - Run django server
|
||||
run: |
||||
python3 manage.py runserver 0.0.0.0:8000
|
||||
|
||||
# target: qa - Run pytest
|
||||
qa: |
||||
pytest
|
||||
|
||||
# target: clean - delete pycache
|
||||
clean: |
||||
echo "### Cleaning *.pyc and .DS_Store files "
|
||||
find . -name '*.pyc' -exec rm -f {} \;
|
||||
find . -name '.DS_Store' -exec rm -f {} \;
|
||||
find . -name "__pycache__" -type d -exec rm -rf {} +
|
||||
|
||||
# target: worker - Run rq workers
|
||||
worker: |
||||
celery -A lms worker -l info -E -B
|
||||
|
||||
# target: coverage - Test coverage
|
||||
coverage: |
||||
py.test --cov=.
|
||||
@ -1,10 +1,14 @@ |
||||
from django.conf.urls import url, include |
||||
from rest_framework_swagger.views import get_swagger_view |
||||
|
||||
schema_view = get_swagger_view(title='Skillbox LMS API') |
||||
|
||||
urlpatterns = [ |
||||
url(r'courses/', include('courses.urls')), |
||||
url(r'users/', include('access.urls')), |
||||
url(r'users/', include('access.urls', namespace='users')), |
||||
url(r'library/', include('library.urls')), |
||||
url(r'finance/', include('finance.urls')), |
||||
url(r'storage/', include('storage.urls')), |
||||
url(r'progress/', include('progress.urls')), |
||||
] |
||||
url(r'^docs/$', schema_view, name='api-docs'), |
||||
] |
||||
|
||||
@ -0,0 +1,5 @@ |
||||
DEBUG=True |
||||
SECRET_KEY='!eiquy7_+2#vn3z%zfp51$m-=tmvtcv*cj*@x$!v(_9btq0w=$' |
||||
DATABASE_URL='psql://lms_dev_user:HJin2dt3@127.0.0.1:5432/lms_dev' |
||||
EMAIL_URL='smtp+tls://9ae31a1a770138:a7d79ee373a14c@smtp.mailtrap.io:2525' |
||||
CACHE_URL=rediscache://127.0.0.1:6379/1?client_class=django_redis.client.DefaultClient |
||||
@ -1,5 +1,5 @@ |
||||
DEBUG=True |
||||
SECRET_KEY='!eiquy7_+2#vn3z%zfp51$m-=tmvtcv*cj*@x$!v(_9btq0w=$' |
||||
DATABASE_URL='sqlite:///None' |
||||
DATABASE_URL='psql://postgres@127.0.0.1:5432/test_lms' |
||||
EMAIL_URL='smtp+tls://9ae31a1a770138:a7d79ee373a14c@smtp.mailtrap.io:2525' |
||||
CACHE_URL=rediscache://127.0.0.1:6379/1?client_class=django_redis.client.DefaultClient |
||||
@ -0,0 +1,30 @@ |
||||
import pytz |
||||
|
||||
import factory |
||||
import factory.fuzzy |
||||
|
||||
from functools import partial |
||||
|
||||
from django.contrib.auth import get_user_model |
||||
|
||||
|
||||
USER_PASSWORD = 'test' |
||||
|
||||
Faker = partial(factory.Faker, locale='ru_RU') |
||||
|
||||
|
||||
class UserFactory(factory.django.DjangoModelFactory): |
||||
first_name = Faker('first_name') |
||||
last_name = Faker('last_name') |
||||
email = Faker('email') |
||||
password = factory.PostGenerationMethodCall('set_password', USER_PASSWORD) |
||||
is_active = True |
||||
is_staff = False |
||||
date_joined = Faker( |
||||
'past_datetime', |
||||
start_date='-30d', |
||||
tzinfo=pytz.UTC |
||||
) |
||||
|
||||
class Meta: |
||||
model = get_user_model() |
||||
@ -0,0 +1,7 @@ |
||||
import os |
||||
|
||||
from django.core.wsgi import get_wsgi_application |
||||
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "lms.settings") |
||||
|
||||
application = get_wsgi_application() |
||||
@ -0,0 +1,18 @@ |
||||
[pytest] |
||||
DJANGO_SETTINGS_MODULE = lms.settings |
||||
norecursedirs = env/* docs/* misc/* static/* |
||||
|
||||
;addopts = --flake8 -vvs |
||||
addopts = -vvs |
||||
|
||||
python_files = |
||||
test_*.py |
||||
|
||||
flake8-max-line-length = 120 |
||||
|
||||
# E731 - do not assign a lambda expression, use a def |
||||
# F405 - name may be undefined, or defined from star imports: module |
||||
flake8-ignore = |
||||
*.py E731 F405 |
||||
**/migrations/** ALL |
||||
**/templates/** ALL |
||||
|
After Width: | Height: | Size: 142 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
@ -1,6 +1,6 @@ |
||||
(function(a){var f;a.fn.actions=function(e){var b=a.extend({},a.fn.actions.defaults,e),g=a(this),k=!1,l=function(){a(b.acrossClears).hide();a(b.acrossQuestions).show();a(b.allContainer).hide()},m=function(){a(b.acrossClears).show();a(b.acrossQuestions).hide();a(b.actionContainer).toggleClass(b.selectedClass);a(b.allContainer).show();a(b.counterContainer).hide()},n=function(){a(b.acrossClears).hide();a(b.acrossQuestions).hide();a(b.allContainer).hide();a(b.counterContainer).show()},p=function(){n(); |
||||
a(b.acrossInput).val(0);a(b.actionContainer).removeClass(b.selectedClass)},q=function(c){c?l():n();a(g).prop("checked",c).parent().parent().toggleClass(b.selectedClass,c)},h=function(){var c=a(g).filter(":checked").length,d=a(".action-counter").data("actionsIcnt");a(b.counterContainer).html(interpolate(ngettext("%(sel)s of %(cnt)s selected","%(sel)s of %(cnt)s selected",c),{sel:c,cnt:d},!0));a(b.allToggle).prop("checked",function(){var a;c===g.length?(a=!0,l()):(a=!1,p());return a})};a(b.counterContainer).show(); |
||||
a(this).filter(":checked").each(function(c){a(this).parent().parent().toggleClass(b.selectedClass);h();1===a(b.acrossInput).val()&&m()});a(b.allToggle).show().click(function(){q(a(this).prop("checked"));h()});a("a",b.acrossQuestions).click(function(c){c.preventDefault();a(b.acrossInput).val(1);m()});a("a",b.acrossClears).click(function(c){c.preventDefault();a(b.allToggle).prop("checked",!1);p();q(0);h()});f=null;a(g).click(function(c){c||(c=window.event);var d=c.target?c.target:c.srcElement;if(f&& |
||||
a.data(f)!==a.data(d)&&!0===c.shiftKey){var e=!1;a(f).prop("checked",d.checked).parent().parent().toggleClass(b.selectedClass,d.checked);a(g).each(function(){if(a.data(this)===a.data(f)||a.data(this)===a.data(d))e=e?!1:!0;e&&a(this).prop("checked",d.checked).parent().parent().toggleClass(b.selectedClass,d.checked)})}a(d).parent().parent().toggleClass(b.selectedClass,d.checked);f=d;h()});a("form#changelist-form table#result_list tr").find("td:gt(0) :input").change(function(){k=!0});a('form#changelist-form button[name="index"]').click(function(a){if(k)return confirm(gettext("You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."))}); |
||||
a('form#changelist-form input[name="_save"]').click(function(c){var d=!1;a("select option:selected",b.actionContainer).each(function(){a(this).val()&&(d=!0)});if(d)return k?confirm(gettext("You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.")):confirm(gettext("You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button."))})}; |
||||
a.fn.actions.defaults={actionContainer:"div.actions",counterContainer:"span.action-counter",allContainer:"div.actions span.all",acrossInput:"div.actions input.select-across",acrossQuestions:"div.actions span.question",acrossClears:"div.actions span.clear",allToggle:"#action-toggle",selectedClass:"selected"};a(document).ready(function(){var e=a("tr input.action-select");0<e.length&&e.actions()})})(django.jQuery); |
||||
(function(a){var f;a.fn.actions=function(q){var b=a.extend({},a.fn.actions.defaults,q),g=a(this),e=!1,k=function(){a(b.acrossClears).hide();a(b.acrossQuestions).show();a(b.allContainer).hide()},l=function(){a(b.acrossClears).show();a(b.acrossQuestions).hide();a(b.actionContainer).toggleClass(b.selectedClass);a(b.allContainer).show();a(b.counterContainer).hide()},m=function(){a(b.acrossClears).hide();a(b.acrossQuestions).hide();a(b.allContainer).hide();a(b.counterContainer).show()},n=function(){m(); |
||||
a(b.acrossInput).val(0);a(b.actionContainer).removeClass(b.selectedClass)},p=function(c){c?k():m();a(g).prop("checked",c).parent().parent().toggleClass(b.selectedClass,c)},h=function(){var c=a(g).filter(":checked").length;a(b.counterContainer).html(interpolate(ngettext("%(sel)s of %(cnt)s selected","%(sel)s of %(cnt)s selected",c),{sel:c,cnt:_actions_icnt},!0));a(b.allToggle).prop("checked",function(){var a;c===g.length?(a=!0,k()):(a=!1,n());return a})};a(b.counterContainer).show();a(this).filter(":checked").each(function(c){a(this).parent().parent().toggleClass(b.selectedClass); |
||||
h();1===a(b.acrossInput).val()&&l()});a(b.allToggle).show().click(function(){p(a(this).prop("checked"));h()});a("a",b.acrossQuestions).click(function(c){c.preventDefault();a(b.acrossInput).val(1);l()});a("a",b.acrossClears).click(function(c){c.preventDefault();a(b.allToggle).prop("checked",!1);n();p(0);h()});f=null;a(g).click(function(c){c||(c=window.event);var d=c.target?c.target:c.srcElement;if(f&&a.data(f)!==a.data(d)&&!0===c.shiftKey){var e=!1;a(f).prop("checked",d.checked).parent().parent().toggleClass(b.selectedClass, |
||||
d.checked);a(g).each(function(){if(a.data(this)===a.data(f)||a.data(this)===a.data(d))e=e?!1:!0;e&&a(this).prop("checked",d.checked).parent().parent().toggleClass(b.selectedClass,d.checked)})}a(d).parent().parent().toggleClass(b.selectedClass,d.checked);f=d;h()});a("form#changelist-form table#result_list tr").find("td:gt(0) :input").change(function(){e=!0});a('form#changelist-form button[name="index"]').click(function(a){if(e)return confirm(gettext("You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."))}); |
||||
a('form#changelist-form input[name="_save"]').click(function(c){var d=!1;a("select option:selected",b.actionContainer).each(function(){a(this).val()&&(d=!0)});if(d)return e?confirm(gettext("You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.")):confirm(gettext("You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button."))})}; |
||||
a.fn.actions.defaults={actionContainer:"div.actions",counterContainer:"span.action-counter",allContainer:"div.actions span.all",acrossInput:"div.actions input.select-across",acrossQuestions:"div.actions span.question",acrossClears:"div.actions span.clear",allToggle:"#action-toggle",selectedClass:"selected"}})(django.jQuery); |
||||
|
||||
@ -1,10 +1,9 @@ |
||||
(function(c){c.fn.formset=function(b){var a=c.extend({},c.fn.formset.defaults,b),d=c(this);b=d.parent();var k=function(a,g,l){var b=new RegExp("("+g+"-(\\d+|__prefix__))");g=g+"-"+l;c(a).prop("for")&&c(a).prop("for",c(a).prop("for").replace(b,g));a.id&&(a.id=a.id.replace(b,g));a.name&&(a.name=a.name.replace(b,g))},e=c("#id_"+a.prefix+"-TOTAL_FORMS").prop("autocomplete","off"),l=parseInt(e.val(),10),g=c("#id_"+a.prefix+"-MAX_NUM_FORMS").prop("autocomplete","off"),h=""===g.val()||0<g.val()-e.val(); |
||||
d.each(function(g){c(this).not("."+a.emptyCssClass).addClass(a.formCssClass)});if(d.length&&h){var m=a.addButton;null===m&&("TR"===d.prop("tagName")?(d=this.eq(-1).children().length,b.append('<tr class="'+a.addCssClass+'"><td colspan="'+d+'"><a href="#">'+a.addText+"</a></tr>"),m=b.find("tr:last a")):(d.filter(":last").after('<div class="'+a.addCssClass+'"><a href="#">'+a.addText+"</a></div>"),m=d.filter(":last").next().find("a")));m.click(function(b){b.preventDefault();b=c("#"+a.prefix+"-empty"); |
||||
var f=b.clone(!0);f.removeClass(a.emptyCssClass).addClass(a.formCssClass).attr("id",a.prefix+"-"+l);f.is("tr")?f.children(":last").append('<div><a class="'+a.deleteCssClass+'" href="#">'+a.deleteText+"</a></div>"):f.is("ul")||f.is("ol")?f.append('<li><a class="'+a.deleteCssClass+'" href="#">'+a.deleteText+"</a></li>"):f.children(":first").append('<span><a class="'+a.deleteCssClass+'" href="#">'+a.deleteText+"</a></span>");f.find("*").each(function(){k(this,a.prefix,e.val())});f.insertBefore(c(b)); |
||||
c(e).val(parseInt(e.val(),10)+1);l+=1;""!==g.val()&&0>=g.val()-e.val()&&m.parent().hide();f.find("a."+a.deleteCssClass).click(function(b){b.preventDefault();f.remove();--l;a.removed&&a.removed(f);c(document).trigger("formset:removed",[f,a.prefix]);b=c("."+a.formCssClass);c("#id_"+a.prefix+"-TOTAL_FORMS").val(b.length);(""===g.val()||0<g.val()-b.length)&&m.parent().show();var h,d,e=function(){k(this,a.prefix,h)};h=0;for(d=b.length;h<d;h++)k(c(b).get(h),a.prefix,h),c(b.get(h)).find("*").each(e)});a.added&& |
||||
a.added(f);c(document).trigger("formset:added",[f,a.prefix])})}return this};c.fn.formset.defaults={prefix:"form",addText:"add another",deleteText:"remove",addCssClass:"add-row",deleteCssClass:"delete-row",emptyCssClass:"empty-row",formCssClass:"dynamic-form",added:null,removed:null,addButton:null};c.fn.tabularFormset=function(b){var a=c(this),d=function(b){c(a.selector).not(".add-row").removeClass("row1 row2").filter(":even").addClass("row1").end().filter(":odd").addClass("row2")},k=function(){"undefined"!== |
||||
typeof SelectFilter&&(c(".selectfilter").each(function(a,c){var b=c.name.split("-");SelectFilter.init(c.id,b[b.length-1],!1)}),c(".selectfilterstacked").each(function(a,c){var b=c.name.split("-");SelectFilter.init(c.id,b[b.length-1],!0)}))},e=function(a){a.find(".prepopulated_field").each(function(){var b=c(this).find("input, select, textarea"),h=b.data("dependency_list")||[],d=[];c.each(h,function(c,b){d.push("#"+a.find(".field-"+b).find("input, select, textarea").attr("id"))});d.length&&b.prepopulate(d, |
||||
b.attr("maxlength"))})};a.formset({prefix:b.prefix,addText:b.addText,formCssClass:"dynamic-"+b.prefix,deleteCssClass:"inline-deletelink",deleteText:b.deleteText,emptyCssClass:"empty-form",removed:d,added:function(a){e(a);"undefined"!==typeof DateTimeShortcuts&&(c(".datetimeshortcuts").remove(),DateTimeShortcuts.init());k();d(a)},addButton:b.addButton});return a};c.fn.stackedFormset=function(b){var a=c(this),d=function(b){c(a.selector).find(".inline_label").each(function(a){a+=1;c(this).html(c(this).html().replace(/(#\d+)/g, |
||||
"#"+a))})},k=function(){"undefined"!==typeof SelectFilter&&(c(".selectfilter").each(function(a,c){var b=c.name.split("-");SelectFilter.init(c.id,b[b.length-1],!1)}),c(".selectfilterstacked").each(function(a,c){var b=c.name.split("-");SelectFilter.init(c.id,b[b.length-1],!0)}))},e=function(a){a.find(".prepopulated_field").each(function(){var b=c(this).find("input, select, textarea"),d=b.data("dependency_list")||[],e=[];c.each(d,function(b,c){e.push("#"+a.find(".form-row .field-"+c).find("input, select, textarea").attr("id"))}); |
||||
e.length&&b.prepopulate(e,b.attr("maxlength"))})};a.formset({prefix:b.prefix,addText:b.addText,formCssClass:"dynamic-"+b.prefix,deleteCssClass:"inline-deletelink",deleteText:b.deleteText,emptyCssClass:"empty-form",removed:d,added:function(a){e(a);"undefined"!==typeof DateTimeShortcuts&&(c(".datetimeshortcuts").remove(),DateTimeShortcuts.init());k();d(a)},addButton:b.addButton});return a};c(document).ready(function(){c(".js-inline-admin-formset").each(function(){var b=c(this).data(),a=b.inlineFormset; |
||||
switch(b.inlineType){case "stacked":c(a.name+"-group .inline-related").stackedFormset(a.options);break;case "tabular":c(a.name+"-group .tabular.inline-related tbody tr").tabularFormset(a.options)}})})})(django.jQuery); |
||||
(function(b){b.fn.formset=function(d){var a=b.extend({},b.fn.formset.defaults,d),e=b(this);d=e.parent();var k=function(a,f,l){var c=new RegExp("("+f+"-(\\d+|__prefix__))");f=f+"-"+l;b(a).prop("for")&&b(a).prop("for",b(a).prop("for").replace(c,f));a.id&&(a.id=a.id.replace(c,f));a.name&&(a.name=a.name.replace(c,f))},h=b("#id_"+a.prefix+"-TOTAL_FORMS").prop("autocomplete","off"),l=parseInt(h.val(),10),f=b("#id_"+a.prefix+"-MAX_NUM_FORMS").prop("autocomplete","off"),c=""===f.val()||0<f.val()-h.val(); |
||||
e.each(function(f){b(this).not("."+a.emptyCssClass).addClass(a.formCssClass)});if(e.length&&c){var m;"TR"===e.prop("tagName")?(e=this.eq(-1).children().length,d.append('<tr class="'+a.addCssClass+'"><td colspan="'+e+'"><a href="javascript:void(0)">'+a.addText+"</a></tr>"),m=d.find("tr:last a")):(e.filter(":last").after('<div class="'+a.addCssClass+'"><a href="javascript:void(0)">'+a.addText+"</a></div>"),m=e.filter(":last").next().find("a"));m.click(function(c){c.preventDefault();c=b("#"+a.prefix+ |
||||
"-empty");var g=c.clone(!0);g.removeClass(a.emptyCssClass).addClass(a.formCssClass).attr("id",a.prefix+"-"+l);g.is("tr")?g.children(":last").append('<div><a class="'+a.deleteCssClass+'" href="javascript:void(0)">'+a.deleteText+"</a></div>"):g.is("ul")||g.is("ol")?g.append('<li><a class="'+a.deleteCssClass+'" href="javascript:void(0)">'+a.deleteText+"</a></li>"):g.children(":first").append('<span><a class="'+a.deleteCssClass+'" href="javascript:void(0)">'+a.deleteText+"</a></span>");g.find("*").each(function(){k(this, |
||||
a.prefix,h.val())});g.insertBefore(b(c));b(h).val(parseInt(h.val(),10)+1);l+=1;""!==f.val()&&0>=f.val()-h.val()&&m.parent().hide();g.find("a."+a.deleteCssClass).click(function(c){c.preventDefault();g.remove();--l;a.removed&&a.removed(g);b(document).trigger("formset:removed",[g,a.prefix]);c=b("."+a.formCssClass);b("#id_"+a.prefix+"-TOTAL_FORMS").val(c.length);(""===f.val()||0<f.val()-c.length)&&m.parent().show();var d,e,h=function(){k(this,a.prefix,d)};d=0;for(e=c.length;d<e;d++)k(b(c).get(d),a.prefix, |
||||
d),b(c.get(d)).find("*").each(h)});a.added&&a.added(g);b(document).trigger("formset:added",[g,a.prefix])})}return this};b.fn.formset.defaults={prefix:"form",addText:"add another",deleteText:"remove",addCssClass:"add-row",deleteCssClass:"delete-row",emptyCssClass:"empty-row",formCssClass:"dynamic-form",added:null,removed:null};b.fn.tabularFormset=function(d){var a=b(this),e=function(l){b(a.selector).not(".add-row").removeClass("row1 row2").filter(":even").addClass("row1").end().filter(":odd").addClass("row2")}, |
||||
k=function(){"undefined"!==typeof SelectFilter&&(b(".selectfilter").each(function(a,b){var c=b.name.split("-");SelectFilter.init(b.id,c[c.length-1],!1)}),b(".selectfilterstacked").each(function(a,b){var c=b.name.split("-");SelectFilter.init(b.id,c[c.length-1],!0)}))},h=function(a){a.find(".prepopulated_field").each(function(){var f=b(this).find("input, select, textarea"),c=f.data("dependency_list")||[],d=[];b.each(c,function(b,c){d.push("#"+a.find(".field-"+c).find("input, select, textarea").attr("id"))}); |
||||
d.length&&f.prepopulate(d,f.attr("maxlength"))})};a.formset({prefix:d.prefix,addText:d.addText,formCssClass:"dynamic-"+d.prefix,deleteCssClass:"inline-deletelink",deleteText:d.deleteText,emptyCssClass:"empty-form",removed:e,added:function(a){h(a);"undefined"!==typeof DateTimeShortcuts&&(b(".datetimeshortcuts").remove(),DateTimeShortcuts.init());k();e(a)}});return a};b.fn.stackedFormset=function(d){var a=b(this),e=function(d){b(a.selector).find(".inline_label").each(function(a){a+=1;b(this).html(b(this).html().replace(/(#\d+)/g, |
||||
"#"+a))})},k=function(){"undefined"!==typeof SelectFilter&&(b(".selectfilter").each(function(a,b){var c=b.name.split("-");SelectFilter.init(b.id,c[c.length-1],!1)}),b(".selectfilterstacked").each(function(a,b){var c=b.name.split("-");SelectFilter.init(b.id,c[c.length-1],!0)}))},h=function(a){a.find(".prepopulated_field").each(function(){var d=b(this).find("input, select, textarea"),c=d.data("dependency_list")||[],e=[];b.each(c,function(b,c){e.push("#"+a.find(".form-row .field-"+c).find("input, select, textarea").attr("id"))}); |
||||
e.length&&d.prepopulate(e,d.attr("maxlength"))})};a.formset({prefix:d.prefix,addText:d.addText,formCssClass:"dynamic-"+d.prefix,deleteCssClass:"inline-deletelink",deleteText:d.deleteText,emptyCssClass:"empty-form",removed:e,added:function(a){h(a);"undefined"!==typeof DateTimeShortcuts&&(b(".datetimeshortcuts").remove(),DateTimeShortcuts.init());k();e(a)}});return a}})(django.jQuery); |
||||
|
||||
@ -0,0 +1,360 @@ |
||||
#monkey_404 { |
||||
width: 800px; |
||||
height: 480px; |
||||
position: absolute; |
||||
left: 50%; |
||||
top: 50%; |
||||
margin-left: -400px; |
||||
margin-top: -240px; |
||||
} |
||||
#monkey_404 .st0 { |
||||
fill: #E8EBED; |
||||
} |
||||
#monkey_404 .st1 { |
||||
fill: #FFFFFF; |
||||
} |
||||
#monkey_404 .st2 { |
||||
fill: none; |
||||
stroke: #89949B; |
||||
stroke-width: 3; |
||||
stroke-linecap: round; |
||||
stroke-linejoin: round; |
||||
stroke-miterlimit: 10; |
||||
} |
||||
#monkey_404 .st3 { |
||||
fill: #E8EBED; |
||||
stroke: #89949B; |
||||
stroke-width: 3; |
||||
stroke-linecap: round; |
||||
stroke-linejoin: round; |
||||
stroke-miterlimit: 10; |
||||
} |
||||
#monkey_404 .st4 { |
||||
fill: #FFFFFF; |
||||
stroke: #89949B; |
||||
stroke-width: 3; |
||||
stroke-linecap: round; |
||||
stroke-linejoin: round; |
||||
stroke-miterlimit: 10; |
||||
} |
||||
#monkey_404 .st5 { |
||||
fill: none; |
||||
stroke: #89949B; |
||||
stroke-width: 3; |
||||
stroke-linecap: round; |
||||
stroke-linejoin: round; |
||||
stroke-miterlimit: 10; |
||||
} |
||||
#monkey_404 .st6 { |
||||
fill: none; |
||||
stroke: #89949B; |
||||
stroke-width: 4; |
||||
stroke-linecap: round; |
||||
stroke-linejoin: round; |
||||
stroke-miterlimit: 10; |
||||
} |
||||
#monkey_404 .st7 { |
||||
fill: #FFFFFF; |
||||
stroke: #89949B; |
||||
stroke-width: 2; |
||||
stroke-linecap: round; |
||||
stroke-linejoin: round; |
||||
stroke-miterlimit: 10; |
||||
} |
||||
#monkey_404 .st8 { |
||||
fill: #89949B; |
||||
} |
||||
#monkey_404 .st9 { |
||||
fill: #89949B; |
||||
} |
||||
#monkey_404 .st10 { |
||||
fill: none; |
||||
stroke: #89949B; |
||||
stroke-width: 2; |
||||
stroke-linecap: round; |
||||
stroke-linejoin: round; |
||||
stroke-miterlimit: 10; |
||||
} |
||||
#monkey_404 .st11 { |
||||
fill: #FFFFFF; |
||||
} |
||||
#monkey_404 .st12 { |
||||
fill: #FFFFFF; |
||||
stroke: #8894A0; |
||||
stroke-width: 3; |
||||
stroke-linecap: round; |
||||
stroke-linejoin: round; |
||||
stroke-miterlimit: 10; |
||||
} |
||||
#monkey_404 .st13 { |
||||
fill: #FFFFFF; |
||||
stroke: #89949B; |
||||
stroke-width: 3; |
||||
stroke-linecap: round; |
||||
stroke-linejoin: round; |
||||
stroke-miterlimit: 10; |
||||
} |
||||
#monkey_404 .st14 { |
||||
fill: none; |
||||
stroke: #89949B; |
||||
stroke-linecap: round; |
||||
stroke-linejoin: round; |
||||
stroke-miterlimit: 10; |
||||
} |
||||
#monkey_404 .st15 { |
||||
fill: none; |
||||
stroke: #89949B; |
||||
stroke-linecap: round; |
||||
stroke-linejoin: round; |
||||
stroke-miterlimit: 10; |
||||
} |
||||
#monkey_404 #arm { |
||||
-webkit-transform-origin: 155px 292px; |
||||
-moz-transform-origin: 155px 292px; |
||||
-o-transform-origin: 155px 292px; |
||||
-ms-transform-origin: 155px 292px; |
||||
transform-origin: 155px 292px; |
||||
-webkit-transform: rotateZ(-2deg); |
||||
-moz-transform: rotateZ(-2deg); |
||||
-o-transform: rotateZ(-2deg); |
||||
-ms-transform: rotateZ(-2deg); |
||||
transform: rotateZ(-2deg); |
||||
} |
||||
#monkey_404 #monkey { |
||||
-webkit-animation: monkey-breathe 3s infinite ease-in-out; |
||||
-moz-animation: monkey-breathe 3s infinite ease-in-out; |
||||
-o-animation: monkey-breathe 3s infinite ease-in-out; |
||||
animation: monkey-breathe 3s infinite ease-in-out; |
||||
} |
||||
#monkey_404 #zelda, |
||||
#monkey_404 #tetris, |
||||
#monkey_404 #moon, |
||||
#monkey_404 #star_a, |
||||
#monkey_404 #star_b, |
||||
#monkey_404 #star_c, |
||||
#monkey_404 #star_d, |
||||
#monkey_404 #number_4, |
||||
#monkey_404 #number_4_2, |
||||
#monkey_404 #number_0, |
||||
#monkey_404 #sword { |
||||
-webkit-animation: levitate 3s infinite ease-in-out; |
||||
-moz-animation: levitate 3s infinite ease-in-out; |
||||
-o-animation: levitate 3s infinite ease-in-out; |
||||
animation: levitate 3s infinite ease-in-out; |
||||
} |
||||
#monkey_404 #zelda { |
||||
-webkit-animation-delay: 0s; |
||||
-moz-animation-delay: 0s; |
||||
-o-animation-delay: 0s; |
||||
animation-delay: 0s; |
||||
-webkit-animation-duration: 3s; |
||||
-moz-animation-duration: 3s; |
||||
-o-animation-duration: 3s; |
||||
animation-duration: 3s; |
||||
} |
||||
#monkey_404 #tetris { |
||||
-webkit-animation-delay: 1s; |
||||
-moz-animation-delay: 1s; |
||||
-o-animation-delay: 1s; |
||||
animation-delay: 1s; |
||||
-webkit-animation-duration: 3s; |
||||
-moz-animation-duration: 3s; |
||||
-o-animation-duration: 3s; |
||||
animation-duration: 3s; |
||||
} |
||||
#monkey_404 #moon { |
||||
-webkit-animation-delay: 0.5s; |
||||
-moz-animation-delay: 0.5s; |
||||
-o-animation-delay: 0.5s; |
||||
animation-delay: 0.5s; |
||||
-webkit-animation-duration: 3s; |
||||
-moz-animation-duration: 3s; |
||||
-o-animation-duration: 3s; |
||||
animation-duration: 3s; |
||||
} |
||||
#monkey_404 #star_a { |
||||
-webkit-animation-delay: 0s; |
||||
-moz-animation-delay: 0s; |
||||
-o-animation-delay: 0s; |
||||
animation-delay: 0s; |
||||
-webkit-animation-duration: 3s; |
||||
-moz-animation-duration: 3s; |
||||
-o-animation-duration: 3s; |
||||
animation-duration: 3s; |
||||
} |
||||
#monkey_404 #star_b { |
||||
-webkit-animation-delay: 0.5s; |
||||
-moz-animation-delay: 0.5s; |
||||
-o-animation-delay: 0.5s; |
||||
animation-delay: 0.5s; |
||||
-webkit-animation-duration: 3s; |
||||
-moz-animation-duration: 3s; |
||||
-o-animation-duration: 3s; |
||||
animation-duration: 3s; |
||||
} |
||||
#monkey_404 #star_c { |
||||
-webkit-animation-delay: 1s; |
||||
-moz-animation-delay: 1s; |
||||
-o-animation-delay: 1s; |
||||
animation-delay: 1s; |
||||
-webkit-animation-duration: 3s; |
||||
-moz-animation-duration: 3s; |
||||
-o-animation-duration: 3s; |
||||
animation-duration: 3s; |
||||
} |
||||
#monkey_404 #star_d { |
||||
-webkit-animation-delay: 1.5s; |
||||
-moz-animation-delay: 1.5s; |
||||
-o-animation-delay: 1.5s; |
||||
animation-delay: 1.5s; |
||||
-webkit-animation-duration: 3s; |
||||
-moz-animation-duration: 3s; |
||||
-o-animation-duration: 3s; |
||||
animation-duration: 3s; |
||||
} |
||||
#monkey_404 #number_4 { |
||||
-webkit-animation-delay: 0s; |
||||
-moz-animation-delay: 0s; |
||||
-o-animation-delay: 0s; |
||||
animation-delay: 0s; |
||||
-webkit-animation-duration: 3s; |
||||
-moz-animation-duration: 3s; |
||||
-o-animation-duration: 3s; |
||||
animation-duration: 3s; |
||||
} |
||||
#monkey_404 #number_4_2 { |
||||
-webkit-animation-delay: 1s; |
||||
-moz-animation-delay: 1s; |
||||
-o-animation-delay: 1s; |
||||
animation-delay: 1s; |
||||
-webkit-animation-duration: 3s; |
||||
-moz-animation-duration: 3s; |
||||
-o-animation-duration: 3s; |
||||
animation-duration: 3s; |
||||
} |
||||
#monkey_404 #number_0 { |
||||
-webkit-animation-delay: 0.5s; |
||||
-moz-animation-delay: 0.5s; |
||||
-o-animation-delay: 0.5s; |
||||
animation-delay: 0.5s; |
||||
-webkit-animation-duration: 3s; |
||||
-moz-animation-duration: 3s; |
||||
-o-animation-duration: 3s; |
||||
animation-duration: 3s; |
||||
} |
||||
#monkey_404 #sword { |
||||
-webkit-animation-delay: 1.5s; |
||||
-moz-animation-delay: 1.5s; |
||||
-o-animation-delay: 1.5s; |
||||
animation-delay: 1.5s; |
||||
-webkit-animation-duration: 3s; |
||||
-moz-animation-duration: 3s; |
||||
-o-animation-duration: 3s; |
||||
animation-duration: 3s; |
||||
} |
||||
#monkey_404 #eye_left { |
||||
-webkit-transform-origin: 191px 257px; |
||||
-moz-transform-origin: 191px 257px; |
||||
-o-transform-origin: 191px 257px; |
||||
-ms-transform-origin: 191px 257px; |
||||
transform-origin: 191px 257px; |
||||
-webkit-animation: blink-l 12s infinite ease-in-out; |
||||
-moz-animation: blink-l 12s infinite ease-in-out; |
||||
-o-animation: blink-l 12s infinite ease-in-out; |
||||
animation: blink-l 12s infinite ease-in-out; |
||||
} |
||||
#monkey_404 #eye_right { |
||||
-webkit-transform-origin: 205px 256px; |
||||
-moz-transform-origin: 205px 256px; |
||||
-o-transform-origin: 205px 256px; |
||||
-ms-transform-origin: 205px 256px; |
||||
transform-origin: 205px 256px; |
||||
-webkit-animation: blink-r 12s infinite ease-in-out; |
||||
-moz-animation: blink-r 12s infinite ease-in-out; |
||||
-o-animation: blink-r 12s infinite ease-in-out; |
||||
animation: blink-r 12s infinite ease-in-out; |
||||
} |
||||
lesshat-selector { |
||||
-lh-property: 0; } |
||||
@-webkit-keyframes arm-rotate{ 0% { -webkit-transform: rotateZ(-3deg);} 50% { -webkit-transform: rotateZ(6deg);}} |
||||
@-moz-keyframes arm-rotate{ 0% { -moz-transform: rotateZ(-3deg);} 50% { -moz-transform: rotateZ(6deg);}} |
||||
@-o-keyframes arm-rotate{ 0% { -o-transform: rotateZ(-3deg);} 50% { -o-transform: rotateZ(6deg);}} |
||||
@keyframes arm-rotate{ 0% {-webkit-transform: rotateZ(-3deg);-moz-transform: rotateZ(-3deg);-ms-transform: rotateZ(-3deg);transform: rotateZ(-3deg);} 50% {-webkit-transform: rotateZ(6deg);-moz-transform: rotateZ(6deg);-ms-transform: rotateZ(6deg);transform: rotateZ(6deg);}; |
||||
} |
||||
lesshat-selector { |
||||
-lh-property: 0; } |
||||
@-webkit-keyframes arm-rotate{ 0% { -webkit-transform: rotateZ(-3deg);} 50% { -webkit-transform: rotateZ(6deg);}} |
||||
@-moz-keyframes arm-rotate{ 0% { -moz-transform: rotateZ(-3deg);} 50% { -moz-transform: rotateZ(6deg);}} |
||||
@-o-keyframes arm-rotate{ 0% { -o-transform: rotateZ(-3deg);} 50% { -o-transform: rotateZ(6deg);}} |
||||
@keyframes arm-rotate{ 0% {-webkit-transform: rotateZ(-3deg);-moz-transform: rotateZ(-3deg);-ms-transform: rotateZ(-3deg);transform: rotateZ(-3deg);} 50% {-webkit-transform: rotateZ(6deg);-moz-transform: rotateZ(6deg);-ms-transform: rotateZ(6deg);transform: rotateZ(6deg);}; |
||||
} |
||||
lesshat-selector { |
||||
-lh-property: 0; } |
||||
@-webkit-keyframes monkey-breathe{ 0% { -webkit-transform: translate3d(0,0,0);} 50% { -webkit-transform: translate3d(0,1px,0);}} |
||||
@-moz-keyframes monkey-breathe{ 0% { -moz-transform: translate3d(0,0,0);} 50% { -moz-transform: translate3d(0,1px,0);}} |
||||
@-o-keyframes monkey-breathe{ 0% { -o-transform: translate3d(0,0,0);} 50% { -o-transform: translate3d(0,1px,0);}} |
||||
@keyframes monkey-breathe{ 0% {-webkit-transform: translate3d(0,0,0);-moz-transform: translate3d(0,0,0);-ms-transform: translate3d(0,0,0);transform: translate3d(0,0,0);} 50% {-webkit-transform: translate3d(0,1px,0);-moz-transform: translate3d(0,1px,0);-ms-transform: translate3d(0,1px,0);transform: translate3d(0,1px,0);}; |
||||
} |
||||
lesshat-selector { |
||||
-lh-property: 0; } |
||||
@-webkit-keyframes monkey-breathe{ 0% { -webkit-transform: translate3d(0,0,0);} 50% { -webkit-transform: translate3d(0,1px,0);}} |
||||
@-moz-keyframes monkey-breathe{ 0% { -moz-transform: translate3d(0,0,0);} 50% { -moz-transform: translate3d(0,1px,0);}} |
||||
@-o-keyframes monkey-breathe{ 0% { -o-transform: translate3d(0,0,0);} 50% { -o-transform: translate3d(0,1px,0);}} |
||||
@keyframes monkey-breathe{ 0% {-webkit-transform: translate3d(0,0,0);-moz-transform: translate3d(0,0,0);-ms-transform: translate3d(0,0,0);transform: translate3d(0,0,0);} 50% {-webkit-transform: translate3d(0,1px,0);-moz-transform: translate3d(0,1px,0);-ms-transform: translate3d(0,1px,0);transform: translate3d(0,1px,0);}; |
||||
} |
||||
lesshat-selector { |
||||
-lh-property: 0; } |
||||
@-webkit-keyframes levitate{ 0% { -webkit-transform: translate3d(0,0,0);} 50% { -webkit-transform: translate3d(0,5px,0);}} |
||||
@-moz-keyframes levitate{ 0% { -moz-transform: translate3d(0,0,0);} 50% { -moz-transform: translate3d(0,5px,0);}} |
||||
@-o-keyframes levitate{ 0% { -o-transform: translate3d(0,0,0);} 50% { -o-transform: translate3d(0,5px,0);}} |
||||
@keyframes levitate{ 0% {-webkit-transform: translate3d(0,0,0);-moz-transform: translate3d(0,0,0);-ms-transform: translate3d(0,0,0);transform: translate3d(0,0,0);} 50% {-webkit-transform: translate3d(0,5px,0);-moz-transform: translate3d(0,5px,0);-ms-transform: translate3d(0,5px,0);transform: translate3d(0,5px,0);}; |
||||
} |
||||
lesshat-selector { |
||||
-lh-property: 0; } |
||||
@-webkit-keyframes levitate{ 0% { -webkit-transform: translate3d(0,0,0);} 50% { -webkit-transform: translate3d(0,5px,0);}} |
||||
@-moz-keyframes levitate{ 0% { -moz-transform: translate3d(0,0,0);} 50% { -moz-transform: translate3d(0,5px,0);}} |
||||
@-o-keyframes levitate{ 0% { -o-transform: translate3d(0,0,0);} 50% { -o-transform: translate3d(0,5px,0);}} |
||||
@keyframes levitate{ 0% {-webkit-transform: translate3d(0,0,0);-moz-transform: translate3d(0,0,0);-ms-transform: translate3d(0,0,0);transform: translate3d(0,0,0);} 50% {-webkit-transform: translate3d(0,5px,0);-moz-transform: translate3d(0,5px,0);-ms-transform: translate3d(0,5px,0);transform: translate3d(0,5px,0);}; |
||||
} |
||||
lesshat-selector { |
||||
-lh-property: 0; } |
||||
@-webkit-keyframes star{ 0% { -webkit-transform: translate3d(0,0,0) rotateZ(0deg);} 50% { -webkit-transform: translate3d(0,5px,0) rotateZ(180deg);}} |
||||
@-moz-keyframes star{ 0% { -moz-transform: translate3d(0,0,0) rotateZ(0deg);} 50% { -moz-transform: translate3d(0,5px,0) rotateZ(180deg);}} |
||||
@-o-keyframes star{ 0% { -o-transform: translate3d(0,0,0) rotateZ(0deg);} 50% { -o-transform: translate3d(0,5px,0) rotateZ(180deg);}} |
||||
@keyframes star{ 0% {-webkit-transform: translate3d(0,0,0) rotateZ(0deg);-moz-transform: translate3d(0,0,0) rotateZ(0deg);-ms-transform: translate3d(0,0,0) rotateZ(0deg);transform: translate3d(0,0,0) rotateZ(0deg);} 50% {-webkit-transform: translate3d(0,5px,0) rotateZ(180deg);-moz-transform: translate3d(0,5px,0) rotateZ(180deg);-ms-transform: translate3d(0,5px,0) rotateZ(180deg);transform: translate3d(0,5px,0) rotateZ(180deg);}; |
||||
} |
||||
lesshat-selector { |
||||
-lh-property: 0; } |
||||
@-webkit-keyframes star{ 0% { -webkit-transform: translate3d(0,0,0) rotateZ(0deg);} 50% { -webkit-transform: translate3d(0,5px,0) rotateZ(180deg);}} |
||||
@-moz-keyframes star{ 0% { -moz-transform: translate3d(0,0,0) rotateZ(0deg);} 50% { -moz-transform: translate3d(0,5px,0) rotateZ(180deg);}} |
||||
@-o-keyframes star{ 0% { -o-transform: translate3d(0,0,0) rotateZ(0deg);} 50% { -o-transform: translate3d(0,5px,0) rotateZ(180deg);}} |
||||
@keyframes star{ 0% {-webkit-transform: translate3d(0,0,0) rotateZ(0deg);-moz-transform: translate3d(0,0,0) rotateZ(0deg);-ms-transform: translate3d(0,0,0) rotateZ(0deg);transform: translate3d(0,0,0) rotateZ(0deg);} 50% {-webkit-transform: translate3d(0,5px,0) rotateZ(180deg);-moz-transform: translate3d(0,5px,0) rotateZ(180deg);-ms-transform: translate3d(0,5px,0) rotateZ(180deg);transform: translate3d(0,5px,0) rotateZ(180deg);}; |
||||
} |
||||
lesshat-selector { |
||||
-lh-property: 0; } |
||||
@-webkit-keyframes blink-l{ 0% { -webkit-transform: rotateX(0deg); } 2% { -webkit-transform: rotateX(80deg); } 4%,20% { -webkit-transform: rotateX(0deg); } 22% { -webkit-transform: rotateX(80deg); } 24%,30% { -webkit-transform: rotateX(0deg); } 32% { -webkit-transform: rotateX(80deg); } 34%,70% { -webkit-transform: rotateX(0deg); } 72% { -webkit-transform: rotateX(80deg); } 74%,100% { -webkit-transform: rotateX(0deg); }} |
||||
@-moz-keyframes blink-l{ 0% { -moz-transform: rotateX(0deg); } 2% { -moz-transform: rotateX(80deg); } 4%,20% { -moz-transform: rotateX(0deg); } 22% { -moz-transform: rotateX(80deg); } 24%,30% { -moz-transform: rotateX(0deg); } 32% { -moz-transform: rotateX(80deg); } 34%,70% { -moz-transform: rotateX(0deg); } 72% { -moz-transform: rotateX(80deg); } 74%,100% { -moz-transform: rotateX(0deg); }} |
||||
@-o-keyframes blink-l{ 0% { -o-transform: rotateX(0deg); } 2% { -o-transform: rotateX(80deg); } 4%,20% { -o-transform: rotateX(0deg); } 22% { -o-transform: rotateX(80deg); } 24%,30% { -o-transform: rotateX(0deg); } 32% { -o-transform: rotateX(80deg); } 34%,70% { -o-transform: rotateX(0deg); } 72% { -o-transform: rotateX(80deg); } 74%,100% { -o-transform: rotateX(0deg); }} |
||||
@keyframes blink-l{ 0% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } 2% {-webkit-transform: rotateX(80deg);-moz-transform: rotateX(80deg);-ms-transform: rotateX(80deg);transform: rotateX(80deg); } 4%,20% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } 22% {-webkit-transform: rotateX(80deg);-moz-transform: rotateX(80deg);-ms-transform: rotateX(80deg);transform: rotateX(80deg); } 24%,30% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } 32% {-webkit-transform: rotateX(80deg);-moz-transform: rotateX(80deg);-ms-transform: rotateX(80deg);transform: rotateX(80deg); } 34%,70% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } 72% {-webkit-transform: rotateX(80deg);-moz-transform: rotateX(80deg);-ms-transform: rotateX(80deg);transform: rotateX(80deg); } 74%,100% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); }; |
||||
} |
||||
lesshat-selector { |
||||
-lh-property: 0; } |
||||
@-webkit-keyframes blink-l{ 0% { -webkit-transform: rotateX(0deg); } 2% { -webkit-transform: rotateX(80deg); } 4%,20% { -webkit-transform: rotateX(0deg); } 22% { -webkit-transform: rotateX(80deg); } 24%,30% { -webkit-transform: rotateX(0deg); } 32% { -webkit-transform: rotateX(80deg); } 34%,70% { -webkit-transform: rotateX(0deg); } 72% { -webkit-transform: rotateX(80deg); } 74%,100% { -webkit-transform: rotateX(0deg); }} |
||||
@-moz-keyframes blink-l{ 0% { -moz-transform: rotateX(0deg); } 2% { -moz-transform: rotateX(80deg); } 4%,20% { -moz-transform: rotateX(0deg); } 22% { -moz-transform: rotateX(80deg); } 24%,30% { -moz-transform: rotateX(0deg); } 32% { -moz-transform: rotateX(80deg); } 34%,70% { -moz-transform: rotateX(0deg); } 72% { -moz-transform: rotateX(80deg); } 74%,100% { -moz-transform: rotateX(0deg); }} |
||||
@-o-keyframes blink-l{ 0% { -o-transform: rotateX(0deg); } 2% { -o-transform: rotateX(80deg); } 4%,20% { -o-transform: rotateX(0deg); } 22% { -o-transform: rotateX(80deg); } 24%,30% { -o-transform: rotateX(0deg); } 32% { -o-transform: rotateX(80deg); } 34%,70% { -o-transform: rotateX(0deg); } 72% { -o-transform: rotateX(80deg); } 74%,100% { -o-transform: rotateX(0deg); }} |
||||
@keyframes blink-l{ 0% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } 2% {-webkit-transform: rotateX(80deg);-moz-transform: rotateX(80deg);-ms-transform: rotateX(80deg);transform: rotateX(80deg); } 4%,20% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } 22% {-webkit-transform: rotateX(80deg);-moz-transform: rotateX(80deg);-ms-transform: rotateX(80deg);transform: rotateX(80deg); } 24%,30% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } 32% {-webkit-transform: rotateX(80deg);-moz-transform: rotateX(80deg);-ms-transform: rotateX(80deg);transform: rotateX(80deg); } 34%,70% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } 72% {-webkit-transform: rotateX(80deg);-moz-transform: rotateX(80deg);-ms-transform: rotateX(80deg);transform: rotateX(80deg); } 74%,100% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); }; |
||||
} |
||||
lesshat-selector { |
||||
-lh-property: 0; } |
||||
@-webkit-keyframes blink-r{ 0% { -webkit-transform: rotateX(0deg); } 2% { -webkit-transform: rotateX(80deg); } 4%,30% { -webkit-transform: rotateX(0deg); } 32% { -webkit-transform: rotateX(80deg); } 34%,50% { -webkit-transform: rotateX(0deg); } 52% { -webkit-transform: rotateX(80deg); } 54%,100% { -webkit-transform: rotateX(0deg); } } |
||||
@-moz-keyframes blink-r{ 0% { -moz-transform: rotateX(0deg); } 2% { -moz-transform: rotateX(80deg); } 4%,30% { -moz-transform: rotateX(0deg); } 32% { -moz-transform: rotateX(80deg); } 34%,50% { -moz-transform: rotateX(0deg); } 52% { -moz-transform: rotateX(80deg); } 54%,100% { -moz-transform: rotateX(0deg); } } |
||||
@-o-keyframes blink-r{ 0% { -o-transform: rotateX(0deg); } 2% { -o-transform: rotateX(80deg); } 4%,30% { -o-transform: rotateX(0deg); } 32% { -o-transform: rotateX(80deg); } 34%,50% { -o-transform: rotateX(0deg); } 52% { -o-transform: rotateX(80deg); } 54%,100% { -o-transform: rotateX(0deg); } } |
||||
@keyframes blink-r{ 0% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } 2% {-webkit-transform: rotateX(80deg);-moz-transform: rotateX(80deg);-ms-transform: rotateX(80deg);transform: rotateX(80deg); } 4%,30% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } 32% {-webkit-transform: rotateX(80deg);-moz-transform: rotateX(80deg);-ms-transform: rotateX(80deg);transform: rotateX(80deg); } 34%,50% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } 52% {-webkit-transform: rotateX(80deg);-moz-transform: rotateX(80deg);-ms-transform: rotateX(80deg);transform: rotateX(80deg); } 54%,100% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } ; |
||||
} |
||||
lesshat-selector { |
||||
-lh-property: 0; } |
||||
@-webkit-keyframes blink-r{ 0% { -webkit-transform: rotateX(0deg); } 2% { -webkit-transform: rotateX(80deg); } 4%,30% { -webkit-transform: rotateX(0deg); } 32% { -webkit-transform: rotateX(80deg); } 34%,50% { -webkit-transform: rotateX(0deg); } 52% { -webkit-transform: rotateX(80deg); } 54%,100% { -webkit-transform: rotateX(0deg); } } |
||||
@-moz-keyframes blink-r{ 0% { -moz-transform: rotateX(0deg); } 2% { -moz-transform: rotateX(80deg); } 4%,30% { -moz-transform: rotateX(0deg); } 32% { -moz-transform: rotateX(80deg); } 34%,50% { -moz-transform: rotateX(0deg); } 52% { -moz-transform: rotateX(80deg); } 54%,100% { -moz-transform: rotateX(0deg); } } |
||||
@-o-keyframes blink-r{ 0% { -o-transform: rotateX(0deg); } 2% { -o-transform: rotateX(80deg); } 4%,30% { -o-transform: rotateX(0deg); } 32% { -o-transform: rotateX(80deg); } 34%,50% { -o-transform: rotateX(0deg); } 52% { -o-transform: rotateX(80deg); } 54%,100% { -o-transform: rotateX(0deg); } } |
||||
@keyframes blink-r{ 0% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } 2% {-webkit-transform: rotateX(80deg);-moz-transform: rotateX(80deg);-ms-transform: rotateX(80deg);transform: rotateX(80deg); } 4%,30% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } 32% {-webkit-transform: rotateX(80deg);-moz-transform: rotateX(80deg);-ms-transform: rotateX(80deg);transform: rotateX(80deg); } 34%,50% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } 52% {-webkit-transform: rotateX(80deg);-moz-transform: rotateX(80deg);-ms-transform: rotateX(80deg);transform: rotateX(80deg); } 54%,100% {-webkit-transform: rotateX(0deg);-moz-transform: rotateX(0deg);-ms-transform: rotateX(0deg);transform: rotateX(0deg); } ; |
||||
} |
||||
@ -0,0 +1,123 @@ |
||||
@media (min-width: 768px) { |
||||
.app-aside, |
||||
.app-asider, |
||||
.navbar-header { |
||||
width: 200px; |
||||
background: #fff !important; |
||||
} |
||||
.navbar-collapse, |
||||
.app-content, |
||||
.app-footer { |
||||
margin-left: 200px; |
||||
} |
||||
.app-aside-right { |
||||
position: absolute; |
||||
top: 50px; |
||||
right: 0; |
||||
bottom: 0; |
||||
z-index: 1000; |
||||
} |
||||
.app-aside-right.pos-fix { |
||||
z-index: 1010; |
||||
} |
||||
.visible-folded { |
||||
display: none; |
||||
} |
||||
.app-aside-folded .hidden-folded { |
||||
display: none !important; |
||||
} |
||||
.app-aside-folded .visible-folded { |
||||
display: inherit; |
||||
} |
||||
.app-aside-folded .text-center-folded { |
||||
text-align: center; |
||||
} |
||||
.app-aside-folded .pull-none-folded { |
||||
float: none !important; |
||||
} |
||||
.app-aside-folded .w-auto-folded { |
||||
width: auto; |
||||
} |
||||
.app-aside-folded .app-aside, |
||||
.app-aside-folded .navbar-header { |
||||
width: 60px; |
||||
} |
||||
.app-aside-folded .navbar-collapse, |
||||
.app-aside-folded .app-content, |
||||
.app-aside-folded .app-footer { |
||||
margin-left: 60px; |
||||
} |
||||
.app-aside-folded .app-header .navbar-brand { |
||||
display: block; |
||||
padding: 0; |
||||
} |
||||
.app-aside-fixed .app-header .navbar-header { |
||||
position: fixed; |
||||
} |
||||
.app-aside-fixed .aside-wrap { |
||||
position: fixed; |
||||
top: 50px; |
||||
bottom: 0; |
||||
left: 0; |
||||
z-index: 1000; |
||||
width: 199px; |
||||
overflow: hidden; |
||||
} |
||||
.app-aside-fixed .aside-wrap .navi-wrap { |
||||
position: relative; |
||||
width: 217px; |
||||
height: 100%; |
||||
overflow-x: hidden; |
||||
overflow-y: scroll; |
||||
-webkit-overflow-scrolling: touch; |
||||
} |
||||
.app-aside-fixed .aside-wrap .navi-wrap::-webkit-scrollbar { |
||||
-webkit-appearance: none; |
||||
} |
||||
.app-aside-fixed .aside-wrap .navi-wrap::-webkit-scrollbar:vertical { |
||||
width: 17px; |
||||
} |
||||
.app-aside-fixed .aside-wrap .navi-wrap > * { |
||||
width: 200px; |
||||
} |
||||
.smart .app-aside-fixed .aside-wrap .navi-wrap { |
||||
width: 200px; |
||||
} |
||||
.app-aside-fixed.app-aside-folded .app-aside { |
||||
position: fixed; |
||||
top: 0; |
||||
bottom: 0; |
||||
z-index: 1010; |
||||
} |
||||
.app-aside-fixed.app-aside-folded .aside-wrap { |
||||
width: 59px; |
||||
} |
||||
.app-aside-fixed.app-aside-folded .aside-wrap .navi-wrap { |
||||
width: 77px; |
||||
} |
||||
.app-aside-fixed.app-aside-folded .aside-wrap .navi-wrap > * { |
||||
width: 60px; |
||||
} |
||||
.smart .app-aside-fixed.app-aside-folded .aside-wrap .navi-wrap { |
||||
width: 60px; |
||||
} |
||||
.bg-auto:before { |
||||
position: absolute; |
||||
top: 0; |
||||
bottom: 0; |
||||
z-index: -1; |
||||
width: inherit; |
||||
background-color: inherit; |
||||
border: inherit; |
||||
content: ""; |
||||
} |
||||
.bg-auto.b-l:before { |
||||
margin-left: -1px; |
||||
} |
||||
.bg-auto.b-r:before { |
||||
margin-right: -1px; |
||||
} |
||||
.col.show { |
||||
display: table-cell !important; |
||||
} |
||||
} |
||||
@ -0,0 +1,415 @@ |
||||
/* Product grid */ |
||||
|
||||
.grid { |
||||
position: relative; |
||||
overflow: hidden; |
||||
margin: 0 auto; |
||||
padding: 1.5em 0 8em; |
||||
text-align: center; |
||||
-webkit-user-select: none; |
||||
-moz-user-select: none; |
||||
-ms-user-select: none; |
||||
user-select: none; |
||||
-webkit-touch-callout: none; |
||||
-khtml-user-select: none; |
||||
} |
||||
|
||||
/* Loader */ |
||||
.grid__loader { |
||||
display: none; |
||||
margin: 3em auto 0; |
||||
} |
||||
|
||||
.grid--loading .grid__loader { |
||||
display: block; |
||||
} |
||||
|
||||
/* Clearfix */ |
||||
|
||||
.grid:after { |
||||
content: ''; |
||||
display: block; |
||||
clear: both; |
||||
} |
||||
|
||||
/* Grid items */ |
||||
|
||||
.grid__sizer, |
||||
.grid__item { |
||||
position: relative; |
||||
float: left; |
||||
width: 20%; |
||||
padding: .75em; |
||||
} |
||||
|
||||
.no-touch .grid__sizer, |
||||
.no-touch .grid__item { |
||||
padding: .75em .75em 1.25em; |
||||
} |
||||
|
||||
.grid--loading .grid__item { |
||||
visibility: hidden; |
||||
} |
||||
|
||||
.grid__item--size-a { |
||||
width: 40%; |
||||
} |
||||
|
||||
/* Gallery */ |
||||
|
||||
.slider { |
||||
padding: 0; |
||||
border-radius: 5px; |
||||
background: #24252a; |
||||
} |
||||
|
||||
.no-touch .slider { |
||||
padding: 0 0 1.25em; |
||||
} |
||||
|
||||
.slider__item { |
||||
width: 100%; |
||||
padding: 1em; |
||||
} |
||||
|
||||
.slider__item img { |
||||
width: 100%; |
||||
} |
||||
/* Flickity page dots */ |
||||
|
||||
.slider .flickity-page-dots { |
||||
bottom: 20px; |
||||
opacity: 0; |
||||
-webkit-transition: opacity .3s; |
||||
transition: opacity .3s; |
||||
} |
||||
|
||||
.no-touch .slider:hover .flickity-page-dots { |
||||
opacity: 1; |
||||
} |
||||
|
||||
.slider .flickity-page-dots .dot { |
||||
background: #131417; |
||||
} |
||||
|
||||
/* Product meta */ |
||||
|
||||
.meta { |
||||
position: relative; |
||||
margin: 10px 0 0; |
||||
padding: 0 60px 0 0; |
||||
text-align: left; |
||||
} |
||||
|
||||
.meta__brand { |
||||
font-size: .85em; |
||||
font-weight: bold; |
||||
display: block; |
||||
color: #595b64; |
||||
} |
||||
|
||||
.meta__title { |
||||
font-size: .95em; |
||||
font-weight: bold; |
||||
margin: 0; |
||||
padding: .4em 0 .1em; |
||||
} |
||||
|
||||
.meta__price { |
||||
font-size: .95em; |
||||
font-weight: bold; |
||||
position: absolute; |
||||
top: .45em; |
||||
right: .25em; |
||||
color: #595b64; |
||||
} |
||||
|
||||
/* Action style */ |
||||
|
||||
.action { |
||||
font-family: Avenir, 'Helvetica Neue', 'Lato', 'Segoe UI', Helvetica, Arial, sans-serif; |
||||
font-size: 1.05em; |
||||
position: relative; |
||||
overflow: hidden; |
||||
margin: 0; |
||||
padding: .25em; |
||||
cursor: pointer; |
||||
color: #fff; |
||||
border: none; |
||||
background: none; |
||||
} |
||||
|
||||
.action:focus { |
||||
outline: none; |
||||
} |
||||
|
||||
.action--button { |
||||
color: #5c5edc; |
||||
} |
||||
|
||||
.no-touch .action--button:hover { |
||||
color: #fff; |
||||
outline: none; |
||||
} |
||||
|
||||
.text-hidden { |
||||
position: absolute; |
||||
top: 200%; |
||||
} |
||||
|
||||
/* Add to cart button */ |
||||
|
||||
.action--buy { |
||||
position: absolute; |
||||
top: 0; |
||||
right: 0; |
||||
padding: 1.85em 2.35em; |
||||
-webkit-transition: opacity .3s, -webkit-transform .3s; |
||||
transition: opacity .3s, transform .3s; |
||||
-webkit-transform: translate3d(-5px, 0, 0); |
||||
transform: translate3d(-5px, 0, 0); |
||||
} |
||||
|
||||
.no-touch .action--buy { |
||||
opacity: 0; |
||||
} |
||||
|
||||
.no-touch .grid__item:hover .action--buy { |
||||
opacity: 1; |
||||
-webkit-transform: translate3d(0, 0, 0); |
||||
transform: translate3d(0, 0, 0); |
||||
} |
||||
|
||||
/* Fixed bottom bar */ |
||||
|
||||
.bar { |
||||
position: fixed; |
||||
z-index: 100; |
||||
bottom: 0; |
||||
left: 0; |
||||
width: 100%; |
||||
padding: 1.75em 5em; |
||||
text-align: center; |
||||
background: #191a1b; |
||||
-webkit-transform: translate3d(0, 0, 0); |
||||
/* Fix for Chrome flicker on Mac ...party like we're in 2012! */ |
||||
} |
||||
|
||||
.flexbox .filter { |
||||
} |
||||
|
||||
/* Filter */ |
||||
|
||||
.filter__label { |
||||
font-size: .85em; |
||||
display: inline-block; |
||||
margin: 0 2%; |
||||
font-weight: bold; |
||||
color: #393A3F; |
||||
} |
||||
|
||||
.filter__item { |
||||
margin: 0 10px; |
||||
padding: 10px 15px; |
||||
vertical-align: middle; |
||||
color: #333; |
||||
} |
||||
|
||||
.filter__item--selected { |
||||
padding: 10px 15px; |
||||
border-radius: 3px; |
||||
background: #ffcd00; |
||||
} |
||||
|
||||
.filter__item .icon { |
||||
font-size: 1.75em; |
||||
display: none; |
||||
} |
||||
|
||||
/* Shopping cart */ |
||||
|
||||
.cart { |
||||
font-size: 1.5em; |
||||
position: absolute; |
||||
top: 0; |
||||
right: 0; |
||||
overflow: hidden; |
||||
height: 100%; |
||||
padding: 0 1.195em; |
||||
cursor: pointer; |
||||
color: #abacae; |
||||
border: none; |
||||
background-color: #131415; |
||||
} |
||||
|
||||
.no-touch .cart:focus, |
||||
.no-touch .cart:hover { |
||||
color: #fff; |
||||
outline: none; |
||||
} |
||||
|
||||
.cart--animate .cart__icon { |
||||
-webkit-animation: cartAnim .4s forwards; |
||||
animation: cartAnim .4s forwards; |
||||
} |
||||
|
||||
@-webkit-keyframes cartAnim { |
||||
50% { |
||||
opacity: 0; |
||||
-webkit-transform: translate3d(50px, 0, 0); |
||||
transform: translate3d(50px, 0, 0); |
||||
} |
||||
51% { |
||||
opacity: 0; |
||||
-webkit-transform: translate3d(-50px, 0, 0); |
||||
transform: translate3d(-50px, 0, 0); |
||||
} |
||||
100% { |
||||
opacity: 1; |
||||
-webkit-transform: translate3d(0, 0, 0); |
||||
transform: translate3d(0, 0, 0); |
||||
} |
||||
} |
||||
|
||||
@keyframes cartAnim { |
||||
50% { |
||||
opacity: 0; |
||||
-webkit-transform: translate3d(50px, 0, 0); |
||||
transform: translate3d(50px, 0, 0); |
||||
} |
||||
51% { |
||||
opacity: 0; |
||||
-webkit-transform: translate3d(-50px, 0, 0); |
||||
transform: translate3d(-50px, 0, 0); |
||||
} |
||||
100% { |
||||
opacity: 1; |
||||
-webkit-transform: translate3d(0, 0, 0); |
||||
transform: translate3d(0, 0, 0); |
||||
} |
||||
} |
||||
|
||||
.cart__count { |
||||
font-size: 9px; |
||||
font-weight: bold; |
||||
line-height: 15px; |
||||
position: absolute; |
||||
top: 50%; |
||||
right: 20px; |
||||
width: 15px; |
||||
height: 15px; |
||||
margin: -16px 0 0 0; |
||||
text-align: center; |
||||
color: #fff; |
||||
border-radius: 50%; |
||||
background: #5c5edc; |
||||
} |
||||
|
||||
.cart--animate .cart__count { |
||||
-webkit-animation: countAnim .4s forwards; |
||||
animation: countAnim .4s forwards; |
||||
} |
||||
|
||||
@-webkit-keyframes countAnim { |
||||
50% { |
||||
opacity: 0; |
||||
-webkit-transform: translate3d(0, 80px, 0); |
||||
transform: translate3d(0, 80px, 0); |
||||
} |
||||
51% { |
||||
opacity: 0; |
||||
-webkit-transform: translate3d(0, -80px, 0); |
||||
transform: translate3d(0, -80px, 0); |
||||
} |
||||
100% { |
||||
opacity: 1; |
||||
-webkit-transform: translate3d(0, 0, 0); |
||||
transform: translate3d(0, 0, 0); |
||||
} |
||||
} |
||||
|
||||
@keyframes countAnim { |
||||
50% { |
||||
opacity: 0; |
||||
-webkit-transform: translate3d(0, 80px, 0); |
||||
transform: translate3d(0, 80px, 0); |
||||
} |
||||
51% { |
||||
opacity: 0; |
||||
-webkit-transform: translate3d(0, -80px, 0); |
||||
transform: translate3d(0, -80px, 0); |
||||
} |
||||
100% { |
||||
opacity: 1; |
||||
-webkit-transform: translate3d(0, 0, 0); |
||||
transform: translate3d(0, 0, 0); |
||||
} |
||||
} |
||||
/* Resize grid items on smaller screens */ |
||||
|
||||
@media screen and (max-width: 65em) { |
||||
.grid__sizer, |
||||
.grid__item, |
||||
.grid__item--size-a { |
||||
width: 33.333%; |
||||
} |
||||
} |
||||
|
||||
@media screen and (max-width: 50em) { |
||||
.grid__sizer, |
||||
.grid__item, |
||||
.grid__item--size-a { |
||||
width: 50%; |
||||
} |
||||
.bar { |
||||
padding-left: 0; |
||||
text-align: left; |
||||
} |
||||
} |
||||
|
||||
@media screen and (max-width: 40em) { |
||||
.bar { |
||||
padding: .5em 4.5em .5em 0; |
||||
} |
||||
.flexbox .filter { |
||||
-webkit-justify-content: space-around; |
||||
justify-content: space-around; |
||||
padding: 0; |
||||
width: 100%; |
||||
} |
||||
.filter__item { |
||||
height: 100%; |
||||
width: 100%; |
||||
border: none; |
||||
margin-left: 0; |
||||
} |
||||
.filter__item .icon { |
||||
display: inline-block; |
||||
} |
||||
.filter__label, |
||||
.action__text { |
||||
display: none; |
||||
} |
||||
.cart { |
||||
padding: 0 1em; |
||||
} |
||||
} |
||||
|
||||
@media screen and (max-width: 25em) { |
||||
.grid { |
||||
max-width: 100%; |
||||
} |
||||
.grid__loader { |
||||
margin: 0 auto; |
||||
} |
||||
.grid__sizer, |
||||
.grid__item, |
||||
.grid__item--size-a { |
||||
width: 100%; |
||||
} |
||||
.action--buy { |
||||
font-size: 1.5em; |
||||
padding: 1.15em 1.5em; |
||||
-webkit-tap-highlight-color: transparent; |
||||
} |
||||
} |
||||
@ -0,0 +1,696 @@ |
||||
@charset "UTF-8"; |
||||
|
||||
$simditor-button-height: 40px; |
||||
$simditor-button-width: 46px; |
||||
|
||||
.simditor { |
||||
position: relative; |
||||
border: 1px solid #c9d8db; |
||||
|
||||
.simditor-wrapper { |
||||
position: relative; |
||||
background: #ffffff; |
||||
|
||||
& > textarea { |
||||
display: none !important; |
||||
width: 100%; |
||||
box-sizing: border-box; |
||||
font-family: monaco; |
||||
font-size: 16px; |
||||
line-height: 1.6; |
||||
border: none; |
||||
padding: 22px 15px 40px; |
||||
min-height: 300px; |
||||
outline: none; |
||||
background: transparent; |
||||
resize: none; |
||||
} |
||||
|
||||
.simditor-placeholder { |
||||
display: none; |
||||
position: absolute; |
||||
left: 0; |
||||
z-index: 0; |
||||
padding: 22px 15px; |
||||
font-size: 16px; |
||||
font-family: arial, sans-serif; |
||||
line-height: 1.5; |
||||
color: #999999; |
||||
background: transparent; |
||||
} |
||||
|
||||
&.toolbar-floating { |
||||
.simditor-toolbar { |
||||
position: fixed; |
||||
top: 0; |
||||
z-index: 10; |
||||
box-shadow: 0 0 6px rgba(0,0,0,0.1); |
||||
} |
||||
} |
||||
|
||||
.simditor-image-loading { |
||||
width: 100%; |
||||
height: 100%; |
||||
position: absolute; |
||||
top: 0; |
||||
left: 0; |
||||
z-index: 2; |
||||
|
||||
.progress { |
||||
width: 100%; |
||||
height: 100%; |
||||
background: rgba(0,0,0,0.4); |
||||
position: absolute; |
||||
bottom: 0; |
||||
left: 0; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.simditor-body { |
||||
padding: 22px 15px 40px; |
||||
min-height: 300px; |
||||
outline: none; |
||||
cursor: text; |
||||
position: relative; |
||||
z-index: 1; |
||||
background: transparent; |
||||
|
||||
a.selected { |
||||
background: #b3d4fd; |
||||
} |
||||
|
||||
a.simditor-mention { |
||||
cursor: pointer; |
||||
} |
||||
|
||||
.simditor-table { |
||||
position: relative; |
||||
|
||||
&.resizing { |
||||
cursor: col-resize; |
||||
} |
||||
|
||||
.simditor-resize-handle { |
||||
position: absolute; |
||||
left: 0; |
||||
top: 0; |
||||
width: 10px; |
||||
height: 100%; |
||||
cursor: col-resize; |
||||
} |
||||
} |
||||
|
||||
pre { |
||||
/*min-height: 28px;*/ |
||||
box-sizing: border-box; |
||||
-moz-box-sizing: border-box; |
||||
word-wrap: break-word!important; |
||||
white-space: pre-wrap!important; |
||||
} |
||||
|
||||
img { |
||||
cursor: pointer; |
||||
|
||||
&.selected { |
||||
box-shadow: 0 0 0 4px #cccccc; |
||||
} |
||||
} |
||||
} |
||||
|
||||
.simditor-paste-bin { |
||||
position: fixed; |
||||
bottom: 10px; |
||||
right: 10px; |
||||
width: 1px; |
||||
height: 20px; |
||||
font-size: 1px; |
||||
line-height: 1px; |
||||
overflow: hidden; |
||||
padding: 0; |
||||
margin: 0; |
||||
opacity: 0; |
||||
-webkit-user-select: text; |
||||
} |
||||
|
||||
.simditor-toolbar { |
||||
border-bottom: 1px solid #eeeeee; |
||||
background: #ffffff; |
||||
width: 100%; |
||||
|
||||
& > ul { |
||||
margin: 0; |
||||
padding: 0 0 0 6px; |
||||
list-style: none; |
||||
|
||||
& > li { |
||||
position: relative; |
||||
display: inline-block; |
||||
font-size: 0; |
||||
|
||||
& > span.separator { |
||||
display: inline-block; |
||||
background: #cfcfcf; |
||||
width: 1px; |
||||
height: 18px; |
||||
margin: ($simditor-button-height - 18px) / 2 15px; |
||||
vertical-align: middle; |
||||
} |
||||
|
||||
& > .toolbar-item { |
||||
display: inline-block; |
||||
width: $simditor-button-width; |
||||
height: $simditor-button-height; |
||||
outline: none; |
||||
color: #333333; |
||||
font-size: 15px; |
||||
line-height: $simditor-button-height; |
||||
vertical-align: middle; |
||||
text-align: center; |
||||
text-decoration: none; |
||||
|
||||
span { |
||||
opacity: 0.6; |
||||
|
||||
&.simditor-icon { |
||||
display: inline; |
||||
line-height: normal; |
||||
} |
||||
} |
||||
|
||||
&:hover span { |
||||
opacity: 1; |
||||
} |
||||
|
||||
&.active { |
||||
background: #eeeeee; |
||||
|
||||
span { |
||||
opacity: 1; |
||||
} |
||||
} |
||||
|
||||
&.disabled { |
||||
cursor: default; |
||||
|
||||
span { |
||||
opacity: 0.3; |
||||
} |
||||
} |
||||
|
||||
&.toolbar-item-title { |
||||
span:before { |
||||
content: "H"; |
||||
font-size: 19px; |
||||
font-weight: bold; |
||||
font-family: 'Times New Roman'; |
||||
} |
||||
|
||||
&.active-h1 span:before { |
||||
content: 'H1'; |
||||
font-size: 18px; |
||||
} |
||||
|
||||
&.active-h2 span:before { |
||||
content: 'H2'; |
||||
font-size: 18px; |
||||
} |
||||
|
||||
&.active-h3 span:before { |
||||
content: 'H3'; |
||||
font-size: 18px; |
||||
} |
||||
} |
||||
|
||||
&.toolbar-item-image { |
||||
position: relative; |
||||
overflow: hidden; |
||||
|
||||
& > input[type=file] { |
||||
position: absolute; |
||||
right: 0px; |
||||
top: 0px; |
||||
opacity: 0; |
||||
font-size: 100px; |
||||
cursor: pointer; |
||||
} |
||||
} |
||||
} |
||||
|
||||
&.menu-on { |
||||
.toolbar-item { |
||||
position: relative; |
||||
z-index: 20; |
||||
background: #ffffff; |
||||
box-shadow: 0 1px 4px rgba(0,0,0,0.3); |
||||
|
||||
span { |
||||
opacity: 1; |
||||
} |
||||
} |
||||
|
||||
.toolbar-menu { |
||||
display: block; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
.toolbar-menu { |
||||
display: none; |
||||
position: absolute; |
||||
top: $simditor-button-height; |
||||
left: 0; |
||||
z-index: 21; |
||||
background: #ffffff; |
||||
text-align: left; |
||||
box-shadow: 0 0 4px rgba(0,0,0,0.3); |
||||
|
||||
&:before { |
||||
content: ''; |
||||
display: block; |
||||
width: $simditor-button-width; |
||||
height: 4px; |
||||
background: #ffffff; |
||||
position: absolute; |
||||
top: -3px; |
||||
left: 0; |
||||
} |
||||
|
||||
ul { |
||||
min-width: 160px; |
||||
list-style: none; |
||||
margin: 0; |
||||
padding: 10px 1px; |
||||
|
||||
& > li { |
||||
|
||||
.menu-item { |
||||
display: block; |
||||
font-size:16px; |
||||
line-height: 2em; |
||||
padding: 0 10px; |
||||
text-decoration: none; |
||||
color: #666666; |
||||
|
||||
&:hover { |
||||
background: #f6f6f6; |
||||
} |
||||
|
||||
&.menu-item-h1 { |
||||
font-size: 24px; |
||||
color: #333333; |
||||
} |
||||
|
||||
&.menu-item-h2 { |
||||
font-size: 22px; |
||||
color: #333333; |
||||
} |
||||
|
||||
&.menu-item-h3 { |
||||
font-size: 20px; |
||||
color: #333333; |
||||
} |
||||
|
||||
&.menu-item-h4 { |
||||
font-size: 18px; |
||||
color: #333333; |
||||
} |
||||
|
||||
&.menu-item-h5 { |
||||
font-size: 16px; |
||||
color: #333333; |
||||
} |
||||
} |
||||
|
||||
.separator { |
||||
display: block; |
||||
border-top: 1px solid #cccccc; |
||||
height: 0; |
||||
line-height: 0; |
||||
font-size: 0; |
||||
margin: 6px 0; |
||||
} |
||||
} |
||||
|
||||
} |
||||
|
||||
&.toolbar-menu-color { |
||||
width: 96px; |
||||
|
||||
.color-list { |
||||
height: 40px; |
||||
margin: 10px 6px 6px 10px; |
||||
padding: 0; |
||||
|
||||
min-width: 0; |
||||
|
||||
li { |
||||
float: left; |
||||
margin: 0 4px 4px 0; |
||||
|
||||
.font-color { |
||||
display: block; |
||||
width: 16px; |
||||
height: 16px; |
||||
background: #dfdfdf; |
||||
border-radius: 2px; |
||||
|
||||
&:hover { |
||||
opacity: 0.8; |
||||
} |
||||
|
||||
&.font-color-default { |
||||
background: #333333; |
||||
} |
||||
} |
||||
|
||||
$font-colors: #E33737 #e28b41 #c8a732 #209361 #418caf #aa8773 #999999; |
||||
$i: 1; |
||||
@each $color in $font-colors { |
||||
.font-color-#{$i} { |
||||
background: $color; |
||||
} |
||||
$i: $i + 1; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
&.toolbar-menu-table { |
||||
.menu-create-table { |
||||
background: #ffffff; |
||||
padding: 1px; |
||||
|
||||
table { |
||||
border: none; |
||||
border-collapse: collapse; |
||||
border-spacing: 0; |
||||
table-layout: fixed; |
||||
|
||||
td { |
||||
padding: 0; |
||||
cursor: pointer; |
||||
|
||||
&:before { |
||||
width: 16px; |
||||
height: 16px; |
||||
border: 1px solid #ffffff; |
||||
background: #f3f3f3; |
||||
display: block; |
||||
content: '' |
||||
} |
||||
|
||||
&.selected:before { |
||||
background: #cfcfcf; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
.menu-edit-table { |
||||
display: none; |
||||
|
||||
ul { |
||||
li { |
||||
white-space: nowrap; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
&.toolbar-menu-image { |
||||
.menu-item-upload-image { |
||||
position: relative; |
||||
overflow: hidden; |
||||
|
||||
input[type=file] { |
||||
position: absolute; |
||||
right: 0px; |
||||
top: 0px; |
||||
opacity: 0; |
||||
font-size: 100px; |
||||
cursor: pointer; |
||||
} |
||||
} |
||||
} |
||||
|
||||
&.toolbar-menu-alignment { |
||||
width: 100%; |
||||
ul { |
||||
min-width: 100%; |
||||
} |
||||
.menu-item { |
||||
text-align: center; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
.simditor-popover { |
||||
display: none; |
||||
padding: 5px 8px 0; |
||||
background: #ffffff; |
||||
box-shadow: 0 1px 4px rgba(0,0,0,0.4); |
||||
border-radius: 2px; |
||||
position: absolute; |
||||
z-index: 2; |
||||
|
||||
.settings-field { |
||||
margin: 0 0 5px 0; |
||||
font-size: 12px; |
||||
height: 25px; |
||||
line-height: 25px; |
||||
|
||||
label { |
||||
display: inline-block; |
||||
margin: 0 5px 0 0; |
||||
} |
||||
|
||||
input[type=text] { |
||||
display: inline-block; |
||||
width: 200px; |
||||
box-sizing: border-box; |
||||
font-size: 12px; |
||||
|
||||
&.image-size { |
||||
width: 83px; |
||||
} |
||||
} |
||||
|
||||
.times { |
||||
display: inline-block; |
||||
width: 26px; |
||||
font-size: 12px; |
||||
text-align: center; |
||||
} |
||||
} |
||||
|
||||
&.link-popover .btn-unlink, |
||||
&.image-popover .btn-upload, |
||||
&.image-popover .btn-restore { |
||||
display: inline-block; |
||||
margin: 0 0 0 5px; |
||||
color: #333333; |
||||
font-size: 14px; |
||||
outline: 0; |
||||
|
||||
span { |
||||
opacity: 0.6; |
||||
} |
||||
|
||||
&:hover span { |
||||
opacity: 1; |
||||
} |
||||
} |
||||
|
||||
&.image-popover .btn-upload { |
||||
position: relative; |
||||
display: inline-block; |
||||
overflow: hidden; |
||||
vertical-align: middle; |
||||
|
||||
input[type=file] { |
||||
position: absolute; |
||||
right: 0px; |
||||
top: 0px; |
||||
opacity: 0; |
||||
height: 100%; |
||||
width: 28px; |
||||
} |
||||
} |
||||
} |
||||
|
||||
&.simditor-mobile { |
||||
.simditor-wrapper.toolbar-floating .simditor-toolbar { |
||||
position: absolute; |
||||
top: 0; |
||||
z-index: 10; |
||||
box-shadow: 0 0 6px rgba(0,0,0,0.1); |
||||
} |
||||
} |
||||
} |
||||
|
||||
|
||||
|
||||
.simditor .simditor-body, .editor-style { |
||||
font-size: 16px; |
||||
font-family: arial, sans-serif; |
||||
line-height: 1.6; |
||||
color: #333; |
||||
outline: none; |
||||
word-wrap: break-word; |
||||
|
||||
& > :first-child { |
||||
margin-top: 0!important; |
||||
} |
||||
|
||||
a{ color: #4298BA; text-decoration: none; word-break: break-all;} |
||||
a:visited{ color: #4298BA; } |
||||
a:hover{ color: #0F769F; } |
||||
a:active{ color:#9E792E; } |
||||
a:hover, a:active{ outline: 0; } |
||||
|
||||
h1,h2,h3,h4,h5,h6 { |
||||
font-weight: normal; |
||||
margin: 40px 0 20px; |
||||
color: #000000; |
||||
} |
||||
|
||||
h1 { font-size: 24px; } |
||||
h2 { font-size: 22px; } |
||||
h3 { font-size: 20px; } |
||||
h4 { font-size: 18px; } |
||||
h5 { font-size: 16px; } |
||||
h6 { font-size: 16px; } |
||||
|
||||
p, div { |
||||
word-wrap: break-word; |
||||
margin: 0 0 15px 0; |
||||
color: #333; |
||||
word-wrap: break-word; |
||||
} |
||||
|
||||
b, strong { |
||||
font-weight: bold; |
||||
} |
||||
|
||||
i, em { |
||||
font-style: italic; |
||||
} |
||||
|
||||
u { |
||||
text-decoration: underline; |
||||
} |
||||
|
||||
strike, del { |
||||
text-decoration: line-through; |
||||
} |
||||
|
||||
ul, ol { |
||||
list-style:disc outside none; |
||||
margin: 15px 0; |
||||
padding: 0 0 0 40px; |
||||
line-height: 1.6; |
||||
|
||||
ul, ol { |
||||
padding-left: 30px; |
||||
} |
||||
|
||||
ul { |
||||
list-style: circle outside none; |
||||
|
||||
ul { |
||||
list-style: square outside none; |
||||
} |
||||
} |
||||
} |
||||
|
||||
ol { |
||||
list-style:decimal; |
||||
} |
||||
|
||||
blockquote { |
||||
border-left: 6px solid #ddd; |
||||
padding: 5px 0 5px 10px; |
||||
margin: 15px 0 15px 15px; |
||||
|
||||
& > :first-child { |
||||
margin-top: 0; |
||||
} |
||||
} |
||||
|
||||
code { |
||||
display: inline-block; |
||||
padding: 0 4px; |
||||
margin: 0 5px; |
||||
background: #eeeeee; |
||||
border-radius: 3px; |
||||
font-size: 13px; |
||||
font-family: 'monaco', 'Consolas', "Liberation Mono", Courier, monospace; |
||||
} |
||||
|
||||
pre { |
||||
padding: 10px 5px 10px 10px; |
||||
margin: 15px 0; |
||||
display: block; |
||||
line-height: 18px; |
||||
background: #F0F0F0; |
||||
border-radius: 3px; |
||||
font-size:13px; |
||||
font-family: 'monaco', 'Consolas', "Liberation Mono", Courier, monospace; |
||||
white-space: pre; |
||||
word-wrap: normal; |
||||
overflow-x: auto; |
||||
|
||||
code { |
||||
display: block; |
||||
padding: 0; |
||||
margin: 0; |
||||
background: none; |
||||
border-radius: 0; |
||||
} |
||||
} |
||||
|
||||
hr { |
||||
display: block; |
||||
height: 0px; |
||||
border: 0; |
||||
border-top: 1px solid #ccc; |
||||
margin: 15px 0; |
||||
padding: 0; |
||||
} |
||||
|
||||
table { |
||||
width: 100%; |
||||
table-layout: fixed; |
||||
border-collapse: collapse; |
||||
border-spacing: 0; |
||||
margin: 15px 0; |
||||
|
||||
thead { |
||||
background-color: #f9f9f9; |
||||
} |
||||
|
||||
td, th { |
||||
min-width: 40px; |
||||
height: 30px; |
||||
border: 1px solid #ccc; |
||||
vertical-align: top; |
||||
padding: 2px 4px; |
||||
text-align: left; |
||||
box-sizing: border-box; |
||||
|
||||
&.active { |
||||
background-color: #ffffee; |
||||
} |
||||
} |
||||
} |
||||
|
||||
|
||||
img { |
||||
margin: 0 5px; |
||||
vertical-align: middle; |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,141 @@ |
||||
/*! Flickity v1.0.2 |
||||
http://flickity.metafizzy.co |
||||
---------------------------------------------- */ |
||||
|
||||
.flickity-enabled { |
||||
position: relative; |
||||
} |
||||
|
||||
.flickity-enabled:focus { outline: none; } |
||||
|
||||
.flickity-viewport { |
||||
overflow: hidden; |
||||
position: relative; |
||||
height: 100%; |
||||
} |
||||
|
||||
.flickity-slider { |
||||
position: absolute; |
||||
width: 100%; |
||||
height: 100%; |
||||
} |
||||
|
||||
/* draggable */ |
||||
|
||||
.flickity-enabled.is-draggable { |
||||
-webkit-tap-highlight-color: transparent; |
||||
tap-highlight-color: transparent; |
||||
-webkit-user-select: none; |
||||
-moz-user-select: none; |
||||
-ms-user-select: none; |
||||
user-select: none; |
||||
} |
||||
|
||||
.flickity-enabled.is-draggable .flickity-viewport { |
||||
cursor: move; |
||||
cursor: -webkit-grab; |
||||
cursor: grab; |
||||
} |
||||
|
||||
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down { |
||||
cursor: -webkit-grabbing; |
||||
cursor: grabbing; |
||||
} |
||||
|
||||
/* ---- previous/next buttons ---- */ |
||||
|
||||
.flickity-prev-next-button { |
||||
position: absolute; |
||||
top: 50%; |
||||
width: 44px; |
||||
height: 44px; |
||||
border: none; |
||||
border-radius: 50%; |
||||
background: white; |
||||
background: hsla(0, 0%, 100%, 0.75); |
||||
cursor: pointer; |
||||
/* vertically center */ |
||||
-webkit-transform: translateY(-50%); |
||||
-ms-transform: translateY(-50%); |
||||
transform: translateY(-50%); |
||||
} |
||||
|
||||
.flickity-prev-next-button:hover { background: white; } |
||||
|
||||
.flickity-prev-next-button:focus { |
||||
outline: none; |
||||
box-shadow: 0 0 0 5px #09F; |
||||
} |
||||
|
||||
.flickity-prev-next-button:active { |
||||
filter: alpha(opacity=60); /* IE8 */ |
||||
opacity: 0.6; |
||||
} |
||||
|
||||
.flickity-prev-next-button.previous { left: 10px; } |
||||
.flickity-prev-next-button.next { right: 10px; } |
||||
/* right to left */ |
||||
.flickity-rtl .flickity-prev-next-button.previous { |
||||
left: auto; |
||||
right: 10px; |
||||
} |
||||
.flickity-rtl .flickity-prev-next-button.next { |
||||
right: auto; |
||||
left: 10px; |
||||
} |
||||
|
||||
.flickity-prev-next-button:disabled { |
||||
filter: alpha(opacity=30); /* IE8 */ |
||||
opacity: 0.3; |
||||
cursor: auto; |
||||
} |
||||
|
||||
.flickity-prev-next-button svg { |
||||
position: absolute; |
||||
left: 20%; |
||||
top: 20%; |
||||
width: 60%; |
||||
height: 60%; |
||||
} |
||||
|
||||
.flickity-prev-next-button .arrow { |
||||
fill: #333; |
||||
} |
||||
|
||||
/* color & size if no SVG - IE8 and Android 2.3 */ |
||||
.flickity-prev-next-button.no-svg { |
||||
color: #333; |
||||
font-size: 26px; |
||||
} |
||||
|
||||
/* ---- page dots ---- */ |
||||
|
||||
.flickity-page-dots { |
||||
position: absolute; |
||||
width: 100%; |
||||
bottom: -25px; |
||||
padding: 0; |
||||
margin: 0; |
||||
list-style: none; |
||||
text-align: center; |
||||
line-height: 1; |
||||
} |
||||
|
||||
.flickity-rtl .flickity-page-dots { direction: rtl; } |
||||
|
||||
.flickity-page-dots .dot { |
||||
display: inline-block; |
||||
width: 10px; |
||||
height: 10px; |
||||
margin: 0 8px; |
||||
background: #333; |
||||
border-radius: 50%; |
||||
filter: alpha(opacity=25); /* IE8 */ |
||||
opacity: 0.25; |
||||
cursor: pointer; |
||||
} |
||||
|
||||
.flickity-page-dots .dot.is-selected { |
||||
filter: alpha(opacity=100); /* IE8 */ |
||||
opacity: 1; |
||||
} |
||||
@ -0,0 +1,52 @@ |
||||
@font-face { |
||||
font-family: 'Source Sans Pro'; |
||||
font-style: normal; |
||||
font-weight: 300; |
||||
src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url('../fonts/sourcesanspro/sourcesanspro-light.woff') format('woff'); |
||||
} |
||||
@font-face { |
||||
font-family: 'Source Sans Pro'; |
||||
font-style: normal; |
||||
font-weight: 400; |
||||
src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url('../fonts/sourcesanspro/sourcesanspro.woff') format('woff'); |
||||
} |
||||
@font-face { |
||||
font-family: 'Source Sans Pro'; |
||||
font-style: normal; |
||||
font-weight: 700; |
||||
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url('../fonts/sourcesanspro/sourcesanspro-bold.woff') format('woff'); |
||||
} |
||||
|
||||
@font-face { |
||||
font-family: 'exo_2bold'; |
||||
src: url('../fonts/Exo2-Bold-webfont.eot'); |
||||
src: url('../fonts/Exo2-Bold-webfont.eot?#iefix') format('embedded-opentype'), |
||||
url('../fonts/Exo2-Bold-webfont.woff') format('woff'), |
||||
url('../fonts/Exo2-Bold-webfont.ttf') format('truetype'), |
||||
url('../fonts/Exo2-Bold-webfont.svg#exo_2bold') format('svg'); |
||||
font-weight: normal; |
||||
font-style: normal; |
||||
} |
||||
|
||||
@font-face { |
||||
font-family: 'exo_2light'; |
||||
src: url('../fonts/Exo2-Light-webfont.eot'); |
||||
src: url('../fonts/Exo2-Light-webfont.eot?#iefix') format('embedded-opentype'), |
||||
url('../fonts/Exo2-Light-webfont.woff') format('woff'), |
||||
url('../fonts/Exo2-Light-webfont.ttf') format('truetype'), |
||||
url('../fonts/Exo2-Light-webfont.svg#exo_2light') format('svg'); |
||||
font-weight: normal; |
||||
font-style: normal; |
||||
|
||||
} |
||||
|
||||
@font-face { |
||||
font-family: 'exo_2regular'; |
||||
src: url('../fonts/Exo2-Regular-webfont.eot'); |
||||
src: url('../fonts/Exo2-Regular-webfont.eot?#iefix') format('embedded-opentype'), |
||||
url('../fonts/Exo2-Regular-webfont.woff') format('woff'), |
||||
url('../fonts/Exo2-Regular-webfont.ttf') format('truetype'), |
||||
url('../fonts/Exo2-Regular-webfont.svg#exo_2regular') format('svg'); |
||||
font-weight: normal; |
||||
font-style: normal; |
||||
} |
||||
@ -0,0 +1,11 @@ |
||||
.hc__menu__login{ |
||||
display: none; |
||||
} |
||||
.hc__footer__r{ |
||||
display: none; |
||||
} |
||||
.hc__reply__box__textarea::placeholder{ |
||||
text-align: center; |
||||
} |
||||
*::-webkit-input-placeholder { opacity:0; } |
||||
*::-moz-placeholder { opacity:0; } /* ff 4-18 */ |
||||
@ -0,0 +1,117 @@ |
||||
.ui-widget { |
||||
} |
||||
|
||||
.ui-widget-content { |
||||
border-radius: 3px; |
||||
background: #fff; |
||||
color: #383838; |
||||
} |
||||
|
||||
.ui-dialog { |
||||
overflow:hidden;position:absolute;top:0;left:0;outline:0; z-index: 2001; |
||||
box-shadow: 0 1px 10px rgba(0, 0, 0, .5), -5px 0 10px -23px rgba(0, 0, 0, .8), 5px 0 10px -13px rgba(0, 0, 0, .8), 0 0 0 rgba(0, 0, 0, .3) inset; |
||||
} |
||||
|
||||
#success { |
||||
padding: 0; |
||||
margin: 0; |
||||
} |
||||
|
||||
.ui-dialog .ui-dialog-content { |
||||
position:relative;border:0;padding:.5em 1em;background:none;overflow:auto |
||||
} |
||||
|
||||
.ui-widget-header { |
||||
background:#fff;color:#333;font-weight:bold |
||||
} |
||||
|
||||
.ui-dialog .ui-dialog-titlebar { |
||||
padding: 0.4em 1em; |
||||
position: relative; |
||||
background: #fff; |
||||
color: #666; |
||||
margin: 10px; |
||||
} |
||||
.ui-icon, .ui-widget-content .ui-icon{ |
||||
background-image: url("/static/img/1409200426_delete_remove_close_exit_trash-16.png"); |
||||
} |
||||
.ui-dialog-titlebar-close{ |
||||
position:absolute;right:.5em;top:50%;width:16px;margin:-10px 0 0 0;padding:1px;height:16px;border: 0; |
||||
background: #fff url("/static/img/1409200426_delete_remove_close_exit_trash-16.png") no-repeat; |
||||
cursor: pointer; |
||||
outline: 0; |
||||
} |
||||
.ui-button-icon-only .ui-icon{ |
||||
left: 50%; |
||||
margin-left: -8px; |
||||
} |
||||
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon{ |
||||
position: absolute; |
||||
top: 50%; |
||||
margin-top: -8px; |
||||
} |
||||
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000;} |
||||
.ui-widget-overlay { |
||||
<!--background: #666666 url("/static/img/ui-bg_diagonals-thick_20_666666_40x40.png") 50% 50% repeat;--> |
||||
background: none; |
||||
opacity: .5; |
||||
filter: Alpha(Opacity=50); |
||||
} |
||||
.ui-button{ |
||||
display: inline-block; |
||||
position: relative; |
||||
padding: 0; |
||||
line-height: normal; |
||||
margin-right: .1em; |
||||
cursor: pointer; |
||||
vertical-align: middle; |
||||
text-align: center; |
||||
overflow: visible; |
||||
} |
||||
.ui-dialog .ui-dialog-buttonpane button { |
||||
margin: .5em .4em .5em 0; |
||||
cursor: pointer; |
||||
font-family: Arial, sans-serif; |
||||
padding: 7px; |
||||
color: #666; |
||||
border: 1px solid #ccc; |
||||
font-weight: bold; |
||||
background: rgba(0, 0, 0, .4); |
||||
background: -webkit-linear-gradient(top, rgba(0, 0, 0, .2) 0, rgba(0, 0, 0, .4) 100%); |
||||
background: -moz-linear-gradient(top, rgba(0, 0, 0, .2) 0, rgba(0, 0, 0, .4) 100%); |
||||
background: -o-linear-gradient(top, rgba(0, 0, 0, .2) 0, rgba(0, 0, 0, .4) 100%); |
||||
background: linear-gradient(to bottom, rgba(0, 0, 0, .2) 0, rgba(0, 0, 0, .4) 100%); |
||||
-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .07); |
||||
box-shadow: 0 1px 0 rgba(0, 0, 0, .07); |
||||
border-radius: 3px; |
||||
background: #fff; |
||||
background: -webkit-linear-gradient(top, #fff 0, #eee 100%); |
||||
background: -moz-linear-gradient(top, #fff 0, #eee 100%); |
||||
background: -o-linear-gradient(top, #fff 0, #eee 100%); |
||||
background: linear-gradient(to bottom, #fff 0, #eee 100%); |
||||
border-radius: 2px; |
||||
outline: 0; |
||||
} |
||||
.ui-dialog .ui-dialog-buttonpane button:hover{ |
||||
color: #333; |
||||
} |
||||
.validateTips { |
||||
background: #ffc; |
||||
min-height: 15px; |
||||
width: 100%; |
||||
padding: 2%; |
||||
font-size: 13px; |
||||
text-align: justify; |
||||
color: green; |
||||
margin-bottom: 5px; |
||||
} |
||||
.ui-dialog-buttonpane{ |
||||
background: #f1f1f1; |
||||
padding: 0 1em; |
||||
border-top: 1px solid #ccc; |
||||
border-radius: 0; |
||||
} |
||||
.noclose .ui-dialog-titlebar-close |
||||
{ |
||||
display:none; |
||||
} |
||||
@ -0,0 +1,6 @@ |
||||
/*! jQuery UI - v1.11.4 - 2016-06-14 |
||||
* http://jqueryui.com |
||||
* Includes: core.css, autocomplete.css, menu.css |
||||
* Copyright jQuery Foundation and other contributors; Licensed MIT */ |
||||
|
||||
.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:none}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0} |
||||
@ -0,0 +1,5 @@ |
||||
/*! jQuery UI - v1.11.4 - 2016-06-14 |
||||
* http://jqueryui.com |
||||
* Copyright jQuery Foundation and other contributors; Licensed MIT */ |
||||
|
||||
.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:none}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0} |
||||
@ -0,0 +1,171 @@ |
||||
/* jquery.Jcrop.css v0.9.12 - MIT License */ |
||||
/* |
||||
The outer-most container in a typical Jcrop instance |
||||
If you are having difficulty with formatting related to styles |
||||
on a parent element, place any fixes here or in a like selector |
||||
|
||||
You can also style this element if you want to add a border, etc |
||||
A better method for styling can be seen below with .jcrop-light |
||||
(Add a class to the holder and style elements for that extended class) |
||||
*/ |
||||
.jcrop-holder { |
||||
direction: ltr; |
||||
text-align: left; |
||||
margin: 0 auto; |
||||
border-radius: 5px; |
||||
padding: 10px; |
||||
} |
||||
.jcrop-keymgr{ |
||||
display: none; |
||||
} |
||||
/* Selection Border */ |
||||
.jcrop-vline, |
||||
.jcrop-hline { |
||||
background: #ffffff url("/static/img/Jcrop.gif"); |
||||
font-size: 0; |
||||
position: absolute; |
||||
} |
||||
.jcrop-vline { |
||||
height: 100%; |
||||
width: 1px !important; |
||||
} |
||||
.jcrop-vline.right { |
||||
right: 0; |
||||
} |
||||
.jcrop-hline { |
||||
height: 1px !important; |
||||
width: 100%; |
||||
} |
||||
.jcrop-hline.bottom { |
||||
bottom: 0; |
||||
} |
||||
/* Invisible click targets */ |
||||
.jcrop-tracker { |
||||
height: 100%; |
||||
width: 100%; |
||||
/* "turn off" link highlight */ |
||||
-webkit-tap-highlight-color: transparent; |
||||
/* disable callout, image save panel */ |
||||
-webkit-touch-callout: none; |
||||
/* disable cut copy paste */ |
||||
-webkit-user-select: none; |
||||
} |
||||
/* Selection Handles */ |
||||
.jcrop-handle { |
||||
background-color: #333333; |
||||
border: 1px #eeeeee solid; |
||||
width: 7px; |
||||
height: 7px; |
||||
font-size: 1px; |
||||
} |
||||
.jcrop-handle.ord-n { |
||||
left: 50%; |
||||
margin-left: -4px; |
||||
margin-top: -4px; |
||||
top: 0; |
||||
} |
||||
.jcrop-handle.ord-s { |
||||
bottom: 0; |
||||
left: 50%; |
||||
margin-bottom: -4px; |
||||
margin-left: -4px; |
||||
} |
||||
.jcrop-handle.ord-e { |
||||
margin-right: -4px; |
||||
margin-top: -4px; |
||||
right: 0; |
||||
top: 50%; |
||||
} |
||||
.jcrop-handle.ord-w { |
||||
left: 0; |
||||
margin-left: -4px; |
||||
margin-top: -4px; |
||||
top: 50%; |
||||
} |
||||
.jcrop-handle.ord-nw { |
||||
left: 0; |
||||
margin-left: -4px; |
||||
margin-top: -4px; |
||||
top: 0; |
||||
} |
||||
.jcrop-handle.ord-ne { |
||||
margin-right: -4px; |
||||
margin-top: -4px; |
||||
right: 0; |
||||
top: 0; |
||||
} |
||||
.jcrop-handle.ord-se { |
||||
bottom: 0; |
||||
margin-bottom: -4px; |
||||
margin-right: -4px; |
||||
right: 0; |
||||
} |
||||
.jcrop-handle.ord-sw { |
||||
bottom: 0; |
||||
left: 0; |
||||
margin-bottom: -4px; |
||||
margin-left: -4px; |
||||
} |
||||
/* Dragbars */ |
||||
.jcrop-dragbar.ord-n, |
||||
.jcrop-dragbar.ord-s { |
||||
height: 7px; |
||||
width: 100%; |
||||
} |
||||
.jcrop-dragbar.ord-e, |
||||
.jcrop-dragbar.ord-w { |
||||
height: 100%; |
||||
width: 7px; |
||||
} |
||||
.jcrop-dragbar.ord-n { |
||||
margin-top: -4px; |
||||
} |
||||
.jcrop-dragbar.ord-s { |
||||
bottom: 0; |
||||
margin-bottom: -4px; |
||||
} |
||||
.jcrop-dragbar.ord-e { |
||||
margin-right: -4px; |
||||
right: 0; |
||||
} |
||||
.jcrop-dragbar.ord-w { |
||||
margin-left: -4px; |
||||
} |
||||
/* The "jcrop-light" class/extension */ |
||||
.jcrop-light .jcrop-vline, |
||||
.jcrop-light .jcrop-hline { |
||||
background: #ffffff; |
||||
filter: alpha(opacity=70) !important; |
||||
opacity: .70!important; |
||||
} |
||||
.jcrop-light .jcrop-handle { |
||||
-moz-border-radius: 3px; |
||||
-webkit-border-radius: 3px; |
||||
background-color: #000000; |
||||
border-color: #ffffff; |
||||
border-radius: 3px; |
||||
} |
||||
/* The "jcrop-dark" class/extension */ |
||||
.jcrop-dark .jcrop-vline, |
||||
.jcrop-dark .jcrop-hline { |
||||
background: #000000; |
||||
filter: alpha(opacity=70) !important; |
||||
opacity: 0.7 !important; |
||||
} |
||||
.jcrop-dark .jcrop-handle { |
||||
-moz-border-radius: 3px; |
||||
-webkit-border-radius: 3px; |
||||
background-color: #ffffff; |
||||
border-color: #000000; |
||||
border-radius: 3px; |
||||
} |
||||
/* Simple macro to turn off the antlines */ |
||||
.solid-line .jcrop-vline, |
||||
.solid-line .jcrop-hline { |
||||
background: #ffffff; |
||||
} |
||||
/* Fix for twitter bootstrap et al. */ |
||||
.jcrop-holder img, |
||||
img.jcrop-preview { |
||||
max-width: none; |
||||
} |
||||
@ -0,0 +1,274 @@ |
||||
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */ |
||||
.fancybox-wrap, |
||||
.fancybox-skin, |
||||
.fancybox-outer, |
||||
.fancybox-inner, |
||||
.fancybox-image, |
||||
.fancybox-wrap iframe, |
||||
.fancybox-wrap object, |
||||
.fancybox-nav, |
||||
.fancybox-nav span, |
||||
.fancybox-tmp |
||||
{ |
||||
padding: 0; |
||||
margin: 0; |
||||
border: 0; |
||||
outline: none; |
||||
vertical-align: top; |
||||
} |
||||
|
||||
.fancybox-wrap { |
||||
position: absolute; |
||||
top: 0; |
||||
left: 0; |
||||
z-index: 8020; |
||||
} |
||||
|
||||
.fancybox-skin { |
||||
position: relative; |
||||
background: #f9f9f9; |
||||
color: #444; |
||||
text-shadow: none; |
||||
-webkit-border-radius: 4px; |
||||
-moz-border-radius: 4px; |
||||
border-radius: 4px; |
||||
} |
||||
|
||||
.fancybox-opened { |
||||
z-index: 8030; |
||||
} |
||||
|
||||
.fancybox-opened .fancybox-skin { |
||||
-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); |
||||
-moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); |
||||
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); |
||||
} |
||||
|
||||
.fancybox-outer, .fancybox-inner { |
||||
position: relative; |
||||
} |
||||
|
||||
.fancybox-inner { |
||||
overflow: hidden; |
||||
} |
||||
|
||||
.fancybox-type-iframe .fancybox-inner { |
||||
-webkit-overflow-scrolling: touch; |
||||
} |
||||
|
||||
.fancybox-error { |
||||
color: #444; |
||||
font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif; |
||||
margin: 0; |
||||
padding: 15px; |
||||
white-space: nowrap; |
||||
} |
||||
|
||||
.fancybox-image, .fancybox-iframe { |
||||
display: block; |
||||
width: 100%; |
||||
height: 100%; |
||||
} |
||||
|
||||
.fancybox-image { |
||||
max-width: 100%; |
||||
max-height: 100%; |
||||
} |
||||
|
||||
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span { |
||||
background-image: url('/static/img/fancybox_sprite.png'); |
||||
} |
||||
|
||||
#fancybox-loading { |
||||
position: fixed; |
||||
top: 50%; |
||||
left: 50%; |
||||
margin-top: -22px; |
||||
margin-left: -22px; |
||||
background-position: 0 -108px; |
||||
opacity: 0.8; |
||||
cursor: pointer; |
||||
z-index: 8060; |
||||
} |
||||
|
||||
#fancybox-loading div { |
||||
width: 44px; |
||||
height: 44px; |
||||
background: url('/static/img/fancybox_loading.gif') center center no-repeat; |
||||
} |
||||
|
||||
.fancybox-close { |
||||
position: absolute; |
||||
top: -18px; |
||||
right: -18px; |
||||
width: 36px; |
||||
height: 36px; |
||||
cursor: pointer; |
||||
z-index: 8040; |
||||
} |
||||
|
||||
.fancybox-nav { |
||||
position: absolute; |
||||
top: 0; |
||||
width: 40%; |
||||
height: 100%; |
||||
cursor: pointer; |
||||
text-decoration: none; |
||||
background: transparent url('/static/img/blank.gif'); /* helps IE */ |
||||
-webkit-tap-highlight-color: rgba(0,0,0,0); |
||||
z-index: 8040; |
||||
} |
||||
|
||||
.fancybox-prev { |
||||
left: 0; |
||||
} |
||||
|
||||
.fancybox-next { |
||||
right: 0; |
||||
} |
||||
|
||||
.fancybox-nav span { |
||||
position: absolute; |
||||
top: 50%; |
||||
width: 36px; |
||||
height: 34px; |
||||
margin-top: -18px; |
||||
cursor: pointer; |
||||
z-index: 8040; |
||||
visibility: hidden; |
||||
} |
||||
|
||||
.fancybox-prev span { |
||||
left: 10px; |
||||
background-position: 0 -36px; |
||||
} |
||||
|
||||
.fancybox-next span { |
||||
right: 10px; |
||||
background-position: 0 -72px; |
||||
} |
||||
|
||||
.fancybox-nav:hover span { |
||||
visibility: visible; |
||||
} |
||||
|
||||
.fancybox-tmp { |
||||
position: absolute; |
||||
top: -99999px; |
||||
left: -99999px; |
||||
visibility: hidden; |
||||
max-width: 99999px; |
||||
max-height: 99999px; |
||||
overflow: visible !important; |
||||
} |
||||
|
||||
/* Overlay helper */ |
||||
|
||||
.fancybox-lock { |
||||
overflow: hidden !important; |
||||
width: auto; |
||||
} |
||||
|
||||
.fancybox-lock body { |
||||
overflow: hidden !important; |
||||
} |
||||
|
||||
.fancybox-lock-test { |
||||
overflow-y: hidden !important; |
||||
} |
||||
|
||||
.fancybox-overlay { |
||||
position: absolute; |
||||
top: 0; |
||||
left: 0; |
||||
overflow: hidden; |
||||
display: none; |
||||
z-index: 8010; |
||||
background: url('/static/img/fancybox_overlay.png'); |
||||
} |
||||
|
||||
.fancybox-overlay-fixed { |
||||
position: fixed; |
||||
bottom: 0; |
||||
right: 0; |
||||
} |
||||
|
||||
.fancybox-lock .fancybox-overlay { |
||||
overflow: auto; |
||||
overflow-y: scroll; |
||||
} |
||||
|
||||
/* Title helper */ |
||||
|
||||
.fancybox-title { |
||||
visibility: hidden; |
||||
font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif; |
||||
position: relative; |
||||
text-shadow: none; |
||||
z-index: 8050; |
||||
} |
||||
|
||||
.fancybox-opened .fancybox-title { |
||||
visibility: visible; |
||||
} |
||||
|
||||
.fancybox-title-float-wrap { |
||||
position: absolute; |
||||
bottom: 0; |
||||
right: 50%; |
||||
margin-bottom: -35px; |
||||
z-index: 8050; |
||||
text-align: center; |
||||
} |
||||
|
||||
.fancybox-title-float-wrap .child { |
||||
display: inline-block; |
||||
margin-right: -100%; |
||||
padding: 2px 20px; |
||||
background: transparent; /* Fallback for web browsers that doesn't support RGBa */ |
||||
background: rgba(0, 0, 0, 0.8); |
||||
-webkit-border-radius: 15px; |
||||
-moz-border-radius: 15px; |
||||
border-radius: 15px; |
||||
text-shadow: 0 1px 2px #222; |
||||
color: #FFF; |
||||
font-weight: bold; |
||||
line-height: 24px; |
||||
white-space: nowrap; |
||||
} |
||||
|
||||
.fancybox-title-outside-wrap { |
||||
position: relative; |
||||
margin-top: 10px; |
||||
color: #fff; |
||||
} |
||||
|
||||
.fancybox-title-inside-wrap { |
||||
padding-top: 10px; |
||||
} |
||||
|
||||
.fancybox-title-over-wrap { |
||||
position: absolute; |
||||
bottom: 0; |
||||
left: 0; |
||||
color: #fff; |
||||
padding: 10px; |
||||
background: #000; |
||||
background: rgba(0, 0, 0, .8); |
||||
} |
||||
|
||||
/*Retina graphics!*/ |
||||
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), |
||||
only screen and (min--moz-device-pixel-ratio: 1.5), |
||||
only screen and (min-device-pixel-ratio: 1.5){ |
||||
|
||||
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span { |
||||
background-image: url('/static/img/fancybox_sprite@2x.png'); |
||||
background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/ |
||||
} |
||||
|
||||
#fancybox-loading div { |
||||
background-image: url('/static/img/fancybox_loading@2x.gif'); |
||||
background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/ |
||||
} |
||||
} |
||||
@ -0,0 +1 @@ |
||||
.kladr-error{color:#cb3e27}#kladr_autocomplete ul{position:absolute;display:block;margin:0;padding:0;border:1px solid #c4c4c4;background-color:#fff;z-index:9999;overflow-x:hidden;overflow-y:auto;min-width:200px;max-height:420px;color:#313131}#kladr_autocomplete li{display:list-item;list-style-type:none;margin:0;padding:8px 10px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}#kladr_autocomplete li+li{border-top:1px solid #ededed}#kladr_autocomplete li:hover{background-color:#f2f2f2;cursor:pointer}#kladr_autocomplete li.active{background-color:#e9e9e9}#kladr_autocomplete a{text-decoration:none}#kladr_autocomplete strong{color:#038ebd}#kladr_autocomplete .spinner{position:absolute;display:block;margin:0;padding:0;width:16px;height:16px;background:url("/static/img/spinner.png") center center no-repeat;z-index:9999} |
||||
@ -0,0 +1,39 @@ |
||||
.chart { |
||||
} |
||||
.pieTip { |
||||
z-index: 2100; |
||||
position: absolute; |
||||
float: left; |
||||
min-width: 30px; |
||||
max-width: 300px; |
||||
padding: 5px 18px 6px; |
||||
border-radius: 2px; |
||||
background: rgba(255,255,255,.97); |
||||
color: #444; |
||||
font-size: 15px; |
||||
text-shadow: 0 1px 0 #fff; |
||||
text-transform: uppercase; |
||||
text-align: center; |
||||
line-height: 1.3; |
||||
letter-spacing: .06em; |
||||
box-shadow: 0 0 3px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.5); |
||||
-webkit-transform: all .3s; |
||||
-moz-transform: all .3s; |
||||
-ms-transform: all .3s; |
||||
-o-transform: all .3s; |
||||
transform: all .3s; |
||||
pointer-events: none; |
||||
} |
||||
.pieTip:after { |
||||
position: absolute; |
||||
left: 50%; |
||||
bottom: -6px; |
||||
content: ""; |
||||
height: 0; |
||||
margin: 0 0 0 -6px; |
||||
border-right: 5px solid transparent; |
||||
border-left: 5px solid transparent; |
||||
border-top: 6px solid rgba(255,255,255,.95); |
||||
line-height: 0; |
||||
} |
||||
.chart path { cursor: pointer; } |
||||
@ -0,0 +1,4 @@ |
||||
@charset "UTF-8"; |
||||
|
||||
@import 'fonticon'; |
||||
@import 'editor'; |
||||
@ -0,0 +1,754 @@ |
||||
@font-face { |
||||
font-family: 'simple-line-icons'; |
||||
src: url('../fonts/Simple-Line-Icons.eot?-i3a2kk'); |
||||
src: url('../fonts/Simple-Line-Icons.eot?#iefix-i3a2kk') format('embedded-opentype'), url('../fonts/Simple-Line-Icons.ttf?-i3a2kk') format('truetype'), url('../fonts/Simple-Line-Icons.woff2?-i3a2kk') format('woff2'), url('../fonts/Simple-Line-Icons.woff?-i3a2kk') format('woff'), url('../fonts/Simple-Line-Icons.svg?-i3a2kk#simple-line-icons') format('svg'); |
||||
font-weight: normal; |
||||
font-style: normal; |
||||
} |
||||
/* |
||||
Use the following CSS code if you want to have a class per icon. |
||||
Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector, but it's slower: |
||||
*/ |
||||
.icon-user, |
||||
.icon-people, |
||||
.icon-user-female, |
||||
.icon-user-follow, |
||||
.icon-user-following, |
||||
.icon-user-unfollow, |
||||
.icon-login, |
||||
.icon-logout, |
||||
.icon-emotsmile, |
||||
.icon-phone, |
||||
.icon-call-end, |
||||
.icon-call-in, |
||||
.icon-call-out, |
||||
.icon-map, |
||||
.icon-location-pin, |
||||
.icon-direction, |
||||
.icon-directions, |
||||
.icon-compass, |
||||
.icon-layers, |
||||
.icon-menu, |
||||
.icon-list, |
||||
.icon-options-vertical, |
||||
.icon-options, |
||||
.icon-arrow-down, |
||||
.icon-arrow-left, |
||||
.icon-arrow-right, |
||||
.icon-arrow-up, |
||||
.icon-arrow-up-circle, |
||||
.icon-arrow-left-circle, |
||||
.icon-arrow-right-circle, |
||||
.icon-arrow-down-circle, |
||||
.icon-check, |
||||
.icon-clock, |
||||
.icon-plus, |
||||
.icon-close, |
||||
.icon-trophy, |
||||
.icon-screen-smartphone, |
||||
.icon-screen-desktop, |
||||
.icon-plane, |
||||
.icon-notebook, |
||||
.icon-mustache, |
||||
.icon-mouse, |
||||
.icon-magnet, |
||||
.icon-energy, |
||||
.icon-disc, |
||||
.icon-cursor, |
||||
.icon-cursor-move, |
||||
.icon-crop, |
||||
.icon-chemistry, |
||||
.icon-speedometer, |
||||
.icon-shield, |
||||
.icon-screen-tablet, |
||||
.icon-magic-wand, |
||||
.icon-hourglass, |
||||
.icon-graduation, |
||||
.icon-ghost, |
||||
.icon-game-controller, |
||||
.icon-fire, |
||||
.icon-eyeglass, |
||||
.icon-envelope-open, |
||||
.icon-envelope-letter, |
||||
.icon-bell, |
||||
.icon-badge, |
||||
.icon-anchor, |
||||
.icon-wallet, |
||||
.icon-vector, |
||||
.icon-speech, |
||||
.icon-puzzle, |
||||
.icon-printer, |
||||
.icon-present, |
||||
.icon-playlist, |
||||
.icon-pin, |
||||
.icon-picture, |
||||
.icon-handbag, |
||||
.icon-globe-alt, |
||||
.icon-globe, |
||||
.icon-folder-alt, |
||||
.icon-folder, |
||||
.icon-film, |
||||
.icon-feed, |
||||
.icon-drop, |
||||
.icon-drawar, |
||||
.icon-docs, |
||||
.icon-doc, |
||||
.icon-diamond, |
||||
.icon-cup, |
||||
.icon-calculator, |
||||
.icon-bubbles, |
||||
.icon-briefcase, |
||||
.icon-book-open, |
||||
.icon-basket-loaded, |
||||
.icon-basket, |
||||
.icon-bag, |
||||
.icon-action-undo, |
||||
.icon-action-redo, |
||||
.icon-wrench, |
||||
.icon-umbrella, |
||||
.icon-trash, |
||||
.icon-tag, |
||||
.icon-support, |
||||
.icon-frame, |
||||
.icon-size-fullscreen, |
||||
.icon-size-actual, |
||||
.icon-shuffle, |
||||
.icon-share-alt, |
||||
.icon-share, |
||||
.icon-rocket, |
||||
.icon-question, |
||||
.icon-pie-chart, |
||||
.icon-pencil, |
||||
.icon-note, |
||||
.icon-loop, |
||||
.icon-home, |
||||
.icon-grid, |
||||
.icon-graph, |
||||
.icon-microphone, |
||||
.icon-music-tone-alt, |
||||
.icon-music-tone, |
||||
.icon-earphones-alt, |
||||
.icon-earphones, |
||||
.icon-equalizer, |
||||
.icon-like, |
||||
.icon-dislike, |
||||
.icon-control-start, |
||||
.icon-control-rewind, |
||||
.icon-control-play, |
||||
.icon-control-pause, |
||||
.icon-control-forward, |
||||
.icon-control-end, |
||||
.icon-volume-1, |
||||
.icon-volume-2, |
||||
.icon-volume-off, |
||||
.icon-calender, |
||||
.icon-bulb, |
||||
.icon-chart, |
||||
.icon-ban, |
||||
.icon-bubble, |
||||
.icon-camrecorder, |
||||
.icon-camera, |
||||
.icon-cloud-download, |
||||
.icon-cloud-upload, |
||||
.icon-envelope, |
||||
.icon-eye, |
||||
.icon-flag, |
||||
.icon-heart, |
||||
.icon-info, |
||||
.icon-key, |
||||
.icon-link, |
||||
.icon-lock, |
||||
.icon-lock-open, |
||||
.icon-magnifier, |
||||
.icon-magnifier-add, |
||||
.icon-magnifier-remove, |
||||
.icon-paper-clip, |
||||
.icon-paper-plane, |
||||
.icon-power, |
||||
.icon-refresh, |
||||
.icon-reload, |
||||
.icon-settings, |
||||
.icon-star, |
||||
.icon-symble-female, |
||||
.icon-symbol-male, |
||||
.icon-target, |
||||
.icon-credit-card, |
||||
.icon-paypal, |
||||
.icon-social-tumblr, |
||||
.icon-social-twitter, |
||||
.icon-social-facebook, |
||||
.icon-social-instagram, |
||||
.icon-social-linkedin, |
||||
.icon-social-pintarest, |
||||
.icon-social-github, |
||||
.icon-social-gplus, |
||||
.icon-social-reddit, |
||||
.icon-social-skype, |
||||
.icon-social-dribbble, |
||||
.icon-social-behance, |
||||
.icon-social-foursqare, |
||||
.icon-social-soundcloud, |
||||
.icon-social-spotify, |
||||
.icon-social-stumbleupon, |
||||
.icon-social-youtube, |
||||
.icon-social-dropbox { |
||||
font-family: 'simple-line-icons'; |
||||
speak: none; |
||||
font-style: normal; |
||||
font-weight: normal; |
||||
font-variant: normal; |
||||
text-transform: none; |
||||
line-height: 1; |
||||
/* Better Font Rendering =========== */ |
||||
-webkit-font-smoothing: antialiased; |
||||
-moz-osx-font-smoothing: grayscale; |
||||
} |
||||
.icon-user:before { |
||||
content: "\e005"; |
||||
} |
||||
.icon-people:before { |
||||
content: "\e001"; |
||||
} |
||||
.icon-user-female:before { |
||||
content: "\e000"; |
||||
} |
||||
.icon-user-follow:before { |
||||
content: "\e002"; |
||||
} |
||||
.icon-user-following:before { |
||||
content: "\e003"; |
||||
} |
||||
.icon-user-unfollow:before { |
||||
content: "\e004"; |
||||
} |
||||
.icon-login:before { |
||||
content: "\e066"; |
||||
} |
||||
.icon-logout:before { |
||||
content: "\e065"; |
||||
} |
||||
.icon-emotsmile:before { |
||||
content: "\e021"; |
||||
} |
||||
.icon-phone:before { |
||||
content: "\e600"; |
||||
} |
||||
.icon-call-end:before { |
||||
content: "\e048"; |
||||
} |
||||
.icon-call-in:before { |
||||
content: "\e047"; |
||||
} |
||||
.icon-call-out:before { |
||||
content: "\e046"; |
||||
} |
||||
.icon-map:before { |
||||
content: "\e033"; |
||||
} |
||||
.icon-location-pin:before { |
||||
content: "\e096"; |
||||
} |
||||
.icon-direction:before { |
||||
content: "\e042"; |
||||
} |
||||
.icon-directions:before { |
||||
content: "\e041"; |
||||
} |
||||
.icon-compass:before { |
||||
content: "\e045"; |
||||
} |
||||
.icon-layers:before { |
||||
content: "\e034"; |
||||
} |
||||
.icon-menu:before { |
||||
content: "\e601"; |
||||
} |
||||
.icon-list:before { |
||||
content: "\e067"; |
||||
} |
||||
.icon-options-vertical:before { |
||||
content: "\e602"; |
||||
} |
||||
.icon-options:before { |
||||
content: "\e603"; |
||||
} |
||||
.icon-arrow-down:before { |
||||
content: "\e604"; |
||||
} |
||||
.icon-arrow-left:before { |
||||
content: "\e605"; |
||||
} |
||||
.icon-arrow-right:before { |
||||
content: "\e606"; |
||||
} |
||||
.icon-arrow-up:before { |
||||
content: "\e607"; |
||||
} |
||||
.icon-arrow-up-circle:before { |
||||
content: "\e078"; |
||||
} |
||||
.icon-arrow-left-circle:before { |
||||
content: "\e07a"; |
||||
} |
||||
.icon-arrow-right-circle:before { |
||||
content: "\e079"; |
||||
} |
||||
.icon-arrow-down-circle:before { |
||||
content: "\e07b"; |
||||
} |
||||
.icon-check:before { |
||||
content: "\e080"; |
||||
} |
||||
.icon-clock:before { |
||||
content: "\e081"; |
||||
} |
||||
.icon-plus:before { |
||||
content: "\e095"; |
||||
} |
||||
.icon-close:before { |
||||
content: "\e082"; |
||||
} |
||||
.icon-trophy:before { |
||||
content: "\e006"; |
||||
} |
||||
.icon-screen-smartphone:before { |
||||
content: "\e010"; |
||||
} |
||||
.icon-screen-desktop:before { |
||||
content: "\e011"; |
||||
} |
||||
.icon-plane:before { |
||||
content: "\e012"; |
||||
} |
||||
.icon-notebook:before { |
||||
content: "\e013"; |
||||
} |
||||
.icon-mustache:before { |
||||
content: "\e014"; |
||||
} |
||||
.icon-mouse:before { |
||||
content: "\e015"; |
||||
} |
||||
.icon-magnet:before { |
||||
content: "\e016"; |
||||
} |
||||
.icon-energy:before { |
||||
content: "\e020"; |
||||
} |
||||
.icon-disc:before { |
||||
content: "\e022"; |
||||
} |
||||
.icon-cursor:before { |
||||
content: "\e06e"; |
||||
} |
||||
.icon-cursor-move:before { |
||||
content: "\e023"; |
||||
} |
||||
.icon-crop:before { |
||||
content: "\e024"; |
||||
} |
||||
.icon-chemistry:before { |
||||
content: "\e026"; |
||||
} |
||||
.icon-speedometer:before { |
||||
content: "\e007"; |
||||
} |
||||
.icon-shield:before { |
||||
content: "\e00e"; |
||||
} |
||||
.icon-screen-tablet:before { |
||||
content: "\e00f"; |
||||
} |
||||
.icon-magic-wand:before { |
||||
content: "\e017"; |
||||
} |
||||
.icon-hourglass:before { |
||||
content: "\e018"; |
||||
} |
||||
.icon-graduation:before { |
||||
content: "\e019"; |
||||
} |
||||
.icon-ghost:before { |
||||
content: "\e01a"; |
||||
} |
||||
.icon-game-controller:before { |
||||
content: "\e01b"; |
||||
} |
||||
.icon-fire:before { |
||||
content: "\e01c"; |
||||
} |
||||
.icon-eyeglass:before { |
||||
content: "\e01d"; |
||||
} |
||||
.icon-envelope-open:before { |
||||
content: "\e01e"; |
||||
} |
||||
.icon-envelope-letter:before { |
||||
content: "\e01f"; |
||||
} |
||||
.icon-bell:before { |
||||
content: "\e027"; |
||||
} |
||||
.icon-badge:before { |
||||
content: "\e028"; |
||||
} |
||||
.icon-anchor:before { |
||||
content: "\e029"; |
||||
} |
||||
.icon-wallet:before { |
||||
content: "\e02a"; |
||||
} |
||||
.icon-vector:before { |
||||
content: "\e02b"; |
||||
} |
||||
.icon-speech:before { |
||||
content: "\e02c"; |
||||
} |
||||
.icon-puzzle:before { |
||||
content: "\e02d"; |
||||
} |
||||
.icon-printer:before { |
||||
content: "\e02e"; |
||||
} |
||||
.icon-present:before { |
||||
content: "\e02f"; |
||||
} |
||||
.icon-playlist:before { |
||||
content: "\e030"; |
||||
} |
||||
.icon-pin:before { |
||||
content: "\e031"; |
||||
} |
||||
.icon-picture:before { |
||||
content: "\e032"; |
||||
} |
||||
.icon-handbag:before { |
||||
content: "\e035"; |
||||
} |
||||
.icon-globe-alt:before { |
||||
content: "\e036"; |
||||
} |
||||
.icon-globe:before { |
||||
content: "\e037"; |
||||
} |
||||
.icon-folder-alt:before { |
||||
content: "\e039"; |
||||
} |
||||
.icon-folder:before { |
||||
content: "\e089"; |
||||
} |
||||
.icon-film:before { |
||||
content: "\e03a"; |
||||
} |
||||
.icon-feed:before { |
||||
content: "\e03b"; |
||||
} |
||||
.icon-drop:before { |
||||
content: "\e03e"; |
||||
} |
||||
.icon-drawar:before { |
||||
content: "\e03f"; |
||||
} |
||||
.icon-docs:before { |
||||
content: "\e040"; |
||||
} |
||||
.icon-doc:before { |
||||
content: "\e085"; |
||||
} |
||||
.icon-diamond:before { |
||||
content: "\e043"; |
||||
} |
||||
.icon-cup:before { |
||||
content: "\e044"; |
||||
} |
||||
.icon-calculator:before { |
||||
content: "\e049"; |
||||
} |
||||
.icon-bubbles:before { |
||||
content: "\e04a"; |
||||
} |
||||
.icon-briefcase:before { |
||||
content: "\e04b"; |
||||
} |
||||
.icon-book-open:before { |
||||
content: "\e04c"; |
||||
} |
||||
.icon-basket-loaded:before { |
||||
content: "\e04d"; |
||||
} |
||||
.icon-basket:before { |
||||
content: "\e04e"; |
||||
} |
||||
.icon-bag:before { |
||||
content: "\e04f"; |
||||
} |
||||
.icon-action-undo:before { |
||||
content: "\e050"; |
||||
} |
||||
.icon-action-redo:before { |
||||
content: "\e051"; |
||||
} |
||||
.icon-wrench:before { |
||||
content: "\e052"; |
||||
} |
||||
.icon-umbrella:before { |
||||
content: "\e053"; |
||||
} |
||||
.icon-trash:before { |
||||
content: "\e054"; |
||||
} |
||||
.icon-tag:before { |
||||
content: "\e055"; |
||||
} |
||||
.icon-support:before { |
||||
content: "\e056"; |
||||
} |
||||
.icon-frame:before { |
||||
content: "\e038"; |
||||
} |
||||
.icon-size-fullscreen:before { |
||||
content: "\e057"; |
||||
} |
||||
.icon-size-actual:before { |
||||
content: "\e058"; |
||||
} |
||||
.icon-shuffle:before { |
||||
content: "\e059"; |
||||
} |
||||
.icon-share-alt:before { |
||||
content: "\e05a"; |
||||
} |
||||
.icon-share:before { |
||||
content: "\e05b"; |
||||
} |
||||
.icon-rocket:before { |
||||
content: "\e05c"; |
||||
} |
||||
.icon-question:before { |
||||
content: "\e05d"; |
||||
} |
||||
.icon-pie-chart:before { |
||||
content: "\e05e"; |
||||
} |
||||
.icon-pencil:before { |
||||
content: "\e05f"; |
||||
} |
||||
.icon-note:before { |
||||
content: "\e060"; |
||||
} |
||||
.icon-loop:before { |
||||
content: "\e064"; |
||||
} |
||||
.icon-home:before { |
||||
content: "\e069"; |
||||
} |
||||
.icon-grid:before { |
||||
content: "\e06a"; |
||||
} |
||||
.icon-graph:before { |
||||
content: "\e06b"; |
||||
} |
||||
.icon-microphone:before { |
||||
content: "\e063"; |
||||
} |
||||
.icon-music-tone-alt:before { |
||||
content: "\e061"; |
||||
} |
||||
.icon-music-tone:before { |
||||
content: "\e062"; |
||||
} |
||||
.icon-earphones-alt:before { |
||||
content: "\e03c"; |
||||
} |
||||
.icon-earphones:before { |
||||
content: "\e03d"; |
||||
} |
||||
.icon-equalizer:before { |
||||
content: "\e06c"; |
||||
} |
||||
.icon-like:before { |
||||
content: "\e068"; |
||||
} |
||||
.icon-dislike:before { |
||||
content: "\e06d"; |
||||
} |
||||
.icon-control-start:before { |
||||
content: "\e06f"; |
||||
} |
||||
.icon-control-rewind:before { |
||||
content: "\e070"; |
||||
} |
||||
.icon-control-play:before { |
||||
content: "\e071"; |
||||
} |
||||
.icon-control-pause:before { |
||||
content: "\e072"; |
||||
} |
||||
.icon-control-forward:before { |
||||
content: "\e073"; |
||||
} |
||||
.icon-control-end:before { |
||||
content: "\e074"; |
||||
} |
||||
.icon-volume-1:before { |
||||
content: "\e09f"; |
||||
} |
||||
.icon-volume-2:before { |
||||
content: "\e0a0"; |
||||
} |
||||
.icon-volume-off:before { |
||||
content: "\e0a1"; |
||||
} |
||||
.icon-calender:before { |
||||
content: "\e075"; |
||||
} |
||||
.icon-bulb:before { |
||||
content: "\e076"; |
||||
} |
||||
.icon-chart:before { |
||||
content: "\e077"; |
||||
} |
||||
.icon-ban:before { |
||||
content: "\e07c"; |
||||
} |
||||
.icon-bubble:before { |
||||
content: "\e07d"; |
||||
} |
||||
.icon-camrecorder:before { |
||||
content: "\e07e"; |
||||
} |
||||
.icon-camera:before { |
||||
content: "\e07f"; |
||||
} |
||||
.icon-cloud-download:before { |
||||
content: "\e083"; |
||||
} |
||||
.icon-cloud-upload:before { |
||||
content: "\e084"; |
||||
} |
||||
.icon-envelope:before { |
||||
content: "\e086"; |
||||
} |
||||
.icon-eye:before { |
||||
content: "\e087"; |
||||
} |
||||
.icon-flag:before { |
||||
content: "\e088"; |
||||
} |
||||
.icon-heart:before { |
||||
content: "\e08a"; |
||||
} |
||||
.icon-info:before { |
||||
content: "\e08b"; |
||||
} |
||||
.icon-key:before { |
||||
content: "\e08c"; |
||||
} |
||||
.icon-link:before { |
||||
content: "\e08d"; |
||||
} |
||||
.icon-lock:before { |
||||
content: "\e08e"; |
||||
} |
||||
.icon-lock-open:before { |
||||
content: "\e08f"; |
||||
} |
||||
.icon-magnifier:before { |
||||
content: "\e090"; |
||||
} |
||||
.icon-magnifier-add:before { |
||||
content: "\e091"; |
||||
} |
||||
.icon-magnifier-remove:before { |
||||
content: "\e092"; |
||||
} |
||||
.icon-paper-clip:before { |
||||
content: "\e093"; |
||||
} |
||||
.icon-paper-plane:before { |
||||
content: "\e094"; |
||||
} |
||||
.icon-power:before { |
||||
content: "\e097"; |
||||
} |
||||
.icon-refresh:before { |
||||
content: "\e098"; |
||||
} |
||||
.icon-reload:before { |
||||
content: "\e099"; |
||||
} |
||||
.icon-settings:before { |
||||
content: "\e09a"; |
||||
} |
||||
.icon-star:before { |
||||
content: "\e09b"; |
||||
} |
||||
.icon-symble-female:before { |
||||
content: "\e09c"; |
||||
} |
||||
.icon-symbol-male:before { |
||||
content: "\e09d"; |
||||
} |
||||
.icon-target:before { |
||||
content: "\e09e"; |
||||
} |
||||
.icon-credit-card:before { |
||||
content: "\e025"; |
||||
} |
||||
.icon-paypal:before { |
||||
content: "\e608"; |
||||
} |
||||
.icon-social-tumblr:before { |
||||
content: "\e00a"; |
||||
} |
||||
.icon-social-twitter:before { |
||||
content: "\e009"; |
||||
} |
||||
.icon-social-facebook:before { |
||||
content: "\e00b"; |
||||
} |
||||
.icon-social-instagram:before { |
||||
content: "\e609"; |
||||
} |
||||
.icon-social-linkedin:before { |
||||
content: "\e60a"; |
||||
} |
||||
.icon-social-pintarest:before { |
||||
content: "\e60b"; |
||||
} |
||||
.icon-social-github:before { |
||||
content: "\e60c"; |
||||
} |
||||
.icon-social-gplus:before { |
||||
content: "\e60d"; |
||||
} |
||||
.icon-social-reddit:before { |
||||
content: "\e60e"; |
||||
} |
||||
.icon-social-skype:before { |
||||
content: "\e60f"; |
||||
} |
||||
.icon-social-dribbble:before { |
||||
content: "\e00d"; |
||||
} |
||||
.icon-social-behance:before { |
||||
content: "\e610"; |
||||
} |
||||
.icon-social-foursqare:before { |
||||
content: "\e611"; |
||||
} |
||||
.icon-social-soundcloud:before { |
||||
content: "\e612"; |
||||
} |
||||
.icon-social-spotify:before { |
||||
content: "\e613"; |
||||
} |
||||
.icon-social-stumbleupon:before { |
||||
content: "\e614"; |
||||
} |
||||
.icon-social-youtube:before { |
||||
content: "\e008"; |
||||
} |
||||
.icon-social-dropbox:before { |
||||
content: "\e00c"; |
||||
} |
||||
@ -0,0 +1,112 @@ |
||||
.hex-particle-container { |
||||
width: 600px; |
||||
height: 600px; |
||||
display: block; |
||||
position: fixed; |
||||
margin-left: -300px; |
||||
margin-top: -300px; |
||||
top: 50%; |
||||
left: 50%; |
||||
} |
||||
|
||||
.hex-p { |
||||
display: none; |
||||
-webkit-transform: translate(200, 200); |
||||
transform: translate(200, 200); |
||||
} |
||||
|
||||
.hex-particle-blue { |
||||
fill: #2196bd; |
||||
} |
||||
.hex-particle-lightblue { |
||||
fill: #4bbfbf; |
||||
} |
||||
.hex-particle-purple { |
||||
fill: #9776b5; |
||||
} |
||||
.hex-particle-violet { |
||||
fill: #d25e9f; |
||||
} |
||||
.hex-particle-green { |
||||
fill: #4daf65; |
||||
} |
||||
.hex-particle-red { |
||||
fill: #d63d3d; |
||||
} |
||||
.hex-particle-orange { |
||||
fill: #f26b3f; |
||||
} |
||||
|
||||
.overlay { |
||||
-webkit-perspective: 600px; |
||||
perspective: 600px; |
||||
position: fixed; |
||||
width: 100%; |
||||
height: 100%; |
||||
background: none; |
||||
-webkit-transform: translateZ(0); |
||||
transform: translateZ(0); |
||||
} |
||||
|
||||
.award-container { |
||||
display: none; |
||||
width: 650px; |
||||
height: 80px; |
||||
position: fixed; |
||||
left: 50%; |
||||
top: 50%; |
||||
margin-left: -325px; |
||||
font-family: 'Open Sans'; |
||||
} |
||||
.award-container img { |
||||
position: absolute; |
||||
top: -25px; |
||||
left: -20px; |
||||
width: 130px; |
||||
height: 130px; |
||||
} |
||||
.award-container .content { |
||||
overflow: hidden; |
||||
position: relative; |
||||
background: #3e3e3c; |
||||
border-radius: 10px; |
||||
box-sizing: border-box; |
||||
padding: 30px; |
||||
height: 63px; |
||||
white-space: no-wrap; |
||||
margin-top: 8px; |
||||
color: #FFF; |
||||
} |
||||
.award-container .unlocked { |
||||
text-transform: uppercase; |
||||
font-size: 11px; |
||||
font-weight: 300; |
||||
text-align: center; |
||||
position: absolute; |
||||
top: 5px; |
||||
padding-left: 10px; |
||||
width: 600px; |
||||
} |
||||
.award-container .achievement { |
||||
font-size: 30px; |
||||
font-weight: 300; |
||||
text-align: center; |
||||
position: absolute; |
||||
font-family: 'Lobster'; |
||||
top: 18px; |
||||
padding-left: 10px; |
||||
width: 600px; |
||||
} |
||||
.award-container .achievement:before { |
||||
content: open-quote; |
||||
} |
||||
.award-container .achievement:after { |
||||
content: close-quote; |
||||
} |
||||
.award-container .close { |
||||
position: absolute; |
||||
top: 5px; |
||||
right: 5px; |
||||
cursor: pointer; |
||||
color: #666; |
||||
} |
||||
@ -0,0 +1,104 @@ |
||||
figure, figcaption { |
||||
display: block; |
||||
} |
||||
|
||||
.transition { |
||||
-webkit-transition: top 400ms linear; |
||||
-moz-transition: top 400ms linear; |
||||
-ms-transition: top 400ms linear; |
||||
-o-transition: top 400ms linear; |
||||
transition: top 400ms linear; |
||||
} |
||||
|
||||
.timeTo { |
||||
font-family: Tahoma, Verdana, Aial, sans-serif; |
||||
font-size: 28px; |
||||
line-height: 108%; |
||||
font-weight: bold; |
||||
height: 32px; |
||||
} |
||||
|
||||
.timeTo span { |
||||
vertical-align: top; |
||||
font-size: 10px; |
||||
padding: 0 10px; |
||||
position: relative; |
||||
top: 10px; |
||||
} |
||||
#countdown{ |
||||
|
||||
} |
||||
|
||||
.timeTo.timeTo-white div { |
||||
color: black; |
||||
background: #ffffff; /* Old browsers */ |
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */ |
||||
border: 13px solid #fff; |
||||
border-radius: 3px; |
||||
margin-left: 10px; |
||||
} |
||||
.timeTo.timeTo-black div { |
||||
color: white; |
||||
background: #45484d; /* Old browsers */ |
||||
background: -moz-linear-gradient(top, #45484d 0%, #000000 100%); /* FF3.6+ */ |
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000)); /* Chrome,Safari4+ */ |
||||
background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%); /* Chrome10+,Safari5.1+ */ |
||||
background: -o-linear-gradient(top, #45484d 0%,#000000 100%); /* Opera 11.10+ */ |
||||
background: -ms-linear-gradient(top, #45484d 0%,#000000 100%); /* IE10+ */ |
||||
background: linear-gradient(to bottom, #45484d 0%,#000000 100%); /* W3C */ |
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 ); /* IE6-9 */ |
||||
} |
||||
|
||||
.timeTo.timeTo-black .timeTo-alert { |
||||
background: #a74444; /* Old browsers */ |
||||
background: -moz-linear-gradient(top, #a74444 0%, #3f0000 67%); /* FF3.6+ */ |
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a74444), color-stop(67%,#3f0000)); /* Chrome,Safari4+ */ |
||||
background: -webkit-linear-gradient(top, #a74444 0%,#3f0000 67%); /* Chrome10+,Safari5.1+ */ |
||||
background: -o-linear-gradient(top, #a74444 0%,#3f0000 67%); /* Opera 11.10+ */ |
||||
background: -ms-linear-gradient(top, #a74444 0%,#3f0000 67%); /* IE10+ */ |
||||
background: linear-gradient(to bottom, #a74444 0%,#3f0000 67%); /* W3C */ |
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a74444', endColorstr='#3f0000',GradientType=0 ); /* IE6-9 */ |
||||
} |
||||
|
||||
.timeTo.timeTo-white .timeTo-alert { |
||||
background: #ffffff; /* Old browsers */ |
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e17373',GradientType=0 ); /* IE6-9 */ |
||||
} |
||||
|
||||
.timeTo figure { |
||||
display: inline-block; |
||||
margin: 0; |
||||
padding: 0; |
||||
} |
||||
.timeTo figcaption { |
||||
text-align: center; |
||||
/*font-size: 12px;*/ |
||||
line-height: 80%; |
||||
font-weight: normal; |
||||
color: #888; |
||||
} |
||||
|
||||
.timeTo div { |
||||
position: relative; |
||||
display: inline-block; |
||||
width: 50px; |
||||
height: 60px; |
||||
overflow: hidden; |
||||
} |
||||
.timeTo div.first { |
||||
margin-left: 0 !important; |
||||
} |
||||
|
||||
.timeTo ul { |
||||
list-style-type: none; |
||||
margin: 0; |
||||
padding: 0; |
||||
position: absolute; |
||||
left: 3px; |
||||
} |
||||
|
||||
.timeTo ul li { |
||||
margin: 0; |
||||
padding: 0; |
||||
list-style: none; |
||||
} |
||||
@ -0,0 +1,53 @@ |
||||
.timer_block { |
||||
background:url(../img/timer1.jpg) no-repeat center top; |
||||
width: 100%; |
||||
height: 804px; |
||||
min-width: 1200px; |
||||
} |
||||
|
||||
.timer_block .timer { |
||||
background:url(../img/bg.png) no-repeat center left; |
||||
width: 650px; |
||||
height: 76px; |
||||
position: absolute; |
||||
top:650px; |
||||
left: 512px; |
||||
} |
||||
.timer_block .timer_wrapp { |
||||
margin: 14px 0 0 14px; |
||||
} |
||||
.timer_block .day, |
||||
.timer_block .hour, |
||||
.timer_block .min, |
||||
.timer_block .sec { |
||||
color: #000; |
||||
font-family: Arial; |
||||
font-weight: bold; |
||||
font-size: 54px; |
||||
line-height: 52px; |
||||
text-align: center; |
||||
letter-spacing: 35px; |
||||
} |
||||
.timer_block .top_line div { |
||||
vertical-align: top; |
||||
display: inline-block; |
||||
} |
||||
|
||||
.timer_block .block { |
||||
width: 123px; |
||||
height: 76px; |
||||
margin-right: 30px; |
||||
position: relative; |
||||
top: -15px; |
||||
} |
||||
.timer_block .last { |
||||
width: 123px; |
||||
} |
||||
.timer_block .desc { |
||||
color: #fff; |
||||
text-align: center; |
||||
width: 93px; |
||||
font-family: 'proxima_nova_blblack'; |
||||
font-size: 14px; |
||||
margin-top: -20px; |
||||
} |
||||
@ -0,0 +1,4 @@ |
||||
.form-row.field-traceback p { |
||||
font-family: monospace; |
||||
white-space: pre; |
||||
} |
||||
@ -0,0 +1,608 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
||||
<head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> |
||||
<script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script> |
||||
<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> |
||||
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> |
||||
|
||||
<style type="text/css"> |
||||
body{ |
||||
font-family: 'exo_2bold'; |
||||
} |
||||
</style> |
||||
|
||||
<title>Exo 2 Bold Specimen</title> |
||||
|
||||
|
||||
<script type="text/javascript" charset="utf-8"> |
||||
$(document).ready(function() { |
||||
$('#container').easyTabs({defaultContent:1}); |
||||
}); |
||||
</script> |
||||
</head> |
||||
|
||||
<body> |
||||
<div id="container"> |
||||
<div id="header"> |
||||
Exo 2 Bold </div> |
||||
<ul class="tabs"> |
||||
<li><a href="#specimen">Specimen</a></li> |
||||
<li><a href="#layout">Sample Layout</a></li> |
||||
<li><a href="#glyphs">Glyphs & Languages</a></li> |
||||
<li><a href="#installing">Installing Webfonts</a></li> |
||||
|
||||
</ul> |
||||
|
||||
<div id="main_content"> |
||||
|
||||
|
||||
<div id="specimen"> |
||||
|
||||
<div class="section"> |
||||
<div class="grid12 firstcol"> |
||||
<div class="huge">AaBb</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="section"> |
||||
<div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> |
||||
</div> |
||||
<div class="section"> |
||||
<div class="grid12 firstcol"> |
||||
<table class="sample_table"> |
||||
<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
</table> |
||||
|
||||
</div> |
||||
|
||||
</div> |
||||
|
||||
|
||||
|
||||
<div class="section" id="bodycomparison"> |
||||
|
||||
|
||||
<div id="xheight"> |
||||
<div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> |
||||
<div class="fontbody" style="z-index:1"> |
||||
body<span>Exo 2 Bold</span> |
||||
</div> |
||||
<div class="arialbody" style="z-index:1"> |
||||
body<span>Arial</span> |
||||
</div> |
||||
<div class="verdanabody" style="z-index:1"> |
||||
body<span>Verdana</span> |
||||
</div> |
||||
<div class="georgiabody" style="z-index:1"> |
||||
body<span>Georgia</span> |
||||
</div> |
||||
|
||||
|
||||
|
||||
</div> |
||||
|
||||
|
||||
<div class="section psample psample_row1" id=""> |
||||
|
||||
<div class="grid2 firstcol"> |
||||
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid3"> |
||||
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid3"> |
||||
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid4"> |
||||
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="white_blend"></div> |
||||
|
||||
</div> |
||||
<div class="section psample psample_row2" id=""> |
||||
<div class="grid3 firstcol"> |
||||
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid4"> |
||||
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid5"> |
||||
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
|
||||
<div class="white_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
<div class="section psample psample_row3" id=""> |
||||
<div class="grid5 firstcol"> |
||||
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
<div class="grid7"> |
||||
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
|
||||
<div class="white_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
<div class="section psample psample_row4" id=""> |
||||
<div class="grid12 firstcol"> |
||||
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
<div class="white_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
|
||||
|
||||
<div class="section psample psample_row1 fullreverse"> |
||||
<div class="grid2 firstcol"> |
||||
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid3"> |
||||
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid3"> |
||||
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid4"> |
||||
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="black_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
<div class="section psample psample_row2 fullreverse"> |
||||
<div class="grid3 firstcol"> |
||||
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid4"> |
||||
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid5"> |
||||
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="black_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
<div class="section psample fullreverse psample_row3" id=""> |
||||
<div class="grid5 firstcol"> |
||||
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
<div class="grid7"> |
||||
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
|
||||
<div class="black_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> |
||||
<div class="grid12 firstcol"> |
||||
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
<div class="black_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
|
||||
|
||||
|
||||
</div> |
||||
|
||||
<div id="layout"> |
||||
|
||||
<div class="section"> |
||||
|
||||
<div class="grid12 firstcol"> |
||||
<h1>Lorem Ipsum Dolor</h1> |
||||
<h2>Etiam porta sem malesuada magna mollis euismod</h2> |
||||
|
||||
<p class="byline">By <a href="#link">Aenean Lacinia</a></p> |
||||
</div> |
||||
</div> |
||||
<div class="section"> |
||||
<div class="grid8 firstcol"> |
||||
<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> |
||||
|
||||
|
||||
<h3>Pellentesque ornare sem</h3> |
||||
|
||||
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> |
||||
|
||||
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> |
||||
|
||||
<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> |
||||
|
||||
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> |
||||
|
||||
<h3>Cras mattis consectetur</h3> |
||||
|
||||
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> |
||||
|
||||
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> |
||||
</div> |
||||
|
||||
<div class="grid4 sidebar"> |
||||
|
||||
<div class="box reverse"> |
||||
<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> |
||||
</div> |
||||
|
||||
<p class="caption">Maecenas sed diam eget risus varius.</p> |
||||
|
||||
<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> |
||||
|
||||
|
||||
|
||||
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> |
||||
|
||||
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> |
||||
|
||||
</div> |
||||
</div> |
||||
|
||||
</div> |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="glyphs"> |
||||
<div class="section"> |
||||
<div class="grid12 firstcol"> |
||||
|
||||
<h1>Language Support</h1> |
||||
<p>The subset of Exo 2 Bold in this kit supports the following languages:<br /> |
||||
|
||||
Cyrillic, English </p> |
||||
<h1>Glyph Chart</h1> |
||||
<p>The subset of Exo 2 Bold in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> |
||||
<div id="glyph_chart"> |
||||
|
||||
<div><p>&#13;</p> </div> |
||||
<div><p>&#32;</p> </div> |
||||
<div><p>&#33;</p>!</div> |
||||
<div><p>&#34;</p>"</div> |
||||
<div><p>&#35;</p>#</div> |
||||
<div><p>&#36;</p>$</div> |
||||
<div><p>&#37;</p>%</div> |
||||
<div><p>&#38;</p>&</div> |
||||
<div><p>&#39;</p>'</div> |
||||
<div><p>&#40;</p>(</div> |
||||
<div><p>&#41;</p>)</div> |
||||
<div><p>&#42;</p>*</div> |
||||
<div><p>&#43;</p>+</div> |
||||
<div><p>&#44;</p>,</div> |
||||
<div><p>&#45;</p>-</div> |
||||
<div><p>&#46;</p>.</div> |
||||
<div><p>&#47;</p>/</div> |
||||
<div><p>&#48;</p>0</div> |
||||
<div><p>&#49;</p>1</div> |
||||
<div><p>&#50;</p>2</div> |
||||
<div><p>&#51;</p>3</div> |
||||
<div><p>&#52;</p>4</div> |
||||
<div><p>&#53;</p>5</div> |
||||
<div><p>&#54;</p>6</div> |
||||
<div><p>&#55;</p>7</div> |
||||
<div><p>&#56;</p>8</div> |
||||
<div><p>&#57;</p>9</div> |
||||
<div><p>&#58;</p>:</div> |
||||
<div><p>&#59;</p>;</div> |
||||
<div><p>&#60;</p><</div> |
||||
<div><p>&#61;</p>=</div> |
||||
<div><p>&#62;</p>></div> |
||||
<div><p>&#63;</p>?</div> |
||||
<div><p>&#64;</p>@</div> |
||||
<div><p>&#65;</p>A</div> |
||||
<div><p>&#66;</p>B</div> |
||||
<div><p>&#67;</p>C</div> |
||||
<div><p>&#68;</p>D</div> |
||||
<div><p>&#69;</p>E</div> |
||||
<div><p>&#70;</p>F</div> |
||||
<div><p>&#71;</p>G</div> |
||||
<div><p>&#72;</p>H</div> |
||||
<div><p>&#73;</p>I</div> |
||||
<div><p>&#74;</p>J</div> |
||||
<div><p>&#75;</p>K</div> |
||||
<div><p>&#76;</p>L</div> |
||||
<div><p>&#77;</p>M</div> |
||||
<div><p>&#78;</p>N</div> |
||||
<div><p>&#79;</p>O</div> |
||||
<div><p>&#80;</p>P</div> |
||||
<div><p>&#81;</p>Q</div> |
||||
<div><p>&#82;</p>R</div> |
||||
<div><p>&#83;</p>S</div> |
||||
<div><p>&#84;</p>T</div> |
||||
<div><p>&#85;</p>U</div> |
||||
<div><p>&#86;</p>V</div> |
||||
<div><p>&#87;</p>W</div> |
||||
<div><p>&#88;</p>X</div> |
||||
<div><p>&#89;</p>Y</div> |
||||
<div><p>&#90;</p>Z</div> |
||||
<div><p>&#91;</p>[</div> |
||||
<div><p>&#92;</p>\</div> |
||||
<div><p>&#93;</p>]</div> |
||||
<div><p>&#94;</p>^</div> |
||||
<div><p>&#95;</p>_</div> |
||||
<div><p>&#96;</p>`</div> |
||||
<div><p>&#97;</p>a</div> |
||||
<div><p>&#98;</p>b</div> |
||||
<div><p>&#99;</p>c</div> |
||||
<div><p>&#100;</p>d</div> |
||||
<div><p>&#101;</p>e</div> |
||||
<div><p>&#102;</p>f</div> |
||||
<div><p>&#103;</p>g</div> |
||||
<div><p>&#104;</p>h</div> |
||||
<div><p>&#105;</p>i</div> |
||||
<div><p>&#106;</p>j</div> |
||||
<div><p>&#107;</p>k</div> |
||||
<div><p>&#108;</p>l</div> |
||||
<div><p>&#109;</p>m</div> |
||||
<div><p>&#110;</p>n</div> |
||||
<div><p>&#111;</p>o</div> |
||||
<div><p>&#112;</p>p</div> |
||||
<div><p>&#113;</p>q</div> |
||||
<div><p>&#114;</p>r</div> |
||||
<div><p>&#115;</p>s</div> |
||||
<div><p>&#116;</p>t</div> |
||||
<div><p>&#117;</p>u</div> |
||||
<div><p>&#118;</p>v</div> |
||||
<div><p>&#119;</p>w</div> |
||||
<div><p>&#120;</p>x</div> |
||||
<div><p>&#121;</p>y</div> |
||||
<div><p>&#122;</p>z</div> |
||||
<div><p>&#123;</p>{</div> |
||||
<div><p>&#124;</p>|</div> |
||||
<div><p>&#125;</p>}</div> |
||||
<div><p>&#126;</p>~</div> |
||||
<div><p>&#162;</p>¢</div> |
||||
<div><p>&#163;</p>£</div> |
||||
<div><p>&#165;</p>¥</div> |
||||
<div><p>&#168;</p>¨</div> |
||||
<div><p>&#169;</p>©</div> |
||||
<div><p>&#171;</p>«</div> |
||||
<div><p>&#174;</p>®</div> |
||||
<div><p>&#180;</p>´</div> |
||||
<div><p>&#184;</p>¸</div> |
||||
<div><p>&#187;</p>»</div> |
||||
<div><p>&#710;</p>ˆ</div> |
||||
<div><p>&#730;</p>˚</div> |
||||
<div><p>&#732;</p>˜</div> |
||||
<div><p>&#1025;</p>Ё</div> |
||||
<div><p>&#1026;</p>Ђ</div> |
||||
<div><p>&#1027;</p>Ѓ</div> |
||||
<div><p>&#1028;</p>Є</div> |
||||
<div><p>&#1029;</p>Ѕ</div> |
||||
<div><p>&#1030;</p>І</div> |
||||
<div><p>&#1031;</p>Ї</div> |
||||
<div><p>&#1032;</p>Ј</div> |
||||
<div><p>&#1033;</p>Љ</div> |
||||
<div><p>&#1034;</p>Њ</div> |
||||
<div><p>&#1035;</p>Ћ</div> |
||||
<div><p>&#1036;</p>Ќ</div> |
||||
<div><p>&#1037;</p>Ѝ</div> |
||||
<div><p>&#1038;</p>Ў</div> |
||||
<div><p>&#1039;</p>Џ</div> |
||||
<div><p>&#1040;</p>А</div> |
||||
<div><p>&#1041;</p>Б</div> |
||||
<div><p>&#1042;</p>В</div> |
||||
<div><p>&#1043;</p>Г</div> |
||||
<div><p>&#1044;</p>Д</div> |
||||
<div><p>&#1045;</p>Е</div> |
||||
<div><p>&#1046;</p>Ж</div> |
||||
<div><p>&#1047;</p>З</div> |
||||
<div><p>&#1048;</p>И</div> |
||||
<div><p>&#1049;</p>Й</div> |
||||
<div><p>&#1050;</p>К</div> |
||||
<div><p>&#1051;</p>Л</div> |
||||
<div><p>&#1052;</p>М</div> |
||||
<div><p>&#1053;</p>Н</div> |
||||
<div><p>&#1054;</p>О</div> |
||||
<div><p>&#1055;</p>П</div> |
||||
<div><p>&#1056;</p>Р</div> |
||||
<div><p>&#1057;</p>С</div> |
||||
<div><p>&#1058;</p>Т</div> |
||||
<div><p>&#1059;</p>У</div> |
||||
<div><p>&#1060;</p>Ф</div> |
||||
<div><p>&#1061;</p>Х</div> |
||||
<div><p>&#1062;</p>Ц</div> |
||||
<div><p>&#1063;</p>Ч</div> |
||||
<div><p>&#1064;</p>Ш</div> |
||||
<div><p>&#1065;</p>Щ</div> |
||||
<div><p>&#1066;</p>Ъ</div> |
||||
<div><p>&#1067;</p>Ы</div> |
||||
<div><p>&#1068;</p>Ь</div> |
||||
<div><p>&#1069;</p>Э</div> |
||||
<div><p>&#1070;</p>Ю</div> |
||||
<div><p>&#1071;</p>Я</div> |
||||
<div><p>&#1072;</p>а</div> |
||||
<div><p>&#1073;</p>б</div> |
||||
<div><p>&#1074;</p>в</div> |
||||
<div><p>&#1075;</p>г</div> |
||||
<div><p>&#1076;</p>д</div> |
||||
<div><p>&#1077;</p>е</div> |
||||
<div><p>&#1078;</p>ж</div> |
||||
<div><p>&#1079;</p>з</div> |
||||
<div><p>&#1080;</p>и</div> |
||||
<div><p>&#1081;</p>й</div> |
||||
<div><p>&#1082;</p>к</div> |
||||
<div><p>&#1083;</p>л</div> |
||||
<div><p>&#1084;</p>м</div> |
||||
<div><p>&#1085;</p>н</div> |
||||
<div><p>&#1086;</p>о</div> |
||||
<div><p>&#1087;</p>п</div> |
||||
<div><p>&#1088;</p>р</div> |
||||
<div><p>&#1089;</p>с</div> |
||||
<div><p>&#1090;</p>т</div> |
||||
<div><p>&#1091;</p>у</div> |
||||
<div><p>&#1092;</p>ф</div> |
||||
<div><p>&#1093;</p>х</div> |
||||
<div><p>&#1094;</p>ц</div> |
||||
<div><p>&#1095;</p>ч</div> |
||||
<div><p>&#1096;</p>ш</div> |
||||
<div><p>&#1097;</p>щ</div> |
||||
<div><p>&#1098;</p>ъ</div> |
||||
<div><p>&#1099;</p>ы</div> |
||||
<div><p>&#1100;</p>ь</div> |
||||
<div><p>&#1101;</p>э</div> |
||||
<div><p>&#1102;</p>ю</div> |
||||
<div><p>&#1103;</p>я</div> |
||||
<div><p>&#1105;</p>ё</div> |
||||
<div><p>&#1106;</p>ђ</div> |
||||
<div><p>&#1107;</p>ѓ</div> |
||||
<div><p>&#1108;</p>є</div> |
||||
<div><p>&#1109;</p>ѕ</div> |
||||
<div><p>&#1110;</p>і</div> |
||||
<div><p>&#1111;</p>ї</div> |
||||
<div><p>&#1112;</p>ј</div> |
||||
<div><p>&#1113;</p>љ</div> |
||||
<div><p>&#1114;</p>њ</div> |
||||
<div><p>&#1115;</p>ћ</div> |
||||
<div><p>&#1116;</p>ќ</div> |
||||
<div><p>&#1117;</p>ѝ</div> |
||||
<div><p>&#1118;</p>ў</div> |
||||
<div><p>&#1119;</p>џ</div> |
||||
<div><p>&#1168;</p>Ґ</div> |
||||
<div><p>&#1169;</p>ґ</div> |
||||
<div><p>&#1200;</p>Ұ</div> |
||||
<div><p>&#1201;</p>ұ</div> |
||||
<div><p>&#1206;</p>Ҷ</div> |
||||
<div><p>&#1207;</p>ҷ</div> |
||||
<div><p>&#1210;</p>Һ</div> |
||||
<div><p>&#1216;</p>Ӏ</div> |
||||
<div><p>&#8211;</p>–</div> |
||||
<div><p>&#8212;</p>—</div> |
||||
<div><p>&#8216;</p>‘</div> |
||||
<div><p>&#8217;</p>’</div> |
||||
<div><p>&#8218;</p>‚</div> |
||||
<div><p>&#8220;</p>“</div> |
||||
<div><p>&#8221;</p>”</div> |
||||
<div><p>&#8222;</p>„</div> |
||||
<div><p>&#8226;</p>•</div> |
||||
<div><p>&#8230;</p>…</div> |
||||
<div><p>&#8249;</p>‹</div> |
||||
<div><p>&#8250;</p>›</div> |
||||
<div><p>&#8364;</p>€</div> |
||||
<div><p>&#8482;</p>™</div> |
||||
<div><p>&#9724;</p>◼</div> |
||||
</div> |
||||
</div> |
||||
|
||||
|
||||
</div> |
||||
</div> |
||||
|
||||
|
||||
<div id="specs"> |
||||
|
||||
</div> |
||||
|
||||
<div id="installing"> |
||||
<div class="section"> |
||||
<div class="grid7 firstcol"> |
||||
<h1>Installing Webfonts</h1> |
||||
|
||||
<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> |
||||
|
||||
<h2>1. Upload your webfonts</h2> |
||||
<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> |
||||
|
||||
<h2>2. Include the webfont stylesheet</h2> |
||||
<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> |
||||
|
||||
|
||||
<code> |
||||
@font-face{ |
||||
font-family: 'MyWebFont'; |
||||
src: url('WebFont.eot'); |
||||
src: url('WebFont.eot?#iefix') format('embedded-opentype'), |
||||
url('WebFont.woff') format('woff'), |
||||
url('WebFont.ttf') format('truetype'), |
||||
url('WebFont.svg#webfont') format('svg'); |
||||
} |
||||
</code> |
||||
|
||||
<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> |
||||
<code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> |
||||
|
||||
<h2>3. Modify your own stylesheet</h2> |
||||
<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> |
||||
<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> |
||||
|
||||
<h2>4. Test</h2> |
||||
<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> |
||||
</div> |
||||
|
||||
<div class="grid5 sidebar"> |
||||
<div class="box"> |
||||
<h2>Troubleshooting<br />Font-Face Problems</h2> |
||||
<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> |
||||
|
||||
<h3>Fonts not showing in any browser</h3> |
||||
|
||||
<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> |
||||
|
||||
<h3>Fonts not loading in iPhone or iPad</h3> |
||||
|
||||
<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> |
||||
|
||||
<h3>Fonts not loading in Firefox</h3> |
||||
|
||||
<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> |
||||
|
||||
<h3>Fonts not loading in IE</h3> |
||||
|
||||
<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> |
||||
|
||||
<h3>Fonts not loading in IE9</h3> |
||||
|
||||
<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
</div> |
||||
|
||||
</div> |
||||
<div id="footer"> |
||||
<p>©2010-2011 Font Squirrel. All rights reserved.</p> |
||||
</div> |
||||
</div> |
||||
</body> |
||||
</html> |
||||
|
After Width: | Height: | Size: 152 KiB |
@ -0,0 +1,608 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
||||
<head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> |
||||
<script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script> |
||||
<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> |
||||
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> |
||||
|
||||
<style type="text/css"> |
||||
body{ |
||||
font-family: 'exo_2light'; |
||||
} |
||||
</style> |
||||
|
||||
<title>Exo 2 Light Regular Specimen</title> |
||||
|
||||
|
||||
<script type="text/javascript" charset="utf-8"> |
||||
$(document).ready(function() { |
||||
$('#container').easyTabs({defaultContent:1}); |
||||
}); |
||||
</script> |
||||
</head> |
||||
|
||||
<body> |
||||
<div id="container"> |
||||
<div id="header"> |
||||
Exo 2 Light Regular </div> |
||||
<ul class="tabs"> |
||||
<li><a href="#specimen">Specimen</a></li> |
||||
<li><a href="#layout">Sample Layout</a></li> |
||||
<li><a href="#glyphs">Glyphs & Languages</a></li> |
||||
<li><a href="#installing">Installing Webfonts</a></li> |
||||
|
||||
</ul> |
||||
|
||||
<div id="main_content"> |
||||
|
||||
|
||||
<div id="specimen"> |
||||
|
||||
<div class="section"> |
||||
<div class="grid12 firstcol"> |
||||
<div class="huge">AaBb</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="section"> |
||||
<div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> |
||||
</div> |
||||
<div class="section"> |
||||
<div class="grid12 firstcol"> |
||||
<table class="sample_table"> |
||||
<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
</table> |
||||
|
||||
</div> |
||||
|
||||
</div> |
||||
|
||||
|
||||
|
||||
<div class="section" id="bodycomparison"> |
||||
|
||||
|
||||
<div id="xheight"> |
||||
<div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> |
||||
<div class="fontbody" style="z-index:1"> |
||||
body<span>Exo 2 Light Regular</span> |
||||
</div> |
||||
<div class="arialbody" style="z-index:1"> |
||||
body<span>Arial</span> |
||||
</div> |
||||
<div class="verdanabody" style="z-index:1"> |
||||
body<span>Verdana</span> |
||||
</div> |
||||
<div class="georgiabody" style="z-index:1"> |
||||
body<span>Georgia</span> |
||||
</div> |
||||
|
||||
|
||||
|
||||
</div> |
||||
|
||||
|
||||
<div class="section psample psample_row1" id=""> |
||||
|
||||
<div class="grid2 firstcol"> |
||||
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid3"> |
||||
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid3"> |
||||
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid4"> |
||||
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="white_blend"></div> |
||||
|
||||
</div> |
||||
<div class="section psample psample_row2" id=""> |
||||
<div class="grid3 firstcol"> |
||||
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid4"> |
||||
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid5"> |
||||
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
|
||||
<div class="white_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
<div class="section psample psample_row3" id=""> |
||||
<div class="grid5 firstcol"> |
||||
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
<div class="grid7"> |
||||
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
|
||||
<div class="white_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
<div class="section psample psample_row4" id=""> |
||||
<div class="grid12 firstcol"> |
||||
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
<div class="white_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
|
||||
|
||||
<div class="section psample psample_row1 fullreverse"> |
||||
<div class="grid2 firstcol"> |
||||
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid3"> |
||||
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid3"> |
||||
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid4"> |
||||
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="black_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
<div class="section psample psample_row2 fullreverse"> |
||||
<div class="grid3 firstcol"> |
||||
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid4"> |
||||
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid5"> |
||||
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="black_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
<div class="section psample fullreverse psample_row3" id=""> |
||||
<div class="grid5 firstcol"> |
||||
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
<div class="grid7"> |
||||
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
|
||||
<div class="black_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> |
||||
<div class="grid12 firstcol"> |
||||
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
<div class="black_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
|
||||
|
||||
|
||||
</div> |
||||
|
||||
<div id="layout"> |
||||
|
||||
<div class="section"> |
||||
|
||||
<div class="grid12 firstcol"> |
||||
<h1>Lorem Ipsum Dolor</h1> |
||||
<h2>Etiam porta sem malesuada magna mollis euismod</h2> |
||||
|
||||
<p class="byline">By <a href="#link">Aenean Lacinia</a></p> |
||||
</div> |
||||
</div> |
||||
<div class="section"> |
||||
<div class="grid8 firstcol"> |
||||
<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> |
||||
|
||||
|
||||
<h3>Pellentesque ornare sem</h3> |
||||
|
||||
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> |
||||
|
||||
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> |
||||
|
||||
<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> |
||||
|
||||
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> |
||||
|
||||
<h3>Cras mattis consectetur</h3> |
||||
|
||||
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> |
||||
|
||||
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> |
||||
</div> |
||||
|
||||
<div class="grid4 sidebar"> |
||||
|
||||
<div class="box reverse"> |
||||
<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> |
||||
</div> |
||||
|
||||
<p class="caption">Maecenas sed diam eget risus varius.</p> |
||||
|
||||
<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> |
||||
|
||||
|
||||
|
||||
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> |
||||
|
||||
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> |
||||
|
||||
</div> |
||||
</div> |
||||
|
||||
</div> |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="glyphs"> |
||||
<div class="section"> |
||||
<div class="grid12 firstcol"> |
||||
|
||||
<h1>Language Support</h1> |
||||
<p>The subset of Exo 2 Light Regular in this kit supports the following languages:<br /> |
||||
|
||||
Cyrillic, English </p> |
||||
<h1>Glyph Chart</h1> |
||||
<p>The subset of Exo 2 Light Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> |
||||
<div id="glyph_chart"> |
||||
|
||||
<div><p>&#13;</p> </div> |
||||
<div><p>&#32;</p> </div> |
||||
<div><p>&#33;</p>!</div> |
||||
<div><p>&#34;</p>"</div> |
||||
<div><p>&#35;</p>#</div> |
||||
<div><p>&#36;</p>$</div> |
||||
<div><p>&#37;</p>%</div> |
||||
<div><p>&#38;</p>&</div> |
||||
<div><p>&#39;</p>'</div> |
||||
<div><p>&#40;</p>(</div> |
||||
<div><p>&#41;</p>)</div> |
||||
<div><p>&#42;</p>*</div> |
||||
<div><p>&#43;</p>+</div> |
||||
<div><p>&#44;</p>,</div> |
||||
<div><p>&#45;</p>-</div> |
||||
<div><p>&#46;</p>.</div> |
||||
<div><p>&#47;</p>/</div> |
||||
<div><p>&#48;</p>0</div> |
||||
<div><p>&#49;</p>1</div> |
||||
<div><p>&#50;</p>2</div> |
||||
<div><p>&#51;</p>3</div> |
||||
<div><p>&#52;</p>4</div> |
||||
<div><p>&#53;</p>5</div> |
||||
<div><p>&#54;</p>6</div> |
||||
<div><p>&#55;</p>7</div> |
||||
<div><p>&#56;</p>8</div> |
||||
<div><p>&#57;</p>9</div> |
||||
<div><p>&#58;</p>:</div> |
||||
<div><p>&#59;</p>;</div> |
||||
<div><p>&#60;</p><</div> |
||||
<div><p>&#61;</p>=</div> |
||||
<div><p>&#62;</p>></div> |
||||
<div><p>&#63;</p>?</div> |
||||
<div><p>&#64;</p>@</div> |
||||
<div><p>&#65;</p>A</div> |
||||
<div><p>&#66;</p>B</div> |
||||
<div><p>&#67;</p>C</div> |
||||
<div><p>&#68;</p>D</div> |
||||
<div><p>&#69;</p>E</div> |
||||
<div><p>&#70;</p>F</div> |
||||
<div><p>&#71;</p>G</div> |
||||
<div><p>&#72;</p>H</div> |
||||
<div><p>&#73;</p>I</div> |
||||
<div><p>&#74;</p>J</div> |
||||
<div><p>&#75;</p>K</div> |
||||
<div><p>&#76;</p>L</div> |
||||
<div><p>&#77;</p>M</div> |
||||
<div><p>&#78;</p>N</div> |
||||
<div><p>&#79;</p>O</div> |
||||
<div><p>&#80;</p>P</div> |
||||
<div><p>&#81;</p>Q</div> |
||||
<div><p>&#82;</p>R</div> |
||||
<div><p>&#83;</p>S</div> |
||||
<div><p>&#84;</p>T</div> |
||||
<div><p>&#85;</p>U</div> |
||||
<div><p>&#86;</p>V</div> |
||||
<div><p>&#87;</p>W</div> |
||||
<div><p>&#88;</p>X</div> |
||||
<div><p>&#89;</p>Y</div> |
||||
<div><p>&#90;</p>Z</div> |
||||
<div><p>&#91;</p>[</div> |
||||
<div><p>&#92;</p>\</div> |
||||
<div><p>&#93;</p>]</div> |
||||
<div><p>&#94;</p>^</div> |
||||
<div><p>&#95;</p>_</div> |
||||
<div><p>&#96;</p>`</div> |
||||
<div><p>&#97;</p>a</div> |
||||
<div><p>&#98;</p>b</div> |
||||
<div><p>&#99;</p>c</div> |
||||
<div><p>&#100;</p>d</div> |
||||
<div><p>&#101;</p>e</div> |
||||
<div><p>&#102;</p>f</div> |
||||
<div><p>&#103;</p>g</div> |
||||
<div><p>&#104;</p>h</div> |
||||
<div><p>&#105;</p>i</div> |
||||
<div><p>&#106;</p>j</div> |
||||
<div><p>&#107;</p>k</div> |
||||
<div><p>&#108;</p>l</div> |
||||
<div><p>&#109;</p>m</div> |
||||
<div><p>&#110;</p>n</div> |
||||
<div><p>&#111;</p>o</div> |
||||
<div><p>&#112;</p>p</div> |
||||
<div><p>&#113;</p>q</div> |
||||
<div><p>&#114;</p>r</div> |
||||
<div><p>&#115;</p>s</div> |
||||
<div><p>&#116;</p>t</div> |
||||
<div><p>&#117;</p>u</div> |
||||
<div><p>&#118;</p>v</div> |
||||
<div><p>&#119;</p>w</div> |
||||
<div><p>&#120;</p>x</div> |
||||
<div><p>&#121;</p>y</div> |
||||
<div><p>&#122;</p>z</div> |
||||
<div><p>&#123;</p>{</div> |
||||
<div><p>&#124;</p>|</div> |
||||
<div><p>&#125;</p>}</div> |
||||
<div><p>&#126;</p>~</div> |
||||
<div><p>&#162;</p>¢</div> |
||||
<div><p>&#163;</p>£</div> |
||||
<div><p>&#165;</p>¥</div> |
||||
<div><p>&#168;</p>¨</div> |
||||
<div><p>&#169;</p>©</div> |
||||
<div><p>&#171;</p>«</div> |
||||
<div><p>&#174;</p>®</div> |
||||
<div><p>&#180;</p>´</div> |
||||
<div><p>&#184;</p>¸</div> |
||||
<div><p>&#187;</p>»</div> |
||||
<div><p>&#710;</p>ˆ</div> |
||||
<div><p>&#730;</p>˚</div> |
||||
<div><p>&#732;</p>˜</div> |
||||
<div><p>&#1025;</p>Ё</div> |
||||
<div><p>&#1026;</p>Ђ</div> |
||||
<div><p>&#1027;</p>Ѓ</div> |
||||
<div><p>&#1028;</p>Є</div> |
||||
<div><p>&#1029;</p>Ѕ</div> |
||||
<div><p>&#1030;</p>І</div> |
||||
<div><p>&#1031;</p>Ї</div> |
||||
<div><p>&#1032;</p>Ј</div> |
||||
<div><p>&#1033;</p>Љ</div> |
||||
<div><p>&#1034;</p>Њ</div> |
||||
<div><p>&#1035;</p>Ћ</div> |
||||
<div><p>&#1036;</p>Ќ</div> |
||||
<div><p>&#1037;</p>Ѝ</div> |
||||
<div><p>&#1038;</p>Ў</div> |
||||
<div><p>&#1039;</p>Џ</div> |
||||
<div><p>&#1040;</p>А</div> |
||||
<div><p>&#1041;</p>Б</div> |
||||
<div><p>&#1042;</p>В</div> |
||||
<div><p>&#1043;</p>Г</div> |
||||
<div><p>&#1044;</p>Д</div> |
||||
<div><p>&#1045;</p>Е</div> |
||||
<div><p>&#1046;</p>Ж</div> |
||||
<div><p>&#1047;</p>З</div> |
||||
<div><p>&#1048;</p>И</div> |
||||
<div><p>&#1049;</p>Й</div> |
||||
<div><p>&#1050;</p>К</div> |
||||
<div><p>&#1051;</p>Л</div> |
||||
<div><p>&#1052;</p>М</div> |
||||
<div><p>&#1053;</p>Н</div> |
||||
<div><p>&#1054;</p>О</div> |
||||
<div><p>&#1055;</p>П</div> |
||||
<div><p>&#1056;</p>Р</div> |
||||
<div><p>&#1057;</p>С</div> |
||||
<div><p>&#1058;</p>Т</div> |
||||
<div><p>&#1059;</p>У</div> |
||||
<div><p>&#1060;</p>Ф</div> |
||||
<div><p>&#1061;</p>Х</div> |
||||
<div><p>&#1062;</p>Ц</div> |
||||
<div><p>&#1063;</p>Ч</div> |
||||
<div><p>&#1064;</p>Ш</div> |
||||
<div><p>&#1065;</p>Щ</div> |
||||
<div><p>&#1066;</p>Ъ</div> |
||||
<div><p>&#1067;</p>Ы</div> |
||||
<div><p>&#1068;</p>Ь</div> |
||||
<div><p>&#1069;</p>Э</div> |
||||
<div><p>&#1070;</p>Ю</div> |
||||
<div><p>&#1071;</p>Я</div> |
||||
<div><p>&#1072;</p>а</div> |
||||
<div><p>&#1073;</p>б</div> |
||||
<div><p>&#1074;</p>в</div> |
||||
<div><p>&#1075;</p>г</div> |
||||
<div><p>&#1076;</p>д</div> |
||||
<div><p>&#1077;</p>е</div> |
||||
<div><p>&#1078;</p>ж</div> |
||||
<div><p>&#1079;</p>з</div> |
||||
<div><p>&#1080;</p>и</div> |
||||
<div><p>&#1081;</p>й</div> |
||||
<div><p>&#1082;</p>к</div> |
||||
<div><p>&#1083;</p>л</div> |
||||
<div><p>&#1084;</p>м</div> |
||||
<div><p>&#1085;</p>н</div> |
||||
<div><p>&#1086;</p>о</div> |
||||
<div><p>&#1087;</p>п</div> |
||||
<div><p>&#1088;</p>р</div> |
||||
<div><p>&#1089;</p>с</div> |
||||
<div><p>&#1090;</p>т</div> |
||||
<div><p>&#1091;</p>у</div> |
||||
<div><p>&#1092;</p>ф</div> |
||||
<div><p>&#1093;</p>х</div> |
||||
<div><p>&#1094;</p>ц</div> |
||||
<div><p>&#1095;</p>ч</div> |
||||
<div><p>&#1096;</p>ш</div> |
||||
<div><p>&#1097;</p>щ</div> |
||||
<div><p>&#1098;</p>ъ</div> |
||||
<div><p>&#1099;</p>ы</div> |
||||
<div><p>&#1100;</p>ь</div> |
||||
<div><p>&#1101;</p>э</div> |
||||
<div><p>&#1102;</p>ю</div> |
||||
<div><p>&#1103;</p>я</div> |
||||
<div><p>&#1105;</p>ё</div> |
||||
<div><p>&#1106;</p>ђ</div> |
||||
<div><p>&#1107;</p>ѓ</div> |
||||
<div><p>&#1108;</p>є</div> |
||||
<div><p>&#1109;</p>ѕ</div> |
||||
<div><p>&#1110;</p>і</div> |
||||
<div><p>&#1111;</p>ї</div> |
||||
<div><p>&#1112;</p>ј</div> |
||||
<div><p>&#1113;</p>љ</div> |
||||
<div><p>&#1114;</p>њ</div> |
||||
<div><p>&#1115;</p>ћ</div> |
||||
<div><p>&#1116;</p>ќ</div> |
||||
<div><p>&#1117;</p>ѝ</div> |
||||
<div><p>&#1118;</p>ў</div> |
||||
<div><p>&#1119;</p>џ</div> |
||||
<div><p>&#1168;</p>Ґ</div> |
||||
<div><p>&#1169;</p>ґ</div> |
||||
<div><p>&#1200;</p>Ұ</div> |
||||
<div><p>&#1201;</p>ұ</div> |
||||
<div><p>&#1206;</p>Ҷ</div> |
||||
<div><p>&#1207;</p>ҷ</div> |
||||
<div><p>&#1210;</p>Һ</div> |
||||
<div><p>&#1216;</p>Ӏ</div> |
||||
<div><p>&#8211;</p>–</div> |
||||
<div><p>&#8212;</p>—</div> |
||||
<div><p>&#8216;</p>‘</div> |
||||
<div><p>&#8217;</p>’</div> |
||||
<div><p>&#8218;</p>‚</div> |
||||
<div><p>&#8220;</p>“</div> |
||||
<div><p>&#8221;</p>”</div> |
||||
<div><p>&#8222;</p>„</div> |
||||
<div><p>&#8226;</p>•</div> |
||||
<div><p>&#8230;</p>…</div> |
||||
<div><p>&#8249;</p>‹</div> |
||||
<div><p>&#8250;</p>›</div> |
||||
<div><p>&#8364;</p>€</div> |
||||
<div><p>&#8482;</p>™</div> |
||||
<div><p>&#9724;</p>◼</div> |
||||
</div> |
||||
</div> |
||||
|
||||
|
||||
</div> |
||||
</div> |
||||
|
||||
|
||||
<div id="specs"> |
||||
|
||||
</div> |
||||
|
||||
<div id="installing"> |
||||
<div class="section"> |
||||
<div class="grid7 firstcol"> |
||||
<h1>Installing Webfonts</h1> |
||||
|
||||
<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> |
||||
|
||||
<h2>1. Upload your webfonts</h2> |
||||
<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> |
||||
|
||||
<h2>2. Include the webfont stylesheet</h2> |
||||
<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> |
||||
|
||||
|
||||
<code> |
||||
@font-face{ |
||||
font-family: 'MyWebFont'; |
||||
src: url('WebFont.eot'); |
||||
src: url('WebFont.eot?#iefix') format('embedded-opentype'), |
||||
url('WebFont.woff') format('woff'), |
||||
url('WebFont.ttf') format('truetype'), |
||||
url('WebFont.svg#webfont') format('svg'); |
||||
} |
||||
</code> |
||||
|
||||
<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> |
||||
<code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> |
||||
|
||||
<h2>3. Modify your own stylesheet</h2> |
||||
<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> |
||||
<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> |
||||
|
||||
<h2>4. Test</h2> |
||||
<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> |
||||
</div> |
||||
|
||||
<div class="grid5 sidebar"> |
||||
<div class="box"> |
||||
<h2>Troubleshooting<br />Font-Face Problems</h2> |
||||
<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> |
||||
|
||||
<h3>Fonts not showing in any browser</h3> |
||||
|
||||
<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> |
||||
|
||||
<h3>Fonts not loading in iPhone or iPad</h3> |
||||
|
||||
<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> |
||||
|
||||
<h3>Fonts not loading in Firefox</h3> |
||||
|
||||
<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> |
||||
|
||||
<h3>Fonts not loading in IE</h3> |
||||
|
||||
<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> |
||||
|
||||
<h3>Fonts not loading in IE9</h3> |
||||
|
||||
<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
</div> |
||||
|
||||
</div> |
||||
<div id="footer"> |
||||
<p>©2010-2011 Font Squirrel. All rights reserved.</p> |
||||
</div> |
||||
</div> |
||||
</body> |
||||
</html> |
||||
|
After Width: | Height: | Size: 152 KiB |
@ -0,0 +1,608 @@ |
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
||||
<head> |
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> |
||||
<script src="specimen_files/easytabs.js" type="text/javascript" charset="utf-8"></script> |
||||
<link rel="stylesheet" href="specimen_files/specimen_stylesheet.css" type="text/css" charset="utf-8" /> |
||||
<link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> |
||||
|
||||
<style type="text/css"> |
||||
body{ |
||||
font-family: 'exo_2regular'; |
||||
} |
||||
</style> |
||||
|
||||
<title>Exo 2 Regular Specimen</title> |
||||
|
||||
|
||||
<script type="text/javascript" charset="utf-8"> |
||||
$(document).ready(function() { |
||||
$('#container').easyTabs({defaultContent:1}); |
||||
}); |
||||
</script> |
||||
</head> |
||||
|
||||
<body> |
||||
<div id="container"> |
||||
<div id="header"> |
||||
Exo 2 Regular </div> |
||||
<ul class="tabs"> |
||||
<li><a href="#specimen">Specimen</a></li> |
||||
<li><a href="#layout">Sample Layout</a></li> |
||||
<li><a href="#glyphs">Glyphs & Languages</a></li> |
||||
<li><a href="#installing">Installing Webfonts</a></li> |
||||
|
||||
</ul> |
||||
|
||||
<div id="main_content"> |
||||
|
||||
|
||||
<div id="specimen"> |
||||
|
||||
<div class="section"> |
||||
<div class="grid12 firstcol"> |
||||
<div class="huge">AaBb</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="section"> |
||||
<div class="glyph_range">A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;</div> |
||||
</div> |
||||
<div class="section"> |
||||
<div class="grid12 firstcol"> |
||||
<table class="sample_table"> |
||||
<tr><td>10</td><td class="size10">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>11</td><td class="size11">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>12</td><td class="size12">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>13</td><td class="size13">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>14</td><td class="size14">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>16</td><td class="size16">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>18</td><td class="size18">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>20</td><td class="size20">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>24</td><td class="size24">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>30</td><td class="size30">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>36</td><td class="size36">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>48</td><td class="size48">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>60</td><td class="size60">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>72</td><td class="size72">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
<tr><td>90</td><td class="size90">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr> |
||||
</table> |
||||
|
||||
</div> |
||||
|
||||
</div> |
||||
|
||||
|
||||
|
||||
<div class="section" id="bodycomparison"> |
||||
|
||||
|
||||
<div id="xheight"> |
||||
<div class="fontbody">◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼◼body</div><div class="arialbody">body</div><div class="verdanabody">body</div><div class="georgiabody">body</div></div> |
||||
<div class="fontbody" style="z-index:1"> |
||||
body<span>Exo 2 Regular</span> |
||||
</div> |
||||
<div class="arialbody" style="z-index:1"> |
||||
body<span>Arial</span> |
||||
</div> |
||||
<div class="verdanabody" style="z-index:1"> |
||||
body<span>Verdana</span> |
||||
</div> |
||||
<div class="georgiabody" style="z-index:1"> |
||||
body<span>Georgia</span> |
||||
</div> |
||||
|
||||
|
||||
|
||||
</div> |
||||
|
||||
|
||||
<div class="section psample psample_row1" id=""> |
||||
|
||||
<div class="grid2 firstcol"> |
||||
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid3"> |
||||
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid3"> |
||||
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid4"> |
||||
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="white_blend"></div> |
||||
|
||||
</div> |
||||
<div class="section psample psample_row2" id=""> |
||||
<div class="grid3 firstcol"> |
||||
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid4"> |
||||
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid5"> |
||||
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
|
||||
<div class="white_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
<div class="section psample psample_row3" id=""> |
||||
<div class="grid5 firstcol"> |
||||
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
<div class="grid7"> |
||||
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
|
||||
<div class="white_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
<div class="section psample psample_row4" id=""> |
||||
<div class="grid12 firstcol"> |
||||
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
<div class="white_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
|
||||
|
||||
<div class="section psample psample_row1 fullreverse"> |
||||
<div class="grid2 firstcol"> |
||||
<p class="size10"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid3"> |
||||
<p class="size11"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid3"> |
||||
<p class="size12"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid4"> |
||||
<p class="size13"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="black_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
<div class="section psample psample_row2 fullreverse"> |
||||
<div class="grid3 firstcol"> |
||||
<p class="size14"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid4"> |
||||
<p class="size16"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="grid5"> |
||||
<p class="size18"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
|
||||
</div> |
||||
<div class="black_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
<div class="section psample fullreverse psample_row3" id=""> |
||||
<div class="grid5 firstcol"> |
||||
<p class="size20"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
<div class="grid7"> |
||||
<p class="size24"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
|
||||
<div class="black_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
<div class="section psample fullreverse psample_row4" id="" style="border-bottom: 20px #000 solid;"> |
||||
<div class="grid12 firstcol"> |
||||
<p class="size30"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p> |
||||
</div> |
||||
<div class="black_blend"></div> |
||||
|
||||
</div> |
||||
|
||||
|
||||
|
||||
|
||||
</div> |
||||
|
||||
<div id="layout"> |
||||
|
||||
<div class="section"> |
||||
|
||||
<div class="grid12 firstcol"> |
||||
<h1>Lorem Ipsum Dolor</h1> |
||||
<h2>Etiam porta sem malesuada magna mollis euismod</h2> |
||||
|
||||
<p class="byline">By <a href="#link">Aenean Lacinia</a></p> |
||||
</div> |
||||
</div> |
||||
<div class="section"> |
||||
<div class="grid8 firstcol"> |
||||
<p class="large">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> |
||||
|
||||
|
||||
<h3>Pellentesque ornare sem</h3> |
||||
|
||||
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p> |
||||
|
||||
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p> |
||||
|
||||
<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p> |
||||
|
||||
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p> |
||||
|
||||
<h3>Cras mattis consectetur</h3> |
||||
|
||||
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p> |
||||
|
||||
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p> |
||||
</div> |
||||
|
||||
<div class="grid4 sidebar"> |
||||
|
||||
<div class="box reverse"> |
||||
<p class="last">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p> |
||||
</div> |
||||
|
||||
<p class="caption">Maecenas sed diam eget risus varius.</p> |
||||
|
||||
<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> |
||||
|
||||
|
||||
|
||||
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p> |
||||
|
||||
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p> |
||||
|
||||
</div> |
||||
</div> |
||||
|
||||
</div> |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div id="glyphs"> |
||||
<div class="section"> |
||||
<div class="grid12 firstcol"> |
||||
|
||||
<h1>Language Support</h1> |
||||
<p>The subset of Exo 2 Regular in this kit supports the following languages:<br /> |
||||
|
||||
Cyrillic, English </p> |
||||
<h1>Glyph Chart</h1> |
||||
<p>The subset of Exo 2 Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p> |
||||
<div id="glyph_chart"> |
||||
|
||||
<div><p>&#13;</p> </div> |
||||
<div><p>&#32;</p> </div> |
||||
<div><p>&#33;</p>!</div> |
||||
<div><p>&#34;</p>"</div> |
||||
<div><p>&#35;</p>#</div> |
||||
<div><p>&#36;</p>$</div> |
||||
<div><p>&#37;</p>%</div> |
||||
<div><p>&#38;</p>&</div> |
||||
<div><p>&#39;</p>'</div> |
||||
<div><p>&#40;</p>(</div> |
||||
<div><p>&#41;</p>)</div> |
||||
<div><p>&#42;</p>*</div> |
||||
<div><p>&#43;</p>+</div> |
||||
<div><p>&#44;</p>,</div> |
||||
<div><p>&#45;</p>-</div> |
||||
<div><p>&#46;</p>.</div> |
||||
<div><p>&#47;</p>/</div> |
||||
<div><p>&#48;</p>0</div> |
||||
<div><p>&#49;</p>1</div> |
||||
<div><p>&#50;</p>2</div> |
||||
<div><p>&#51;</p>3</div> |
||||
<div><p>&#52;</p>4</div> |
||||
<div><p>&#53;</p>5</div> |
||||
<div><p>&#54;</p>6</div> |
||||
<div><p>&#55;</p>7</div> |
||||
<div><p>&#56;</p>8</div> |
||||
<div><p>&#57;</p>9</div> |
||||
<div><p>&#58;</p>:</div> |
||||
<div><p>&#59;</p>;</div> |
||||
<div><p>&#60;</p><</div> |
||||
<div><p>&#61;</p>=</div> |
||||
<div><p>&#62;</p>></div> |
||||
<div><p>&#63;</p>?</div> |
||||
<div><p>&#64;</p>@</div> |
||||
<div><p>&#65;</p>A</div> |
||||
<div><p>&#66;</p>B</div> |
||||
<div><p>&#67;</p>C</div> |
||||
<div><p>&#68;</p>D</div> |
||||
<div><p>&#69;</p>E</div> |
||||
<div><p>&#70;</p>F</div> |
||||
<div><p>&#71;</p>G</div> |
||||
<div><p>&#72;</p>H</div> |
||||
<div><p>&#73;</p>I</div> |
||||
<div><p>&#74;</p>J</div> |
||||
<div><p>&#75;</p>K</div> |
||||
<div><p>&#76;</p>L</div> |
||||
<div><p>&#77;</p>M</div> |
||||
<div><p>&#78;</p>N</div> |
||||
<div><p>&#79;</p>O</div> |
||||
<div><p>&#80;</p>P</div> |
||||
<div><p>&#81;</p>Q</div> |
||||
<div><p>&#82;</p>R</div> |
||||
<div><p>&#83;</p>S</div> |
||||
<div><p>&#84;</p>T</div> |
||||
<div><p>&#85;</p>U</div> |
||||
<div><p>&#86;</p>V</div> |
||||
<div><p>&#87;</p>W</div> |
||||
<div><p>&#88;</p>X</div> |
||||
<div><p>&#89;</p>Y</div> |
||||
<div><p>&#90;</p>Z</div> |
||||
<div><p>&#91;</p>[</div> |
||||
<div><p>&#92;</p>\</div> |
||||
<div><p>&#93;</p>]</div> |
||||
<div><p>&#94;</p>^</div> |
||||
<div><p>&#95;</p>_</div> |
||||
<div><p>&#96;</p>`</div> |
||||
<div><p>&#97;</p>a</div> |
||||
<div><p>&#98;</p>b</div> |
||||
<div><p>&#99;</p>c</div> |
||||
<div><p>&#100;</p>d</div> |
||||
<div><p>&#101;</p>e</div> |
||||
<div><p>&#102;</p>f</div> |
||||
<div><p>&#103;</p>g</div> |
||||
<div><p>&#104;</p>h</div> |
||||
<div><p>&#105;</p>i</div> |
||||
<div><p>&#106;</p>j</div> |
||||
<div><p>&#107;</p>k</div> |
||||
<div><p>&#108;</p>l</div> |
||||
<div><p>&#109;</p>m</div> |
||||
<div><p>&#110;</p>n</div> |
||||
<div><p>&#111;</p>o</div> |
||||
<div><p>&#112;</p>p</div> |
||||
<div><p>&#113;</p>q</div> |
||||
<div><p>&#114;</p>r</div> |
||||
<div><p>&#115;</p>s</div> |
||||
<div><p>&#116;</p>t</div> |
||||
<div><p>&#117;</p>u</div> |
||||
<div><p>&#118;</p>v</div> |
||||
<div><p>&#119;</p>w</div> |
||||
<div><p>&#120;</p>x</div> |
||||
<div><p>&#121;</p>y</div> |
||||
<div><p>&#122;</p>z</div> |
||||
<div><p>&#123;</p>{</div> |
||||
<div><p>&#124;</p>|</div> |
||||
<div><p>&#125;</p>}</div> |
||||
<div><p>&#126;</p>~</div> |
||||
<div><p>&#162;</p>¢</div> |
||||
<div><p>&#163;</p>£</div> |
||||
<div><p>&#165;</p>¥</div> |
||||
<div><p>&#168;</p>¨</div> |
||||
<div><p>&#169;</p>©</div> |
||||
<div><p>&#171;</p>«</div> |
||||
<div><p>&#174;</p>®</div> |
||||
<div><p>&#180;</p>´</div> |
||||
<div><p>&#184;</p>¸</div> |
||||
<div><p>&#187;</p>»</div> |
||||
<div><p>&#710;</p>ˆ</div> |
||||
<div><p>&#730;</p>˚</div> |
||||
<div><p>&#732;</p>˜</div> |
||||
<div><p>&#1025;</p>Ё</div> |
||||
<div><p>&#1026;</p>Ђ</div> |
||||
<div><p>&#1027;</p>Ѓ</div> |
||||
<div><p>&#1028;</p>Є</div> |
||||
<div><p>&#1029;</p>Ѕ</div> |
||||
<div><p>&#1030;</p>І</div> |
||||
<div><p>&#1031;</p>Ї</div> |
||||
<div><p>&#1032;</p>Ј</div> |
||||
<div><p>&#1033;</p>Љ</div> |
||||
<div><p>&#1034;</p>Њ</div> |
||||
<div><p>&#1035;</p>Ћ</div> |
||||
<div><p>&#1036;</p>Ќ</div> |
||||
<div><p>&#1037;</p>Ѝ</div> |
||||
<div><p>&#1038;</p>Ў</div> |
||||
<div><p>&#1039;</p>Џ</div> |
||||
<div><p>&#1040;</p>А</div> |
||||
<div><p>&#1041;</p>Б</div> |
||||
<div><p>&#1042;</p>В</div> |
||||
<div><p>&#1043;</p>Г</div> |
||||
<div><p>&#1044;</p>Д</div> |
||||
<div><p>&#1045;</p>Е</div> |
||||
<div><p>&#1046;</p>Ж</div> |
||||
<div><p>&#1047;</p>З</div> |
||||
<div><p>&#1048;</p>И</div> |
||||
<div><p>&#1049;</p>Й</div> |
||||
<div><p>&#1050;</p>К</div> |
||||
<div><p>&#1051;</p>Л</div> |
||||
<div><p>&#1052;</p>М</div> |
||||
<div><p>&#1053;</p>Н</div> |
||||
<div><p>&#1054;</p>О</div> |
||||
<div><p>&#1055;</p>П</div> |
||||
<div><p>&#1056;</p>Р</div> |
||||
<div><p>&#1057;</p>С</div> |
||||
<div><p>&#1058;</p>Т</div> |
||||
<div><p>&#1059;</p>У</div> |
||||
<div><p>&#1060;</p>Ф</div> |
||||
<div><p>&#1061;</p>Х</div> |
||||
<div><p>&#1062;</p>Ц</div> |
||||
<div><p>&#1063;</p>Ч</div> |
||||
<div><p>&#1064;</p>Ш</div> |
||||
<div><p>&#1065;</p>Щ</div> |
||||
<div><p>&#1066;</p>Ъ</div> |
||||
<div><p>&#1067;</p>Ы</div> |
||||
<div><p>&#1068;</p>Ь</div> |
||||
<div><p>&#1069;</p>Э</div> |
||||
<div><p>&#1070;</p>Ю</div> |
||||
<div><p>&#1071;</p>Я</div> |
||||
<div><p>&#1072;</p>а</div> |
||||
<div><p>&#1073;</p>б</div> |
||||
<div><p>&#1074;</p>в</div> |
||||
<div><p>&#1075;</p>г</div> |
||||
<div><p>&#1076;</p>д</div> |
||||
<div><p>&#1077;</p>е</div> |
||||
<div><p>&#1078;</p>ж</div> |
||||
<div><p>&#1079;</p>з</div> |
||||
<div><p>&#1080;</p>и</div> |
||||
<div><p>&#1081;</p>й</div> |
||||
<div><p>&#1082;</p>к</div> |
||||
<div><p>&#1083;</p>л</div> |
||||
<div><p>&#1084;</p>м</div> |
||||
<div><p>&#1085;</p>н</div> |
||||
<div><p>&#1086;</p>о</div> |
||||
<div><p>&#1087;</p>п</div> |
||||
<div><p>&#1088;</p>р</div> |
||||
<div><p>&#1089;</p>с</div> |
||||
<div><p>&#1090;</p>т</div> |
||||
<div><p>&#1091;</p>у</div> |
||||
<div><p>&#1092;</p>ф</div> |
||||
<div><p>&#1093;</p>х</div> |
||||
<div><p>&#1094;</p>ц</div> |
||||
<div><p>&#1095;</p>ч</div> |
||||
<div><p>&#1096;</p>ш</div> |
||||
<div><p>&#1097;</p>щ</div> |
||||
<div><p>&#1098;</p>ъ</div> |
||||
<div><p>&#1099;</p>ы</div> |
||||
<div><p>&#1100;</p>ь</div> |
||||
<div><p>&#1101;</p>э</div> |
||||
<div><p>&#1102;</p>ю</div> |
||||
<div><p>&#1103;</p>я</div> |
||||
<div><p>&#1105;</p>ё</div> |
||||
<div><p>&#1106;</p>ђ</div> |
||||
<div><p>&#1107;</p>ѓ</div> |
||||
<div><p>&#1108;</p>є</div> |
||||
<div><p>&#1109;</p>ѕ</div> |
||||
<div><p>&#1110;</p>і</div> |
||||
<div><p>&#1111;</p>ї</div> |
||||
<div><p>&#1112;</p>ј</div> |
||||
<div><p>&#1113;</p>љ</div> |
||||
<div><p>&#1114;</p>њ</div> |
||||
<div><p>&#1115;</p>ћ</div> |
||||
<div><p>&#1116;</p>ќ</div> |
||||
<div><p>&#1117;</p>ѝ</div> |
||||
<div><p>&#1118;</p>ў</div> |
||||
<div><p>&#1119;</p>џ</div> |
||||
<div><p>&#1168;</p>Ґ</div> |
||||
<div><p>&#1169;</p>ґ</div> |
||||
<div><p>&#1200;</p>Ұ</div> |
||||
<div><p>&#1201;</p>ұ</div> |
||||
<div><p>&#1206;</p>Ҷ</div> |
||||
<div><p>&#1207;</p>ҷ</div> |
||||
<div><p>&#1210;</p>Һ</div> |
||||
<div><p>&#1216;</p>Ӏ</div> |
||||
<div><p>&#8211;</p>–</div> |
||||
<div><p>&#8212;</p>—</div> |
||||
<div><p>&#8216;</p>‘</div> |
||||
<div><p>&#8217;</p>’</div> |
||||
<div><p>&#8218;</p>‚</div> |
||||
<div><p>&#8220;</p>“</div> |
||||
<div><p>&#8221;</p>”</div> |
||||
<div><p>&#8222;</p>„</div> |
||||
<div><p>&#8226;</p>•</div> |
||||
<div><p>&#8230;</p>…</div> |
||||
<div><p>&#8249;</p>‹</div> |
||||
<div><p>&#8250;</p>›</div> |
||||
<div><p>&#8364;</p>€</div> |
||||
<div><p>&#8482;</p>™</div> |
||||
<div><p>&#9724;</p>◼</div> |
||||
</div> |
||||
</div> |
||||
|
||||
|
||||
</div> |
||||
</div> |
||||
|
||||
|
||||
<div id="specs"> |
||||
|
||||
</div> |
||||
|
||||
<div id="installing"> |
||||
<div class="section"> |
||||
<div class="grid7 firstcol"> |
||||
<h1>Installing Webfonts</h1> |
||||
|
||||
<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p> |
||||
|
||||
<h2>1. Upload your webfonts</h2> |
||||
<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p> |
||||
|
||||
<h2>2. Include the webfont stylesheet</h2> |
||||
<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href="http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax">Fontspring blog post</a> about it. The code for it is as follows:</p> |
||||
|
||||
|
||||
<code> |
||||
@font-face{ |
||||
font-family: 'MyWebFont'; |
||||
src: url('WebFont.eot'); |
||||
src: url('WebFont.eot?#iefix') format('embedded-opentype'), |
||||
url('WebFont.woff') format('woff'), |
||||
url('WebFont.ttf') format('truetype'), |
||||
url('WebFont.svg#webfont') format('svg'); |
||||
} |
||||
</code> |
||||
|
||||
<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p> |
||||
<code><link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /></code> |
||||
|
||||
<h2>3. Modify your own stylesheet</h2> |
||||
<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:</p> |
||||
<code>p { font-family: 'WebFont', Arial, sans-serif; }</code> |
||||
|
||||
<h2>4. Test</h2> |
||||
<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p> |
||||
</div> |
||||
|
||||
<div class="grid5 sidebar"> |
||||
<div class="box"> |
||||
<h2>Troubleshooting<br />Font-Face Problems</h2> |
||||
<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p> |
||||
|
||||
<h3>Fonts not showing in any browser</h3> |
||||
|
||||
<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p> |
||||
|
||||
<h3>Fonts not loading in iPhone or iPad</h3> |
||||
|
||||
<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to "image/svg+xml" in the server settings. Follow these instructions from Microsoft if you need help.</p> |
||||
|
||||
<h3>Fonts not loading in Firefox</h3> |
||||
|
||||
<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p> |
||||
|
||||
<h3>Fonts not loading in IE</h3> |
||||
|
||||
<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p> |
||||
|
||||
<h3>Fonts not loading in IE9</h3> |
||||
|
||||
<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
</div> |
||||
|
||||
</div> |
||||
<div id="footer"> |
||||
<p>©2010-2011 Font Squirrel. All rights reserved.</p> |
||||
</div> |
||||
</div> |
||||
</body> |
||||
</html> |
||||
|
After Width: | Height: | Size: 153 KiB |
|
After Width: | Height: | Size: 175 KiB |