OwlCyberSecurity - MANAGER
Edit File: rtl.css
@charset "UTF-8"; /*------------------------------------*\ $FONT-SIZES \*------------------------------------*/ /** * Font-sizes (in pixels). Refer to relevant sections for their implementations. */ /*------------------------------------*\ $BASE \*------------------------------------*/ /** * Base stuff */ /** * Base font-family. */ /** * Default colour for objects’ borders etc. */ /*-------------------------------------*\ ICON FONTS \*-------------------------------------*/ /*--------------------------------*\ COLORS \*--------------------------------*/ /*------------------------------------*\ VARS.SCSS \*------------------------------------*/ /** * Any variables you find set in inuit.css’ `_vars.scss` that you do not wish to * keep, simply redefine here. This means that if inuit.css, for example, sets * your `$base-font-size` at 16px and you wish it to be 14px, simply redeclare * that variable in this file. inuit.css ignores its own variables in favour of * using your own, so you can completely modify how inuit.css works without ever * having to alter the framework itself. */ /*------------------------------------*\ $OBJECTS-AND-ABSTRACTIONS \*------------------------------------*/ /** * All of inuit.css’ objects and abstractions are initially turned off by * default. This means that you start any project with as little as possible, * and introducing objects and abstractions is as simple as switching the * following variables to `true`. */ /*------------------------------------*\ $OVERRIDES \*------------------------------------*/ /** * Place any variables that should override inuit.css’ defaults here. */ /*------------------------------------*\ $CUSTOM \*------------------------------------*/ /** * Place any of your own variables that sit on top of inuit.css here. */ /*------------------------------------*\ $FONT-SIZES \*------------------------------------*/ /** * Font-sizes (in pixels). Refer to relevant sections for their implementations. */ /*------------------------------------*\ $DEFAULTS \*------------------------------------*/ /** * inuit.css’ default variables. Redefine these in your `_vars.scss` file (found * in the inuit.css-web-template) to override them. */ /*------------------------------------*\ $DEBUG \*------------------------------------*/ /** * Debug mode will visually highlight any potential markup/accessibility quirks * in the browser. Set to `true` or `false`. */ /*------------------------------------*\ $BORDER-BOX \*------------------------------------*/ /** * Do you want all elements to adopt `box-sizing:border-box;` as per * paulirish.com/2012/box-sizing-border-box-ftw ? */ /*------------------------------------*\ $BASE \*------------------------------------*/ /** * Base stuff */ /** * Base font-family. */ /** * Default colour for objects’ borders etc. */ /*------------------------------------*\ $RESPONSIVE \*------------------------------------*/ /** * Responsiveness? */ /** * Responsiveness for widescreen/high resolution desktop monitors and beyond? * Note: `$responsive` variable above must be set to true before enabling this. */ /** * Responsive push and pull produce a LOT of code, only turn them on if you * definitely need them. */ /** * Note: `$push` variable above must be set to true before enabling these. */ /** * Note: `$pull` variable above must be set to true before enabling these. */ /** * Tell inuit.css when breakpoints start. */ /*------------------------------------*\ $QUOTES \*------------------------------------*/ /** * English quote marks? */ /** * If you want English quotes then please do not edit these; they’re only here * because Sass needs them. */ /** * If you need non-English quotes, please alter the following values accordingly: */ /*------------------------------------*\ $BRAND \*------------------------------------*/ /** * Brand stuff */ /** * How big would you like round corners to be by default? */ /*------------------------------------*\ $OBJECTS AND ABSTRACTIONS \*------------------------------------*/ /** * Which objects and abstractions would you like to use? */ /*------------------------------------*\ $FRAMEWORK \*------------------------------------*/ /** * inuit.css will work these next ones out for use within the framework. * * Assign our `$base-line-height` to a new spacing var for more transparency. */ /*------------------------------------*\ $GREEDY \*------------------------------------*/ /*------------------------------------*\ $MIXINS \*------------------------------------*/ /** * * */ /** * Create a fully formed type style (sizing and vertical rhythm) by passing in a * single value, e.g.: * `@include font-size(10px);` * * Thanks to @redclov3r for the `line-height` Sass: * twitter.com/redclov3r/status/250301539321798657 */ /** * Style any number of headings in one fell swoop, e.g.: * .foo{ @include headings(1, 3){ color:#BADA55; } } * * With thanks to @lar_zzz, @paranoida, @rowanmanning and ultimately * @thierrylemoulec for refining and improving my initial mixin. */ /** * Create vendor-prefixed CSS in one go, e.g. * `@include vendor(border-radius, 4px);` * */ /** * Create CSS keyframe animations for all vendors in one go, e.g.: * .foo{ @include vendor(animation, shrink 3s); } @include keyframe(shrink){ from{ font-size:5em; } } * * Courtesy of @integralist: twitter.com/integralist/status/260484115315437569 */ /** * Force overly long spans of text to truncate, e.g.: * `@include truncate(100%);` * * Where `$truncation-boundary` is a united measurement. */ /** * CSS arrows!!! But... before you read on, you might want to grab a coffee... * * This mixin creates a CSS arrow on a given element. We can have the arrow * appear in one of 12 locations, thus: * * 01 02 03 * +------------------+ * 12 | | 04 * | | * 11 | | 05 * | | * 10 | | 06 * +------------------+ * 09 08 07 * * You pass this position in along with a desired arrow color and optional * border color, for example: * * `@include arrow(top, left, red)` * * for just a single, red arrow, or: * * `@include arrow(bottom, center, red, black)` * * which will create a red triangle with a black border which sits at the bottom * center of the element. Call the mixin thus: * .foo{ background-color:#BADA55; border:1px solid #ACE; @include arrow(top, left, #BADA55, #ACE); } * */ /** * Media query mixin. * * It’s not great practice to define solid breakpoints up-front, preferring to * modify your design when it needs it, rather than assuming you’ll want a * change at ‘mobile’. However, as inuit.css is required to take a hands off * approach to design decisions, this is the closest we can get to baked-in * responsiveness. It’s flexible enough to allow you to set your own breakpoints * but solid enough to be frameworkified. * * We define some broad breakpoints in our vars file that are picked up here * for use in a simple media query mixin. Our options are: * * palm * lap * lap-and-up * portable * desk * desk-wide * * Not using a media query will, naturally, serve styles to all devices. * * `@include media-query(palm){ [styles here] }` * * We work out your end points for you: */ /*------------------------------------*\ $CLEARFIX \*------------------------------------*/ /** * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php * Extend the clearfix class with Sass to avoid the `.cf` class appearing over * and over in your markup. */ .cf:after, .row:after { content: ""; display: table; clear: both; } /*------------------------------------*\ $SHARED \*------------------------------------*/ /** * Where `margin-bottom` is concerned, this value will be the same as the * base line-height. This allows us to keep a consistent vertical rhythm. * As per: csswizardry.com/2012/06/single-direction-margin-declarations */ /** * Base elements */ h1, h2, h3, h4, h5, h6, hgroup, ul, ol, dl, blockquote, p, address, table, fieldset, figure, pre, .media, .island, .islet { margin-bottom: 24px; margin-bottom: 1.33333rem; } .islet h1, .islet h2, .islet h3, .islet h4, .islet h5, .islet h6, .islet hgroup, .islet ul, .islet ol, .islet dl, .islet blockquote, .islet p, .islet address, .islet table, .islet fieldset, .islet figure, .islet pre, .islet .media, .islet .island, .islet .islet { margin-bottom: 12px; margin-bottom: 0.66667rem; } /** * Doubled up `margin-bottom` helper class. */ .landmark { margin-bottom: 48px; margin-bottom: 2.66667rem; } /** * `hr` elements only take up a few pixels, so we need to give them special * treatment regarding vertical rhythm. */ hr { margin-bottom: 22px; margin-bottom: 1.22222rem; } /** * Where `margin-left` is concerned we want to try and indent certain elements * by a consistent amount. Define that amount once, here. */ ul, ol, dd { margin-left: 24px; margin-left: 1.33333rem; } .span-1, .col-1 { width: 8.33333%; } .span-2, .col-2 { width: 16.66667%; } .span-3, .col-3 { width: 25%; } .span-4, .col-4 { width: 33.33333%; } .span-5, .col-5 { width: 41.66667%; } .span-6, .col-6 { width: 50%; } .span-7, .col-7 { width: 58.33333%; } .span-8, .col-8 { width: 66.66667%; } .span-9, .col-9 { width: 75%; } .span-10, .col-10 { width: 83.33333%; } .span-11, .col-11 { width: 91.66667%; } .span-12, .col-12 { width: 100%; } @media only screen and (min-width: 601px) { .small-span-1 { width: 8.33333%; } } @media only screen and (min-width: 601px) { .small-span-2 { width: 16.66667%; } } @media only screen and (min-width: 601px) { .small-span-3 { width: 25%; } } @media only screen and (min-width: 601px) { .small-span-4 { width: 33.33333%; } } @media only screen and (min-width: 601px) { .small-span-5 { width: 41.66667%; } } @media only screen and (min-width: 601px) { .small-span-6 { width: 50%; } } @media only screen and (min-width: 601px) { .small-span-7 { width: 58.33333%; } } @media only screen and (min-width: 601px) { .small-span-8 { width: 66.66667%; } } @media only screen and (min-width: 601px) { .small-span-9 { width: 75%; } } @media only screen and (min-width: 601px) { .small-span-10 { width: 83.33333%; } } @media only screen and (min-width: 601px) { .small-span-11 { width: 91.66667%; } } @media only screen and (min-width: 601px) { .small-span-12 { width: 100%; } } @media only screen and (min-width: 901px) { .hand-span-1 { width: 8.33333%; } } @media only screen and (min-width: 901px) { .hand-span-2 { width: 16.66667%; } } @media only screen and (min-width: 901px) { .hand-span-3 { width: 25%; } } @media only screen and (min-width: 901px) { .hand-span-4 { width: 33.33333%; } } @media only screen and (min-width: 901px) { .hand-span-5 { width: 41.66667%; } } @media only screen and (min-width: 901px) { .hand-span-6 { width: 50%; } } @media only screen and (min-width: 901px) { .hand-span-7 { width: 58.33333%; } } @media only screen and (min-width: 901px) { .hand-span-8 { width: 66.66667%; } } @media only screen and (min-width: 901px) { .hand-span-9 { width: 75%; } } @media only screen and (min-width: 901px) { .hand-span-10 { width: 83.33333%; } } @media only screen and (min-width: 901px) { .hand-span-11 { width: 91.66667%; } } @media only screen and (min-width: 901px) { .hand-span-12 { width: 100%; } } @media only screen and (min-width: 1201px) { .lap-span-1 { width: 8.33333%; } } @media only screen and (min-width: 1201px) { .lap-span-2 { width: 16.66667%; } } @media only screen and (min-width: 1201px) { .lap-span-3 { width: 25%; } } @media only screen and (min-width: 1201px) { .lap-span-4 { width: 33.33333%; } } @media only screen and (min-width: 1201px) { .lap-span-5 { width: 41.66667%; } } @media only screen and (min-width: 1201px) { .lap-span-6 { width: 50%; } } @media only screen and (min-width: 1201px) { .lap-span-7 { width: 58.33333%; } } @media only screen and (min-width: 1201px) { .lap-span-8 { width: 66.66667%; } } @media only screen and (min-width: 1201px) { .lap-span-9 { width: 75%; } } @media only screen and (min-width: 1201px) { .lap-span-10 { width: 83.33333%; } } @media only screen and (min-width: 1201px) { .lap-span-11 { width: 91.66667%; } } @media only screen and (min-width: 1201px) { .lap-span-12 { width: 100%; } } @media only screen and (min-width: 1881px) { .desk-span-1 { width: 8.33333%; } } @media only screen and (min-width: 1881px) { .desk-span-2 { width: 16.66667%; } } @media only screen and (min-width: 1881px) { .desk-span-3 { width: 25%; } } @media only screen and (min-width: 1881px) { .desk-span-4 { width: 33.33333%; } } @media only screen and (min-width: 1881px) { .desk-span-5 { width: 41.66667%; } } @media only screen and (min-width: 1881px) { .desk-span-6 { width: 50%; } } @media only screen and (min-width: 1881px) { .desk-span-7 { width: 58.33333%; } } @media only screen and (min-width: 1881px) { .desk-span-8 { width: 66.66667%; } } @media only screen and (min-width: 1881px) { .desk-span-9 { width: 75%; } } @media only screen and (min-width: 1881px) { .desk-span-10 { width: 83.33333%; } } @media only screen and (min-width: 1881px) { .desk-span-11 { width: 91.66667%; } } @media only screen and (min-width: 1881px) { .desk-span-12 { width: 100%; } } .offset-1 { margin-left: 8.33333%; } .push-1 { left: 8.33333%; } .pull-1 { left: -8.33333%; } .offset-2 { margin-left: 16.66667%; } .push-2 { left: 16.66667%; } .pull-2 { left: -16.66667%; } .offset-3 { margin-left: 25%; } .push-3 { left: 25%; } .pull-3 { left: -25%; } .offset-4 { margin-left: 33.33333%; } .push-4 { left: 33.33333%; } .pull-4 { left: -33.33333%; } .offset-5 { margin-left: 41.66667%; } .push-5 { left: 41.66667%; } .pull-5 { left: -41.66667%; } .offset-6 { margin-left: 50%; } .push-6 { left: 50%; } .pull-6 { left: -50%; } .offset-7 { margin-left: 58.33333%; } .push-7 { left: 58.33333%; } .pull-7 { left: -58.33333%; } .offset-8 { margin-left: 66.66667%; } .push-8 { left: 66.66667%; } .pull-8 { left: -66.66667%; } .offset-9 { margin-left: 75%; } .push-9 { left: 75%; } .pull-9 { left: -75%; } .offset-10 { margin-left: 83.33333%; } .push-10 { left: 83.33333%; } .pull-10 { left: -83.33333%; } .offset-11 { margin-left: 91.66667%; } .push-11 { left: 91.66667%; } .pull-11 { left: -91.66667%; } .offset-12 { margin-left: 100%; } .push-12 { left: 100%; } .pull-12 { left: -100%; } @media only screen and (min-width: 601px) { .small-col-1 { width: 8.33333%; } .small-offset-1 { margin-left: 8.33333%; } .small-push-1 { left: 8.33333%; } .small-pull-1 { left: -8.33333%; } .small-col-2 { width: 16.66667%; } .small-offset-2 { margin-left: 16.66667%; } .small-push-2 { left: 16.66667%; } .small-pull-2 { left: -16.66667%; } .small-col-3 { width: 25%; } .small-offset-3 { margin-left: 25%; } .small-push-3 { left: 25%; } .small-pull-3 { left: -25%; } .small-col-4 { width: 33.33333%; } .small-offset-4 { margin-left: 33.33333%; } .small-push-4 { left: 33.33333%; } .small-pull-4 { left: -33.33333%; } .small-col-5 { width: 41.66667%; } .small-offset-5 { margin-left: 41.66667%; } .small-push-5 { left: 41.66667%; } .small-pull-5 { left: -41.66667%; } .small-col-6 { width: 50%; } .small-offset-6 { margin-left: 50%; } .small-push-6 { left: 50%; } .small-pull-6 { left: -50%; } .small-col-7 { width: 58.33333%; } .small-offset-7 { margin-left: 58.33333%; } .small-push-7 { left: 58.33333%; } .small-pull-7 { left: -58.33333%; } .small-col-8 { width: 66.66667%; } .small-offset-8 { margin-left: 66.66667%; } .small-push-8 { left: 66.66667%; } .small-pull-8 { left: -66.66667%; } .small-col-9 { width: 75%; } .small-offset-9 { margin-left: 75%; } .small-push-9 { left: 75%; } .small-pull-9 { left: -75%; } .small-col-10 { width: 83.33333%; } .small-offset-10 { margin-left: 83.33333%; } .small-push-10 { left: 83.33333%; } .small-pull-10 { left: -83.33333%; } .small-col-11 { width: 91.66667%; } .small-offset-11 { margin-left: 91.66667%; } .small-push-11 { left: 91.66667%; } .small-pull-11 { left: -91.66667%; } .small-col-12 { width: 100%; } .small-offset-12 { margin-left: 100%; } .small-push-12 { left: 100%; } .small-pull-12 { left: -100%; } } @media only screen and (min-width: 901px) { .hand-col-1 { width: 8.33333%; } .hand-offset-1 { margin-left: 8.33333%; } .hand-push-1 { left: 8.33333%; } .hand-pull-1 { left: -8.33333%; } .hand-col-2 { width: 16.66667%; } .hand-offset-2 { margin-left: 16.66667%; } .hand-push-2 { left: 16.66667%; } .hand-pull-2 { left: -16.66667%; } .hand-col-3 { width: 25%; } .hand-offset-3 { margin-left: 25%; } .hand-push-3 { left: 25%; } .hand-pull-3 { left: -25%; } .hand-col-4 { width: 33.33333%; } .hand-offset-4 { margin-left: 33.33333%; } .hand-push-4 { left: 33.33333%; } .hand-pull-4 { left: -33.33333%; } .hand-col-5 { width: 41.66667%; } .hand-offset-5 { margin-left: 41.66667%; } .hand-push-5 { left: 41.66667%; } .hand-pull-5 { left: -41.66667%; } .hand-col-6 { width: 50%; } .hand-offset-6 { margin-left: 50%; } .hand-push-6 { left: 50%; } .hand-pull-6 { left: -50%; } .hand-col-7 { width: 58.33333%; } .hand-offset-7 { margin-left: 58.33333%; } .hand-push-7 { left: 58.33333%; } .hand-pull-7 { left: -58.33333%; } .hand-col-8 { width: 66.66667%; } .hand-offset-8 { margin-left: 66.66667%; } .hand-push-8 { left: 66.66667%; } .hand-pull-8 { left: -66.66667%; } .hand-col-9 { width: 75%; } .hand-offset-9 { margin-left: 75%; } .hand-push-9 { left: 75%; } .hand-pull-9 { left: -75%; } .hand-col-10 { width: 83.33333%; } .hand-offset-10 { margin-left: 83.33333%; } .hand-push-10 { left: 83.33333%; } .hand-pull-10 { left: -83.33333%; } .hand-col-11 { width: 91.66667%; } .hand-offset-11 { margin-left: 91.66667%; } .hand-push-11 { left: 91.66667%; } .hand-pull-11 { left: -91.66667%; } .hand-col-12 { width: 100%; } .hand-offset-12 { margin-left: 100%; } .hand-push-12 { left: 100%; } .hand-pull-12 { left: -100%; } } @media only screen and (min-width: 1201px) { .lap-col-1 { width: 8.33333%; } .lap-offset-1 { margin-left: 8.33333%; } .lap-push-1 { left: 8.33333%; } .lap-pull-1 { left: -8.33333%; } .lap-col-2 { width: 16.66667%; } .lap-offset-2 { margin-left: 16.66667%; } .lap-push-2 { left: 16.66667%; } .lap-pull-2 { left: -16.66667%; } .lap-col-3 { width: 25%; } .lap-offset-3 { margin-left: 25%; } .lap-push-3 { left: 25%; } .lap-pull-3 { left: -25%; } .lap-col-4 { width: 33.33333%; } .lap-offset-4 { margin-left: 33.33333%; } .lap-push-4 { left: 33.33333%; } .lap-pull-4 { left: -33.33333%; } .lap-col-5 { width: 41.66667%; } .lap-offset-5 { margin-left: 41.66667%; } .lap-push-5 { left: 41.66667%; } .lap-pull-5 { left: -41.66667%; } .lap-col-6 { width: 50%; } .lap-offset-6 { margin-left: 50%; } .lap-push-6 { left: 50%; } .lap-pull-6 { left: -50%; } .lap-col-7 { width: 58.33333%; } .lap-offset-7 { margin-left: 58.33333%; } .lap-push-7 { left: 58.33333%; } .lap-pull-7 { left: -58.33333%; } .lap-col-8 { width: 66.66667%; } .lap-offset-8 { margin-left: 66.66667%; } .lap-push-8 { left: 66.66667%; } .lap-pull-8 { left: -66.66667%; } .lap-col-9 { width: 75%; } .lap-offset-9 { margin-left: 75%; } .lap-push-9 { left: 75%; } .lap-pull-9 { left: -75%; } .lap-col-10 { width: 83.33333%; } .lap-offset-10 { margin-left: 83.33333%; } .lap-push-10 { left: 83.33333%; } .lap-pull-10 { left: -83.33333%; } .lap-col-11 { width: 91.66667%; } .lap-offset-11 { margin-left: 91.66667%; } .lap-push-11 { left: 91.66667%; } .lap-pull-11 { left: -91.66667%; } .lap-col-12 { width: 100%; } .lap-offset-12 { margin-left: 100%; } .lap-push-12 { left: 100%; } .lap-pull-12 { left: -100%; } } @media only screen and (min-width: 1881px) { .desk-col-1 { width: 8.33333%; } .desk-offset-1 { margin-left: 8.33333%; } .desk-push-1 { left: 8.33333%; } .desk-pull-1 { left: -8.33333%; } .desk-col-2 { width: 16.66667%; } .desk-offset-2 { margin-left: 16.66667%; } .desk-push-2 { left: 16.66667%; } .desk-pull-2 { left: -16.66667%; } .desk-col-3 { width: 25%; } .desk-offset-3 { margin-left: 25%; } .desk-push-3 { left: 25%; } .desk-pull-3 { left: -25%; } .desk-col-4 { width: 33.33333%; } .desk-offset-4 { margin-left: 33.33333%; } .desk-push-4 { left: 33.33333%; } .desk-pull-4 { left: -33.33333%; } .desk-col-5 { width: 41.66667%; } .desk-offset-5 { margin-left: 41.66667%; } .desk-push-5 { left: 41.66667%; } .desk-pull-5 { left: -41.66667%; } .desk-col-6 { width: 50%; } .desk-offset-6 { margin-left: 50%; } .desk-push-6 { left: 50%; } .desk-pull-6 { left: -50%; } .desk-col-7 { width: 58.33333%; } .desk-offset-7 { margin-left: 58.33333%; } .desk-push-7 { left: 58.33333%; } .desk-pull-7 { left: -58.33333%; } .desk-col-8 { width: 66.66667%; } .desk-offset-8 { margin-left: 66.66667%; } .desk-push-8 { left: 66.66667%; } .desk-pull-8 { left: -66.66667%; } .desk-col-9 { width: 75%; } .desk-offset-9 { margin-left: 75%; } .desk-push-9 { left: 75%; } .desk-pull-9 { left: -75%; } .desk-col-10 { width: 83.33333%; } .desk-offset-10 { margin-left: 83.33333%; } .desk-push-10 { left: 83.33333%; } .desk-pull-10 { left: -83.33333%; } .desk-col-11 { width: 91.66667%; } .desk-offset-11 { margin-left: 91.66667%; } .desk-push-11 { left: 91.66667%; } .desk-pull-11 { left: -91.66667%; } .desk-col-12 { width: 100%; } .desk-offset-12 { margin-left: 100%; } .desk-push-12 { left: 100%; } .desk-pull-12 { left: -100%; } } .row { margin-left: -24px; margin-left: -1.33333rem; } .column, .columns, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 { float: left; border-left: 0 solid transparent; border-left-width: 24px; border-left-width: 1.33333rem; min-height: 1px; position: relative; } /*------------------------------*\ RTL SUPPORT \*------------------------------*/ /*body*/ .rtl { direction: rtl; unicode-bidi: embed; text-align: right; } /*------------------------------*\ LAYOUT \*------------------------------*/ /** * Content */ @media only screen and (min-width: 901px) { /*#main*/ .content { margin-left: 0 !important; margin-right: 250px !important; margin-right: 13.88889rem !important; } } /*------------------------------*\ HEADER \*------------------------------*/ .header { left: auto; right: 0; /*ul*/ } @media only screen and (min-width: 901px) { .header { padding-right: 48px; padding-right: 2.66667rem; padding-left: 24px; padding-left: 1.33333rem; } } .header:before, .header:after { left: auto; right: 24px; right: 1.33333rem; } .header .site-navigation--main { /*li*/ } @media only screen and (min-width: 901px) { .header .site-navigation--main { margin-left: 0; margin-right: -24px; margin-right: -1.33333rem; } } .header .site-navigation--main .menu-item--parent:after { right: auto; left: 12px; left: 0.66667rem; } .header .site-footer { padding-right: 24px; } @media only screen and (max-width: 900px) { .site-logo { margin-right: 23px; margin-right: 1.27778rem; } } @media only screen and (min-width: 901px) { #navigation { margin-left: 0; } } /*-------------------------------------------*\ MOBILE NAVIGATION \*-------------------------------------------*/ @media only screen and (max-width: 900px) { .site-navigation__trigger { right: auto; left: 0; } } .site-navigation__trigger i { right: 12px; right: 0.66667rem; left: auto; } @media only screen and (max-width: 900px) { .menu-item--parent:after { left: 0; right: auto; } /** * Transitioning the navigation on mobile */ .wrapper { -moz-transition: right 0.25s ease-in-out; -o-transition: right 0.25s ease-in-out; -webkit-transition: right 0.25s ease-in-out; transition: right 0.25s ease-in-out; } .navigation--is-visible .wrapper { right: -75%; left: auto; } .csstransforms3d .wrapper { right: 0 !important; left: auto !important; } .csstransforms.navigation--is-visible .wrapper { -moz-transform: translateX(75%); -ms-transform: translateX(75%); -o-transform: translateX(75%); -webkit-transform: translateX(75%); transform: translateX(75%); } .csstransforms3d.navigation--is-visible .wrapper { -moz-transform: translate3d(75%, 0, 0); -ms-transform: translate3d(75%, 0, 0); -o-transform: translate3d(75%, 0, 0); -webkit-transform: translate3d(75%, 0, 0); transform: translate3d(75%, 0, 0); } } @media only screen and (max-width: 900px) and (min-width: 901px) { .wrapper { right: 0 !important; left: auto !important; } } .header__inner-wrap { position: relative; z-index: 30; } @media only screen and (max-width: 900px) { .header__inner-wrap { right: 100%; left: auto; margin-right: 0; } } /*------------------------------*\ PAGE SINGLE \*------------------------------*/ .page-content { padding-left: 24px; padding-left: 1.33333rem; padding-right: 0; } @media only screen and (min-width: 901px) { .page-content { padding-left: 48px; padding-left: 2.66667rem; padding-right: 0; } } .page-main, .page-side { float: right; padding-right: 24px; padding-right: 1.33333rem; padding-left: 0; } @media only screen and (min-width: 901px) { .page-main, .page-side { padding-right: 48px; padding-right: 2.66667rem; padding-left: 0; } } @media only screen and (min-width: 1201px) { .single-post .page-main .featured-image { margin-left: 0; } } @media only screen and (min-width: 1600px) { .single-post .page-main { padding-right: 144px; padding-right: 8rem; padding-left: 0; } .single-post .page-main .featured-image { margin-right: -144px; margin-right: -8rem; margin-left: 0; } } @media only screen and (min-width: 1750px) { .single-post .page-main { padding-right: 240px; padding-right: 13.33333rem; padding-left: 0; } .single-post .page-main .featured-image { margin-right: -240px; margin-right: -13.33333rem; margin-left: 0; } } @media only screen and (min-width: 1600px) { .entry__wrap { margin-right: -144px; margin-right: -8rem; margin-left: 0; } .entry__wrap .entry__content { margin-right: 144px; margin-right: 8rem; margin-left: 0; } } @media only screen and (min-width: 1750px) { .entry__wrap { margin-right: -240px; margin-right: -13.33333rem; margin-left: 0; } .entry__wrap .entry__content { margin-right: 240px; margin-right: 13.33333rem; margin-left: 0; } } @media only screen and (max-width: 900px) { .page-content .featured-image { margin-right: -24px; margin-right: -1.33333rem; margin-left: -24px; margin-left: -1.33333rem; } } @media only screen and (min-width: 901px) { .page-content .featured-image { margin-right: -48px; margin-right: -2.66667rem; } } @media only screen and (max-width: 1599px) { .entry__likes { right: auto; left: 0; } } @media only screen and (min-width: 1600px) { .entry__likes { float: right; margin: 0; } } @media only screen and (min-width: 901px) { .entry__meta-box { float: right; margin-left: 24px; margin-left: 1.33333rem; margin-right: 0; } } /*------------------------------*\ BLOG \*------------------------------*/ .masonry__item .entry__title { margin-right: 0; margin-left: 24px; margin-left: 1.33333rem; padding: 12px 12px 24px 0; padding: 0.66667rem 0.66667rem 1.33333rem 0; } .article-timestamp { float: right; margin-left: 0; margin-right: 24px; margin-right: 1.33333rem; } .article-timestamp__date { float: right; margin-left: 5px; } .image_item-categories { float: right; text-align: right; } .image_item-categories li { float: right; } .span { float: right; } @media only screen and (min-width: 1201px) { .article-timestamp--single { float: right; margin: 26px -192px 0 0; margin: 1.44444rem -10.66667rem 0 0; } } @media only screen and (min-width: 1201px) { .likes-box--article { float: right; } } .social-links { float: left; } /*------------------------------*\ SIDEBAR \*------------------------------*/ @media only screen and (min-width: 1201px) { .page-content { padding-right: 0; } .page-content .page-side { float: right; padding-right: 48px; padding-right: 2.66667rem; padding-left: 0; } } .form-search { margin-right: 0; margin-left: -48px; margin-left: -2.66667rem; } .form-search .btn { margin-right: 0; margin-left: 48px; margin-left: 2.66667rem; float: left; } /*------------------------------*\ PORTFOLIO \*------------------------------*/ .image_item-like-box { text-align: right; } /*------------------------------*\ SHORTCODES \*------------------------------*/ /** * Team Member */ @media only screen and (min-width: 600px) and (max-width: 900px) { .team-member-name, .team-member-position, .team-member-description p { text-align: right; } } @media only screen and (min-width: 1201px) { .team-member-name, .team-member-position, .team-member-description p { text-align: right; } } .team-member-social-links { text-align: center; } @media only screen and (min-width: 600px) and (max-width: 900px) { .team-member-social-links { text-align: left; } } @media only screen and (min-width: 1201px) { .team-member-social-links { text-align: right; } } /** * Separator */ .separator--full-left { margin-left: 0; padding-left: 0; margin-right: -48px; margin-right: -2.66667rem; padding-right: 48px; padding-right: 2.66667rem; } .single-post .separator--full-left { margin-left: 0; padding-left: 0; margin-right: -240px; margin-right: -13.33333rem; padding-right: 240px; padding-right: 13.33333rem; } /** * Grid */ .row-shortcode div[class*='span-'] { float: right; } /** * Progress Bar */ .progressbar__progress { right: 0; left: auto; } .progressbar__tooltip { left: -55px; left: -3.05556rem; right: auto; } /*------------------------------*\ PLUGINS \*------------------------------*/ /* * Like Box */ .image_item-like-box { text-align: left; } .likes-box .likes-text:after { right: 0; left: auto; } @media only screen and (min-width: 901px) { .likes-box--footer { float: right; } } /** * Article likes box VERTICAL positioning */ @media only screen and (min-width: 1201px) { .likes-box--article { float: right; } .likes-box--article .likes-text:after { right: -13px; left: auto; } } /*------------------------------*\ GALLERIES & SLIDERS \*------------------------------*/ .gallery-control { right: auto; left: 48px; left: 2.66667rem; } .gallery-control--left { left: auto; right: 48px; right: 2.66667rem; } .image_item--block { text-align: right; } /*----------------------------------------*\ * $GALLERY-CONTROLS \*----------------------------------------*/ .gallery-control { margin-left: 6px; margin-left: 0.33333rem; margin-right: auto; direction: ltr; } .mfp-counter { left: 0; right: auto; } .mfp-title { text-align: right; } .masonry__item .gallery-control { left: auto; right: 0; direction: ltr; } .masonry__item .gallery-control .count { text-align: right; float: right; position: absolute; top: auto; left: auto; bottom: 0; right: 24px; right: 1.33333rem; } .masonry__item .gallery-control .arrow-button--left { position: absolute; left: 24px; left: 1.33333rem; bottom: 4px; bottom: 0.22222rem; } .masonry__item .gallery-control .arrow-button--right { position: absolute; left: 24px; left: 1.33333rem; bottom: 4px; bottom: 0.22222rem; } /*----------------------------------------------*\ $SINGLE PROJECT/ GALLERY FULL \*----------------------------------------------*/ .project--fullwidth__header { float: right; } .project--fullwidth__content { border-right: 48px solid transparent; border-right: 2.66667rem solid transparent; border-left-width: 0; } @media only screen and (min-width: 1201px) { .project--fullwidth__header .entry__header { border-right: 0; border-left: 1px dotted #242423; } } .single-gallery-fullscreen .content { margin-right: 0 !important; margin-left: auto !important; } @media only screen and (min-width: 901px) { .gallery--fullscreen { right: 0; left: auto; } } @media only screen and (min-width: 901px) { .related-projects_title { float: right; } } .projects_nav { text-align: left; } .header-quote-content blockquote { margin-right: 0; } .header-quote-content blockquote:before { margin-right: 0; } @media only screen and (min-width: 1750px) { .single-post .entry__content blockquote { margin-right: -72px; margin-right: -4rem; margin-left: 0; padding-right: 72px; padding-right: 4rem; padding-left: 0; } } blockquote { text-indent: 0; margin: 48px 72px 48px 0; margin: 2.66667rem 4rem 2.66667rem 0; } blockquote:before { float: right; display: left; margin-right: -72px; margin-right: -4rem; margin-left: 0; } /*----------------------------------------------*\ $PRELOADER \*----------------------------------------------*/ .pace .pace-activity { top: 24px; top: 1.33333rem; left: 24px; left: 1.33333rem; right: auto; } /*----------------------------------------------*\ $WIDGETS \*----------------------------------------------*/ .site-social-links { margin-left: 1em; margin-right: 0; } /*----------------------------------------*\ $MOBILE NAVIGATION \*----------------------------------------*/ @media only screen and (max-width: 900px) { .site-header { float: right; } .navigation--mobile { padding-left: 24px; padding-left: 1.33333rem; padding-right: 12px; padding-right: 0.66667rem; right: auto; left: 0; } .site-navigation__trigger { left: 0; right: auto; } .navigation--is-visible .wrapper { -moz-transform: translateX(75%); -ms-transform: translateX(75%); -o-transform: translateX(75%); -webkit-transform: translateX(75%); transform: translateX(75%); } } /*----------------------------------------*\ * $HEADER TRANSPARENT \*----------------------------------------*/ @media only screen and (min-width: 901px) { /*body*/ .header-transparent .header { background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.4) 5%, rgba(0, 0, 0, 0) 100%); background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.4) 5%, rgba(0, 0, 0, 0) 100%); background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.4) 5%, rgba(0, 0, 0, 0) 100%); background-image: linear-gradient(to left, rgba(0, 0, 0, 0.4) 5%, rgba(0, 0, 0, 0) 100%); } }