PDF rausgenommen
This commit is contained in:
@ -0,0 +1,28 @@
|
||||
/* Text meant only for screen readers */
|
||||
.screen-reader-text {
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
position: absolute !important;
|
||||
height: 1px;
|
||||
width: 1px;
|
||||
overflow: hidden;
|
||||
|
||||
&:focus {
|
||||
background-color: @color__background-screen;
|
||||
border-radius: 3px;
|
||||
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
|
||||
clip: auto !important;
|
||||
color: @color__text-screen;
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
font-size: 0.875rem;
|
||||
font-weight: bold;
|
||||
height: auto;
|
||||
left: 5px;
|
||||
line-height: normal;
|
||||
padding: 15px 23px 14px;
|
||||
text-decoration: none;
|
||||
top: 5px;
|
||||
width: auto;
|
||||
z-index: 100000; /* Above WP toolbar */
|
||||
}
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
.alignleft {
|
||||
display: inline;
|
||||
float: left;
|
||||
margin-right: 1.5em;
|
||||
}
|
||||
|
||||
.alignright {
|
||||
display: inline;
|
||||
float: right;
|
||||
margin-left: 1.5em;
|
||||
}
|
||||
|
||||
.aligncenter {
|
||||
clear: both;
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
.clear:before,
|
||||
.clear:after,
|
||||
.entry-content:before,
|
||||
.entry-content:after,
|
||||
.comment-content:before,
|
||||
.comment-content:after,
|
||||
.site-header:before,
|
||||
.site-header:after,
|
||||
.site-content:before,
|
||||
.site-content:after,
|
||||
.site-footer:before,
|
||||
.site-footer:after {
|
||||
content: "";
|
||||
display: table;
|
||||
}
|
||||
|
||||
.clear:after,
|
||||
.entry-content:after,
|
||||
.comment-content:after,
|
||||
.site-header:after,
|
||||
.site-content:after,
|
||||
.site-footer:after {
|
||||
clear: both;
|
||||
}
|
79
msd2/wordpress/wp-content/themes/myoos/less/_s/elements.less
Normal file
79
msd2/wordpress/wp-content/themes/myoos/less/_s/elements.less
Normal file
@ -0,0 +1,79 @@
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
*,
|
||||
*:before,
|
||||
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
|
||||
box-sizing: inherit;
|
||||
}
|
||||
|
||||
body {
|
||||
background: @color__background-body; /* Fallback for when there is no custom background color defined. */
|
||||
}
|
||||
|
||||
blockquote:before,
|
||||
blockquote:after,
|
||||
q:before,
|
||||
q:after {
|
||||
content: "";
|
||||
}
|
||||
|
||||
blockquote,
|
||||
q {
|
||||
quotes: "" "";
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
hr {
|
||||
background-color: @color__background-hr;
|
||||
border: 0;
|
||||
height: 1px;
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
ul, ol {
|
||||
margin: 0 0 1.5em 3em;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: disc;
|
||||
}
|
||||
|
||||
ol {
|
||||
list-style: decimal;
|
||||
}
|
||||
|
||||
li > ul,
|
||||
li > ol {
|
||||
margin-bottom: 0;
|
||||
margin-left: 1.5em;
|
||||
}
|
||||
|
||||
dt {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin: 0 1.5em 1.5em;
|
||||
}
|
||||
|
||||
img {
|
||||
height: auto; /* Make sure images are scaled correctly. */
|
||||
max-width: 100%; /* Adhere to container width. */
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
table {
|
||||
margin: 0 0 1.5em;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: bold;
|
||||
}
|
69
msd2/wordpress/wp-content/themes/myoos/less/_s/forms.less
Normal file
69
msd2/wordpress/wp-content/themes/myoos/less/_s/forms.less
Normal file
@ -0,0 +1,69 @@
|
||||
button,
|
||||
input[type="button"],
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
border: 1px solid;
|
||||
border-color: @color__border-button;
|
||||
border-radius: 3px;
|
||||
background: @color__background-button;
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
|
||||
color: rgba(0, 0, 0, .8);
|
||||
font-size: 12px;
|
||||
font-size: 0.75rem;
|
||||
line-height: 1;
|
||||
padding: .6em 1em .4em;
|
||||
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
|
||||
}
|
||||
|
||||
button:hover,
|
||||
input[type="button"]:hover,
|
||||
input[type="reset"]:hover,
|
||||
input[type="submit"]:hover {
|
||||
border-color: @color__border-button-hover;
|
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
|
||||
}
|
||||
|
||||
button:focus,
|
||||
input[type="button"]:focus,
|
||||
input[type="reset"]:focus,
|
||||
input[type="submit"]:focus,
|
||||
button:active,
|
||||
input[type="button"]:active,
|
||||
input[type="reset"]:active,
|
||||
input[type="submit"]:active {
|
||||
border-color: @color__border-button-focus;
|
||||
box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
input[type="text"],
|
||||
input[type="email"],
|
||||
input[type="url"],
|
||||
input[type="password"],
|
||||
input[type="search"],
|
||||
textarea {
|
||||
color: @color__text-input;
|
||||
border: 1px solid @color__border-input;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
input[type="text"]:focus,
|
||||
input[type="email"]:focus,
|
||||
input[type="url"]:focus,
|
||||
input[type="password"]:focus,
|
||||
input[type="search"]:focus,
|
||||
textarea:focus {
|
||||
color: @color__text-input-focus;
|
||||
}
|
||||
|
||||
input[type="text"],
|
||||
input[type="email"],
|
||||
input[type="url"],
|
||||
input[type="password"],
|
||||
input[type="search"] {
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
textarea {
|
||||
padding-left: 3px;
|
||||
width: 100%;
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
/* Globally hidden elements when Infinite Scroll is supported and in use. */
|
||||
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
|
||||
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
|
||||
.infinity-end.neverending .site-footer {
|
||||
display: block;
|
||||
}
|
87
msd2/wordpress/wp-content/themes/myoos/less/_s/media.less
Normal file
87
msd2/wordpress/wp-content/themes/myoos/less/_s/media.less
Normal file
@ -0,0 +1,87 @@
|
||||
.page-content .wp-smiley,
|
||||
.entry-content .wp-smiley,
|
||||
.comment-content .wp-smiley {
|
||||
border: none;
|
||||
margin-bottom: 0;
|
||||
margin-top: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* Make sure embeds and iframes fit their containers. */
|
||||
embed,
|
||||
iframe,
|
||||
object {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
## Captions
|
||||
--------------------------------------------------------------*/
|
||||
.wp-caption {
|
||||
margin-bottom: 1.5em;
|
||||
max-width: 100%;
|
||||
|
||||
img[class*="wp-image-"] {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.wp-caption-text {
|
||||
margin: 0.8075em 0;
|
||||
}
|
||||
}
|
||||
|
||||
.wp-caption-text {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
## Galleries
|
||||
--------------------------------------------------------------*/
|
||||
.gallery {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
.gallery-item {
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
vertical-align: top;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.gallery-columns-2 .gallery-item {
|
||||
max-width: 50%;
|
||||
}
|
||||
|
||||
.gallery-columns-3 .gallery-item {
|
||||
max-width: 33.33%;
|
||||
}
|
||||
|
||||
.gallery-columns-4 .gallery-item {
|
||||
max-width: 25%;
|
||||
}
|
||||
|
||||
.gallery-columns-5 .gallery-item {
|
||||
max-width: 20%;
|
||||
}
|
||||
|
||||
.gallery-columns-6 .gallery-item {
|
||||
max-width: 16.66%;
|
||||
}
|
||||
|
||||
.gallery-columns-7 .gallery-item {
|
||||
max-width: 14.28%;
|
||||
}
|
||||
|
||||
.gallery-columns-8 .gallery-item {
|
||||
max-width: 12.5%;
|
||||
}
|
||||
|
||||
.gallery-columns-9 .gallery-item {
|
||||
max-width: 11.11%;
|
||||
}
|
||||
|
||||
.gallery-caption {
|
||||
display: block;
|
||||
}
|
424
msd2/wordpress/wp-content/themes/myoos/less/_s/mormalize.less
Normal file
424
msd2/wordpress/wp-content/themes/myoos/less/_s/mormalize.less
Normal file
@ -0,0 +1,424 @@
|
||||
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
||||
|
||||
//
|
||||
// 1. Set default font family to sans-serif.
|
||||
// 2. Prevent iOS and IE text size adjust after device orientation change,
|
||||
// without disabling user zoom.
|
||||
//
|
||||
|
||||
html {
|
||||
font-family: sans-serif; // 1
|
||||
-ms-text-size-adjust: 100%; // 2
|
||||
-webkit-text-size-adjust: 100%; // 2
|
||||
}
|
||||
|
||||
//
|
||||
// Remove default margin.
|
||||
//
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
// HTML5 display definitions
|
||||
// ==========================================================================
|
||||
|
||||
//
|
||||
// Correct `block` display not defined for any HTML5 element in IE 8/9.
|
||||
// Correct `block` display not defined for `details` or `summary` in IE 10/11
|
||||
// and Firefox.
|
||||
// Correct `block` display not defined for `main` in IE 11.
|
||||
//
|
||||
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
main,
|
||||
menu,
|
||||
nav,
|
||||
section,
|
||||
summary {
|
||||
display: block;
|
||||
}
|
||||
|
||||
//
|
||||
// 1. Correct `inline-block` display not defined in IE 8/9.
|
||||
// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
|
||||
//
|
||||
|
||||
audio,
|
||||
canvas,
|
||||
progress,
|
||||
video {
|
||||
display: inline-block; // 1
|
||||
vertical-align: baseline; // 2
|
||||
}
|
||||
|
||||
//
|
||||
// Prevent modern browsers from displaying `audio` without controls.
|
||||
// Remove excess height in iOS 5 devices.
|
||||
//
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
//
|
||||
// Address `[hidden]` styling not present in IE 8/9/10.
|
||||
// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
|
||||
//
|
||||
|
||||
[hidden],
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
// Links
|
||||
// ==========================================================================
|
||||
|
||||
//
|
||||
// Remove the gray background color from active links in IE 10.
|
||||
//
|
||||
|
||||
a {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
//
|
||||
// Improve readability of focused elements when they are also in an
|
||||
// active/hover state.
|
||||
//
|
||||
|
||||
a:active,
|
||||
a:hover {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
// Text-level semantics
|
||||
// ==========================================================================
|
||||
|
||||
//
|
||||
// Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
||||
//
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
//
|
||||
// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
|
||||
//
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
//
|
||||
// Address styling not present in Safari and Chrome.
|
||||
//
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
//
|
||||
// Address variable `h1` font-size and margin within `section` and `article`
|
||||
// contexts in Firefox 4+, Safari, and Chrome.
|
||||
//
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
//
|
||||
// Address styling not present in IE 8/9.
|
||||
//
|
||||
|
||||
mark {
|
||||
background: #ff0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
//
|
||||
// Address inconsistent and variable font size in all browsers.
|
||||
//
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
//
|
||||
// Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
||||
//
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
// Embedded content
|
||||
// ==========================================================================
|
||||
|
||||
//
|
||||
// Remove border when inside `a` element in IE 8/9/10.
|
||||
//
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
//
|
||||
// Correct overflow not hidden in IE 9/10/11.
|
||||
//
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
// Grouping content
|
||||
// ==========================================================================
|
||||
|
||||
//
|
||||
// Address margin not present in IE 8/9 and Safari.
|
||||
//
|
||||
|
||||
figure {
|
||||
margin: 1em 40px;
|
||||
}
|
||||
|
||||
//
|
||||
// Address differences between Firefox and other browsers.
|
||||
//
|
||||
|
||||
hr {
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
//
|
||||
// Contain overflow in all browsers.
|
||||
//
|
||||
|
||||
pre {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
//
|
||||
// Address odd `em`-unit font size rendering in all browsers.
|
||||
//
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {
|
||||
font-family: monospace, monospace;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
// Forms
|
||||
// ==========================================================================
|
||||
|
||||
//
|
||||
// Known limitation: by default, Chrome and Safari on OS X allow very limited
|
||||
// styling of `select`, unless a `border` property is set.
|
||||
//
|
||||
|
||||
//
|
||||
// 1. Correct color not being inherited.
|
||||
// Known issue: affects color of disabled elements.
|
||||
// 2. Correct font properties not being inherited.
|
||||
// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
|
||||
//
|
||||
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
color: inherit; // 1
|
||||
font: inherit; // 2
|
||||
margin: 0; // 3
|
||||
}
|
||||
|
||||
//
|
||||
// Address `overflow` set to `hidden` in IE 8/9/10/11.
|
||||
//
|
||||
|
||||
button {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
//
|
||||
// Address inconsistent `text-transform` inheritance for `button` and `select`.
|
||||
// All other form control elements do not inherit `text-transform` values.
|
||||
// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
|
||||
// Correct `select` style inheritance in Firefox.
|
||||
//
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
//
|
||||
// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
||||
// and `video` controls.
|
||||
// 2. Correct inability to style clickable `input` types in iOS.
|
||||
// 3. Improve usability and consistency of cursor style between image-type
|
||||
// `input` and others.
|
||||
//
|
||||
|
||||
button,
|
||||
html input[type="button"], // 1
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
-webkit-appearance: button; // 2
|
||||
cursor: pointer; // 3
|
||||
}
|
||||
|
||||
//
|
||||
// Re-set default cursor for disabled elements.
|
||||
//
|
||||
|
||||
button[disabled],
|
||||
html input[disabled] {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
//
|
||||
// Remove inner padding and border in Firefox 4+.
|
||||
//
|
||||
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
//
|
||||
// Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
||||
// the UA stylesheet.
|
||||
//
|
||||
|
||||
input {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
//
|
||||
// It's recommended that you don't attempt to style these elements.
|
||||
// Firefox's implementation doesn't respect box-sizing, padding, or width.
|
||||
//
|
||||
// 1. Address box sizing set to `content-box` in IE 8/9/10.
|
||||
// 2. Remove excess padding in IE 8/9/10.
|
||||
//
|
||||
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
box-sizing: border-box; // 1
|
||||
padding: 0; // 2
|
||||
}
|
||||
|
||||
//
|
||||
// Fix the cursor style for Chrome's increment/decrement buttons. For certain
|
||||
// `font-size` values of the `input`, it causes the cursor style of the
|
||||
// decrement button to change from `default` to `text`.
|
||||
//
|
||||
|
||||
input[type="number"]::-webkit-inner-spin-button,
|
||||
input[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
//
|
||||
// 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
||||
// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
|
||||
//
|
||||
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield; // 1
|
||||
box-sizing: content-box; //2
|
||||
}
|
||||
|
||||
//
|
||||
// Remove inner padding and search cancel button in Safari and Chrome on OS X.
|
||||
// Safari (but not Chrome) clips the cancel button when the search input has
|
||||
// padding (and `textfield` appearance).
|
||||
//
|
||||
|
||||
input[type="search"]::-webkit-search-cancel-button,
|
||||
input[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
//
|
||||
// Define consistent border, margin, and padding.
|
||||
//
|
||||
|
||||
fieldset {
|
||||
border: 1px solid #c0c0c0;
|
||||
margin: 0 2px;
|
||||
padding: 0.35em 0.625em 0.75em;
|
||||
}
|
||||
|
||||
//
|
||||
// 1. Correct `color` not being inherited in IE 8/9/10/11.
|
||||
// 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
||||
//
|
||||
|
||||
legend {
|
||||
border: 0; // 1
|
||||
padding: 0; // 2
|
||||
}
|
||||
|
||||
//
|
||||
// Remove default vertical scrollbar in IE 8/9/10/11.
|
||||
//
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
//
|
||||
// Don't inherit the `font-weight` (applied by a rule above).
|
||||
// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
|
||||
//
|
||||
|
||||
optgroup {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
// Tables
|
||||
// ==========================================================================
|
||||
|
||||
//
|
||||
// Remove most spacing between table cells.
|
||||
//
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
padding: 0;
|
||||
}
|
135
msd2/wordpress/wp-content/themes/myoos/less/_s/navigation.less
Normal file
135
msd2/wordpress/wp-content/themes/myoos/less/_s/navigation.less
Normal file
@ -0,0 +1,135 @@
|
||||
/*--------------------------------------------------------------
|
||||
## Links
|
||||
--------------------------------------------------------------*/
|
||||
a {
|
||||
color: @color__link;
|
||||
|
||||
&:visited {
|
||||
color: @color__link-visited;
|
||||
}
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
color: @color__link-hover;
|
||||
}
|
||||
|
||||
|
||||
&:focus {
|
||||
outline: thin dotted;
|
||||
}
|
||||
|
||||
&:hover,
|
||||
&:active {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
## Menus
|
||||
--------------------------------------------------------------*/
|
||||
.main-navigation {
|
||||
clear: both;
|
||||
display: block;
|
||||
float: left;
|
||||
width: 100%;
|
||||
|
||||
ul {
|
||||
display: none;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding-left: 0;
|
||||
|
||||
ul {
|
||||
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
|
||||
float: left;
|
||||
position: absolute;
|
||||
top: 1.5em;
|
||||
left: -999em;
|
||||
z-index: 99999;
|
||||
|
||||
ul {
|
||||
left: -999em;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
li {
|
||||
&:hover > ul,
|
||||
&.focus > ul {
|
||||
left: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
:hover > a,
|
||||
.focus > a {
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a.focus {
|
||||
}
|
||||
}
|
||||
|
||||
li:hover > ul,
|
||||
li.focus > ul {
|
||||
left: auto;
|
||||
}
|
||||
}
|
||||
li {
|
||||
float: left;
|
||||
position: relative;
|
||||
|
||||
&:hover > a,
|
||||
&.focus > a {
|
||||
}
|
||||
}
|
||||
a {
|
||||
display: block;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.current_page_item > a,
|
||||
.current-menu-item > a,
|
||||
.current_page_ancestor > a {
|
||||
}
|
||||
}
|
||||
|
||||
/* Small menu. */
|
||||
.menu-toggle,
|
||||
.main-navigation.toggled ul {
|
||||
display: block;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 37.5em) {
|
||||
.menu-toggle {
|
||||
display: none;
|
||||
}
|
||||
.main-navigation ul {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.comment-navigation,
|
||||
.posts-navigation,
|
||||
.post-navigation {
|
||||
|
||||
.site-main & {
|
||||
margin: 0 0 1.5em;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
& .nav-previous {
|
||||
float: left;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
& .nav-next {
|
||||
float: right;
|
||||
text-align: right;
|
||||
width: 50%;
|
||||
}
|
||||
}
|
50
msd2/wordpress/wp-content/themes/myoos/less/_s/site.less
Normal file
50
msd2/wordpress/wp-content/themes/myoos/less/_s/site.less
Normal file
@ -0,0 +1,50 @@
|
||||
/*--------------------------------------------------------------
|
||||
## Posts and pages
|
||||
--------------------------------------------------------------*/
|
||||
.sticky {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.hentry {
|
||||
margin: 0 0 1.5em;
|
||||
}
|
||||
|
||||
.byline,
|
||||
.updated:not(.published){
|
||||
display: none;
|
||||
}
|
||||
|
||||
.single .byline,
|
||||
.group-blog .byline {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.page-content,
|
||||
.entry-content,
|
||||
.entry-summary {
|
||||
margin: 1.5em 0 0;
|
||||
}
|
||||
|
||||
.page-links {
|
||||
clear: both;
|
||||
margin: 0 0 1.5em;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
## Asides
|
||||
--------------------------------------------------------------*/
|
||||
.blog .format-aside .entry-title,
|
||||
.archive .format-aside .entry-title {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
## Comments
|
||||
--------------------------------------------------------------*/
|
||||
.comment-content a {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.bypostauthor {
|
||||
display: block;
|
||||
}
|
||||
|
@ -0,0 +1,95 @@
|
||||
//
|
||||
// Font sizes and colors
|
||||
// --------------------------------------------------
|
||||
|
||||
|
||||
body,
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
color: @color__text-main;
|
||||
font-family: @font__main;
|
||||
font-size: 16px;
|
||||
font-size: 1rem;
|
||||
line-height: @font__line-height-body;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
b, strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
dfn, cite, em, i {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 0 1.5em;
|
||||
}
|
||||
|
||||
address {
|
||||
margin: 0 0 1.5em;
|
||||
}
|
||||
|
||||
pre {
|
||||
background: @color__background-pre;
|
||||
font-family: @font__pre;
|
||||
font-size: 15px;
|
||||
font-size: 0.9375rem;
|
||||
line-height: @font__line-height-pre;
|
||||
margin-bottom: 1.6em;
|
||||
max-width: 100%;
|
||||
overflow: auto;
|
||||
padding: 1.6em;
|
||||
}
|
||||
|
||||
|
||||
code, kbd, tt, var {
|
||||
font-family: @font__code;
|
||||
font-size: 15px;
|
||||
font-size: 0.9375rem;
|
||||
}
|
||||
|
||||
|
||||
abbr, acronym {
|
||||
border-bottom: 1px dotted @color__border-abbr;
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
mark, ins {
|
||||
background: @color__background-ins;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
sup,
|
||||
sub {
|
||||
font-size: 75%;
|
||||
height: 0;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sup {
|
||||
bottom: 1ex;
|
||||
}
|
||||
|
||||
sub {
|
||||
top: .5ex;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 75%;
|
||||
}
|
||||
|
||||
big {
|
||||
font-size: 125%;
|
||||
}
|
13
msd2/wordpress/wp-content/themes/myoos/less/_s/widgets.less
Normal file
13
msd2/wordpress/wp-content/themes/myoos/less/_s/widgets.less
Normal file
@ -0,0 +1,13 @@
|
||||
.widget {
|
||||
margin: 0 0 1.5em;
|
||||
|
||||
/* Make sure select elements fit in widgets */
|
||||
select {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
/* Search widget */
|
||||
.widget_search .search-submit {
|
||||
display: none;
|
||||
}
|
43
msd2/wordpress/wp-content/themes/myoos/less/config.less
Normal file
43
msd2/wordpress/wp-content/themes/myoos/less/config.less
Normal file
@ -0,0 +1,43 @@
|
||||
//
|
||||
// Variables
|
||||
// --------------------------------------------------
|
||||
|
||||
|
||||
//== Colors
|
||||
//
|
||||
|
||||
@color__background-body: #fff;
|
||||
@color__background-screen: #f1f1f1;
|
||||
@color__background-hr: #ccc;
|
||||
@color__background-button: #e6e6e6;
|
||||
@color__background-pre: #eee;
|
||||
@color__background-ins: #fff9c0;
|
||||
|
||||
@color__text-screen: #21759b;
|
||||
@color__text-input: #666;
|
||||
@color__text-input-focus: #111;
|
||||
@color__link: royalblue;
|
||||
@color__link-visited: purple;
|
||||
@color__link-hover: midnightblue;
|
||||
@color__text-main: #656565;
|
||||
|
||||
@color__border-button: #ccc #ccc #bbb;
|
||||
@color__border-button-hover: #ccc #bbb #aaa;
|
||||
@color__border-button-focus: #aaa #bbb #bbb;
|
||||
@color__border-input: #ccc;
|
||||
@color__border-abbr: #666;
|
||||
|
||||
//== Typography
|
||||
//
|
||||
//## Font, line-height, and color for body text, headings, and more.
|
||||
|
||||
@font__main: "Source Sans Pro", sans-serif;
|
||||
@font__code: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
|
||||
@font__pre: "Courier 10 Pitch", Courier, monospace;
|
||||
@font__line-height-body: 1.5;
|
||||
@font__line-height-pre: 1.6;
|
||||
|
||||
|
||||
|
||||
@size__site-main: 100%;
|
||||
@size__site-sidebar: 25%;
|
18
msd2/wordpress/wp-content/themes/myoos/less/flexslider.less
Normal file
18
msd2/wordpress/wp-content/themes/myoos/less/flexslider.less
Normal file
@ -0,0 +1,18 @@
|
||||
/*
|
||||
* jQuery FlexSlider v2.5.0
|
||||
* http://www.woothemes.com/flexslider/
|
||||
*
|
||||
* Copyright 2012 WooThemes
|
||||
* Free to use under the GPLv2 and later license.
|
||||
* http://www.gnu.org/licenses/gpl-2.0.html
|
||||
*
|
||||
* Contributing author: Tyler Smith (@mbmufffin)
|
||||
*
|
||||
*/
|
||||
@import "flexslider/variables.less";
|
||||
@import "flexslider/mixins.less";
|
||||
@import "flexslider/font.less";
|
||||
@import "flexslider/resets.less";
|
||||
@import "flexslider/base.less";
|
||||
@import "flexslider/theme.less";
|
||||
@import "flexslider/responsive.less";
|
@ -0,0 +1,77 @@
|
||||
/* ====================================================================================================================
|
||||
* BASE STYLES
|
||||
* ====================================================================================================================*/
|
||||
|
||||
|
||||
.flexslider {
|
||||
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
.slides {
|
||||
|
||||
> li {
|
||||
|
||||
display: none;
|
||||
-webkit-backface-visibility: hidden;
|
||||
|
||||
}
|
||||
|
||||
img{
|
||||
|
||||
width: 100%;
|
||||
display: block;
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Clearfix for the .slides element
|
||||
//
|
||||
|
||||
&:after{
|
||||
|
||||
content: "\0020";
|
||||
display: block;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
line-height: 0;
|
||||
height: 0;
|
||||
|
||||
|
||||
}
|
||||
|
||||
html[xmlns] &{
|
||||
|
||||
display: block;
|
||||
|
||||
}
|
||||
|
||||
* html &{
|
||||
|
||||
height: 1%;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
//
|
||||
// No JavaScript Fallback
|
||||
// If you are not using another script, such as Modernizr, make sure you
|
||||
// include js that eliminates this class on page load
|
||||
//
|
||||
|
||||
|
||||
.no-js &{
|
||||
|
||||
> li{
|
||||
|
||||
&:first-child{
|
||||
|
||||
display: block;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
/* ====================================================================================================================
|
||||
* FONT-FACE
|
||||
* ====================================================================================================================*/
|
||||
|
||||
|
||||
@font-face {
|
||||
|
||||
font-family: '@{font-name}';
|
||||
src:url('@{font-path}/@{font-file-name}.eot');
|
||||
src:url('@{font-path}/@{font-file-name}.eot?#iefix') format('embedded-opentype'),
|
||||
url('@{font-path}/@{font-file-name}.woff') format('woff'),
|
||||
url('@{font-path}/@{font-file-name}.ttf') format('truetype'),
|
||||
url('@{font-path}/@{font-file-name}.svg#flexslider-icon') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
//
|
||||
// Transition
|
||||
//
|
||||
|
||||
.transition( @duration: @default-duration, @easing: @default-easing ) {
|
||||
|
||||
-webkit-transition: all @duration @easing;
|
||||
-moz-transition: all @duration @easing;
|
||||
-ms-transition: all @duration @easing;
|
||||
-o-transition: all @duration @easing;
|
||||
transition: all @duration @easing;
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Border-radius
|
||||
//
|
||||
|
||||
.border-radius( @radius: @default-border-radius ){
|
||||
|
||||
-webkit-border-radius: @arguments;
|
||||
-moz-border-radius: @arguments;
|
||||
border-radius: @arguments;
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Box-shadow
|
||||
//
|
||||
|
||||
.box-shadow( @x-axis: @default-box-shadow-x-axis, @y-axis: @default-box-shadow-y-axis, @blur: @default-box-shadow-blur, @color: @default-box-shadow-color, @inset: @default-box-shadow-inset ) {
|
||||
|
||||
-webkit-box-shadow: @inset @x-axis @y-axis @blur @color;
|
||||
-moz-box-shadow: @inset @x-axis @y-axis @blur @color;
|
||||
-o-box-shadow: @inset @x-axis @y-axis @blur @color;
|
||||
box-shadow: @inset @x-axis @y-axis @blur @color;
|
||||
|
||||
}
|
@ -0,0 +1,33 @@
|
||||
/* ====================================================================================================================
|
||||
* RESETS
|
||||
* ====================================================================================================================*/
|
||||
|
||||
|
||||
.flex-container,
|
||||
.flex-slider {
|
||||
|
||||
a:hover,
|
||||
a:focus {
|
||||
|
||||
outline: none;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.slides,
|
||||
.slides > li,
|
||||
.flex-control-nav,
|
||||
.flex-direction-nav {
|
||||
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
|
||||
}
|
||||
|
||||
.flex-pauseplay span {
|
||||
|
||||
text-transform: capitalize;
|
||||
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
/* ====================================================================================================================
|
||||
* RESPONSIVE
|
||||
* ====================================================================================================================*/
|
||||
|
||||
@media screen and ( max-width: 860px ) {
|
||||
|
||||
.flex-direction-nav {
|
||||
|
||||
.flex-prev {
|
||||
|
||||
opacity: 1;
|
||||
left: 10px;
|
||||
|
||||
}
|
||||
|
||||
.flex-next {
|
||||
|
||||
opacity: 1;
|
||||
right: 10px;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,306 @@
|
||||
/* ====================================================================================================================
|
||||
* DEFAULT THEME
|
||||
* ====================================================================================================================*/
|
||||
|
||||
|
||||
.flexslider {
|
||||
|
||||
margin: @flexslider-margin;
|
||||
background: @flexslider-bg;
|
||||
border: @flexslider-border;
|
||||
position: relative;
|
||||
zoom: 1;
|
||||
|
||||
.border-radius( @flexslider-border-radius );
|
||||
.box-shadow( @flexslider-box-shadow-x-axis, @flexslider-box-shadow-y-axis, @flexslider-box-shadow-blur, @flexslider-box-shadow-color, @flexslider-box-shadow-inset);
|
||||
|
||||
.slides {
|
||||
|
||||
zoom: 1;
|
||||
|
||||
img {
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.flex-viewport {
|
||||
|
||||
max-height: @flex-viewport-max-height;
|
||||
|
||||
.transition();
|
||||
|
||||
.loading &{
|
||||
|
||||
max-height: @flex-viewport-loading-max-height;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.carousel li {
|
||||
|
||||
margin-right: 5px;
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Direction Nav
|
||||
//
|
||||
|
||||
.flex-direction-nav {
|
||||
|
||||
*height: 0;
|
||||
|
||||
|
||||
//
|
||||
// Global styles
|
||||
//
|
||||
|
||||
a {
|
||||
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
margin: -20px 0 0;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
z-index: 10;
|
||||
overflow: hidden;
|
||||
opacity: 0;
|
||||
cursor: pointer;
|
||||
color: @flex-direction-nav-color;
|
||||
text-shadow: @flex-direction-nav-text-shadow;
|
||||
|
||||
.transition( 0.3s, ease-in-out );
|
||||
|
||||
&:before {
|
||||
|
||||
font-family: "@{font-name}";
|
||||
font-size: 40px;
|
||||
display: inline-block;
|
||||
content: @flex-direction-nav-icon-prev;
|
||||
color: @flex-direction-nav-icon-color;
|
||||
text-shadow: @flex-direction-nav-icon-text-shadow;
|
||||
|
||||
}
|
||||
|
||||
&.flex-next:before {
|
||||
|
||||
content: @flex-direction-nav-icon-next;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Prev
|
||||
//
|
||||
|
||||
.flex-prev {
|
||||
|
||||
left: -50px;
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Next
|
||||
//
|
||||
|
||||
.flex-next {
|
||||
|
||||
right: -50px;
|
||||
text-align: right;
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Hover states
|
||||
//
|
||||
|
||||
.flexslider:hover &{
|
||||
|
||||
.flex-prev {
|
||||
|
||||
opacity: 0.7;
|
||||
left: 10px;
|
||||
|
||||
&:hover{
|
||||
|
||||
opacity: 1;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.flex-next {
|
||||
|
||||
opacity: 0.7;
|
||||
right: 10px;
|
||||
|
||||
&:hover{
|
||||
|
||||
opacity: 1;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Disabled
|
||||
//
|
||||
|
||||
.flex-disabled {
|
||||
|
||||
opacity: 0!important;
|
||||
filter: alpha(opacity=0);
|
||||
cursor: default;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Pause/Play
|
||||
//
|
||||
|
||||
.flex-pauseplay a {
|
||||
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
position: absolute;
|
||||
bottom: 5px;
|
||||
left: 10px;
|
||||
opacity: 0.8;
|
||||
z-index: 10;
|
||||
overflow: hidden;
|
||||
cursor: pointer;
|
||||
color: #000;
|
||||
|
||||
&:before {
|
||||
|
||||
font-family: "@{font-name}";
|
||||
font-size: 20px;
|
||||
display: inline-block;
|
||||
content: @flex-pauseplay-icon-pause;
|
||||
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
||||
opacity: 1;
|
||||
|
||||
}
|
||||
|
||||
&.flex-play:before {
|
||||
|
||||
content: @flex-pauseplay-icon-play;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Control Nav
|
||||
//
|
||||
|
||||
.flex-control-nav {
|
||||
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
bottom: -40px;
|
||||
text-align: center;
|
||||
|
||||
li {
|
||||
|
||||
margin: 0 6px;
|
||||
display: inline-block;
|
||||
zoom: 1;
|
||||
*display: inline;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// Control paging
|
||||
//
|
||||
|
||||
.flex-control-paging li {
|
||||
|
||||
a {
|
||||
|
||||
width: 11px;
|
||||
height: 11px;
|
||||
display: block;
|
||||
background: #666;
|
||||
background: rgba(0,0,0,0.5);
|
||||
cursor: pointer;
|
||||
text-indent: -9999px;
|
||||
|
||||
.box-shadow( 0, 0, 3px, rgba(0,0,0,0.3), inset );
|
||||
.border-radius( 20px );
|
||||
|
||||
&:hover {
|
||||
|
||||
background: #333;
|
||||
background: rgba(0,0,0,0.7);
|
||||
|
||||
}
|
||||
|
||||
&.flex-active {
|
||||
|
||||
background: #000;
|
||||
background: rgba( 0, 0, 0, 0.9 );
|
||||
cursor: default;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.flex-control-thumbs {
|
||||
|
||||
margin: @flex-control-thumbs;
|
||||
position: static;
|
||||
overflow: hidden;
|
||||
|
||||
li {
|
||||
|
||||
width: 25%;
|
||||
float: left;
|
||||
margin: 0;
|
||||
|
||||
}
|
||||
|
||||
img {
|
||||
|
||||
width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
opacity: .7;
|
||||
cursor: pointer;
|
||||
|
||||
.transition();
|
||||
|
||||
&:hover {opacity: 1;}
|
||||
|
||||
}
|
||||
|
||||
.flex-active {
|
||||
|
||||
opacity: 1;
|
||||
cursor: default;
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,31 @@
|
||||
@font-path: "fonts";
|
||||
@font-name: "flexslider-icon";
|
||||
@font-file-name: "flexslider-icon";
|
||||
@default-duration: 1s;
|
||||
@default-easing: ease;
|
||||
@default-border-radius: 5px;
|
||||
@default-box-shadow-x-axis: 0;
|
||||
@default-box-shadow-y-axis: 1px;
|
||||
@default-box-shadow-blur: 2px;
|
||||
@default-box-shadow-color: rgba( 0, 0, 0, 0.2 );
|
||||
@default-box-shadow-inset: '';
|
||||
@flexslider-margin: 0 0 60px;
|
||||
@flexslider-bg: #fff;
|
||||
@flexslider-border: 4px solid #fff;
|
||||
@flexslider-border-radius: 4px;
|
||||
@flexslider-box-shadow-x-axis: 0;
|
||||
@flexslider-box-shadow-y-axis: 1px;
|
||||
@flexslider-box-shadow-blur: 4px;
|
||||
@flexslider-box-shadow-color: rgba( 0, 0, 0, 0.2 );
|
||||
@flexslider-box-shadow-inset: '';
|
||||
@flex-viewport-max-height: 2000px;
|
||||
@flex-viewport-loading-max-height: 300px;
|
||||
@flex-control-thumbs: 5px 0 0;
|
||||
@flex-direction-nav-color: rgba(0,0,0,0.8);
|
||||
@flex-direction-nav-text-shadow: 1px 1px 0 rgba( 255, 255, 255, 0.3 );
|
||||
@flex-direction-nav-icon-color: rgba(0,0,0,0.8);
|
||||
@flex-direction-nav-icon-text-shadow: 1px 1px 0 rgba( 255, 255, 255, 0.3 );
|
||||
@flex-direction-nav-icon-prev: '\f001';
|
||||
@flex-direction-nav-icon-next: '\f002';
|
||||
@flex-pauseplay-icon-play: '\f003';
|
||||
@flex-pauseplay-icon-pause: '\f004';
|
59
msd2/wordpress/wp-content/themes/myoos/less/style.less
Normal file
59
msd2/wordpress/wp-content/themes/myoos/less/style.less
Normal file
@ -0,0 +1,59 @@
|
||||
/*!
|
||||
* MyOOS v2.0.58
|
||||
*
|
||||
* Author: r23
|
||||
* Website: http://oos-shop.de
|
||||
*
|
||||
* Copyright (c) 2003 - 2015 by the MyOOS Development Team.
|
||||
* Released under the GNU General Public License
|
||||
*/
|
||||
|
||||
// Import Bootstrap
|
||||
// @import "bootstrap/bootstrap.less";
|
||||
|
||||
// Load fonts
|
||||
// @import url("https://fonts.googleapis.com/css?family=Open Sans:400,600,700italic,900,400italic,300");
|
||||
|
||||
// Import FontAwesome
|
||||
// @import "font-awesome/font-awesome.less";
|
||||
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
>>> TABLE OF CONTENTS:
|
||||
----------------------------------------------------------------
|
||||
# Typography
|
||||
# Elements
|
||||
# Forms
|
||||
# Navigation
|
||||
## Links
|
||||
## Menus
|
||||
# Accessibility
|
||||
# Alignments
|
||||
# Clearings
|
||||
# Widgets
|
||||
# Content
|
||||
## Posts and pages
|
||||
## Asides
|
||||
## Comments
|
||||
# Infinite scroll
|
||||
# Media
|
||||
## Captions
|
||||
## Galleries
|
||||
--------------------------------------------------------------*/
|
||||
|
||||
|
||||
// Import custom variables
|
||||
@import "config.less";
|
||||
|
||||
// Import the-phoenix
|
||||
@import "_s/typography.less"; // Font sizes and colors.
|
||||
@import "_s/elements.less";
|
||||
@import "_s/forms.less";
|
||||
@import "_s/navigation.less";
|
||||
@import "_s/accessibility.less";
|
||||
@import "_s/alignments.less";
|
||||
@import "_s/clearings.less";
|
||||
@import "_s/widgets.less";
|
||||
@import "_s/site.less";
|
||||
@import "_s/infinite-scroll.less";
|
||||
@import "_s/media.less";
|
Reference in New Issue
Block a user