initial commit
This commit is contained in:
75
sass/_font-mixins.scss
Normal file
75
sass/_font-mixins.scss
Normal file
@@ -0,0 +1,75 @@
|
||||
/* ========================================================================== */
|
||||
/* FONT-MIXINS */
|
||||
/* ========================================================================== */
|
||||
|
||||
@mixin menutext {
|
||||
font: 900 4rem "Westeinde Caption";
|
||||
color: #000;
|
||||
-webkit-text-stroke: #fff 1px;
|
||||
&:hover {
|
||||
color: #fff;
|
||||
}
|
||||
@media #{$smalldesktop} {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin home-title {
|
||||
font: bold 3rem "Westeinde Caption";
|
||||
color: #000;
|
||||
@media #{$mobile-landscape} {
|
||||
font-size: 2.5rem !important;
|
||||
}
|
||||
@media #{$smalldesktop} {
|
||||
font-size: 5rem;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin home-metadata {
|
||||
font: bold 1rem "Westeinde Caption";
|
||||
color: #000;
|
||||
}
|
||||
|
||||
@mixin bedocircle {
|
||||
font: 900 1rem "Westeinde Caption";
|
||||
color: transparent;
|
||||
-webkit-text-stroke: #000 1px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
@mixin single-title {
|
||||
font: bold 3rem "Butler";
|
||||
color: #000;
|
||||
@media #{$smalldesktop} {
|
||||
font-size: 7rem;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin single-title2 {
|
||||
font: bold 3rem "Butler";
|
||||
color: #000;
|
||||
@media #{$smalldesktop} {
|
||||
font-size: 5rem;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin single-metadata {
|
||||
font: bold 1rem "Westeinde Caption";
|
||||
@media #{$smalldesktop} {
|
||||
font: 900 2rem "Westeinde Caption";
|
||||
color: #fff;
|
||||
-webkit-text-stroke: #000 1px;
|
||||
}
|
||||
}
|
||||
|
||||
//képaláírás
|
||||
@mixin captiontext {
|
||||
font: 900 1rem "Westeinde Caption";
|
||||
color: #fff;
|
||||
-webkit-text-stroke-width: 1px;
|
||||
}
|
||||
|
||||
@mixin single-quote {
|
||||
font: bold 1.8rem "Butler";
|
||||
color: #000;
|
||||
}
|
||||
128
sass/_fonts.scss
Normal file
128
sass/_fonts.scss
Normal file
@@ -0,0 +1,128 @@
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* BUTLER */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
|
||||
@font-face {
|
||||
font-family: "Butler";
|
||||
src: url("../fonts/Butler-UltraLight.woff2") format("woff2"), url("../fonts/Butler-UltraLight.woff") format("woff");
|
||||
font-weight: 200;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Butler";
|
||||
src: url("../fonts/Butler-Light.woff2") format("woff2"), url("../fonts/Butler-Light.woff") format("woff");
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Butler";
|
||||
src: url("../fonts/Butler.woff2") format("woff2"), url("../fonts/Butler.woff") format("woff");
|
||||
font-weight: normal; //400
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Butler";
|
||||
src: url("../fonts/Butler-Medium.woff2") format("woff2"), url("../fonts/Butler-Medium.woff") format("woff");
|
||||
font-weight: 500;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Butler";
|
||||
src: url("../fonts/Butler-Bold.woff2") format("woff2"), url("../fonts/Butler-Bold.woff") format("woff");
|
||||
font-weight: bold; //700
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Butler";
|
||||
src: url("../fonts/Butler-ExtraBold.woff2") format("woff2"), url("../fonts/Butler-ExtraBold.woff") format("woff");
|
||||
font-weight: 800;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Butler";
|
||||
src: url("../fonts/Butler-Black.woff2") format("woff2"), url("../fonts/Butler-Black.woff") format("woff");
|
||||
font-weight: 900;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* westeinde */
|
||||
/* -------------------------------------------------------------------------- */
|
||||
|
||||
@font-face {
|
||||
font-family: "Westeinde Caption";
|
||||
src: url("../fonts/WesteindeCaption-Thin.woff2") format("woff2"),
|
||||
url("../fonts/WesteindeCaption-Thin.woff") format("woff");
|
||||
font-weight: 100;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Westeinde Caption";
|
||||
src: url("../fonts/WesteindeCaption-ThinItalic.woff2") format("woff2"),
|
||||
url("../fonts/WesteindeCaption-ThinItalic.woff") format("woff");
|
||||
font-weight: 100;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Westeinde Caption";
|
||||
src: url("../fonts/WesteindeCaption-Light.woff2") format("woff2"),
|
||||
url("../fonts/WesteindeCaption-Light.woff") format("woff");
|
||||
font-weight: 300;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Westeinde Caption";
|
||||
src: url("../fonts/WesteindeCaption-LightItalic.woff2") format("woff2"),
|
||||
url("../fonts/WesteindeCaption-LightItalic.woff") format("woff");
|
||||
font-weight: 300;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Westeinde Caption";
|
||||
src: url("../fonts/WesteindeCaption-Regular.woff2") format("woff2"),
|
||||
url("../fonts/WesteindeCaption-Regular.woff") format("woff");
|
||||
font-weight: 500;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Westeinde Caption";
|
||||
src: url("../fonts/WesteindeCaption-Bold.woff2") format("woff2"),
|
||||
url("../fonts/WesteindeCaption-Bold.woff") format("woff");
|
||||
font-weight: bold; //700
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Westeinde Caption";
|
||||
src: url("../fonts/WesteindeCaption-BoldItalic.woff2") format("woff2"),
|
||||
url("../fonts/WesteindeCaption-BoldItalic.woff") format("woff");
|
||||
font-weight: bold; //700
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Westeinde Caption";
|
||||
src: url("../fonts/WesteindeCaption-Heavy.woff2") format("woff2"),
|
||||
url("../fonts/WesteindeCaption-Heavy.woff") format("woff");
|
||||
font-weight: 900;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Westeinde Caption";
|
||||
src: url("../fonts/WesteindeCaption-HeavyItalic.woff2") format("woff2"),
|
||||
url("../fonts/WesteindeCaption-HeavyItalic.woff") format("woff");
|
||||
font-weight: 900;
|
||||
font-style: italic;
|
||||
}
|
||||
147
sass/_print.scss
Normal file
147
sass/_print.scss
Normal file
@@ -0,0 +1,147 @@
|
||||
/*------------------------------------*\
|
||||
MISC
|
||||
\*------------------------------------*/
|
||||
|
||||
::selection {
|
||||
background:#04A4CC;
|
||||
color:#FFF;
|
||||
text-shadow:none;
|
||||
}
|
||||
::-webkit-selection {
|
||||
background:#04A4CC;
|
||||
color:#FFF;
|
||||
text-shadow:none;
|
||||
}
|
||||
::-moz-selection {
|
||||
background:#04A4CC;
|
||||
color:#FFF;
|
||||
text-shadow:none;
|
||||
}
|
||||
|
||||
/*------------------------------------*\
|
||||
WORDPRESS CORE
|
||||
\*------------------------------------*/
|
||||
|
||||
.alignnone {
|
||||
margin:5px 20px 20px 0;
|
||||
}
|
||||
.aligncenter,
|
||||
div.aligncenter {
|
||||
display:block;
|
||||
margin:5px auto 5px auto;
|
||||
}
|
||||
.alignright {
|
||||
float:right;
|
||||
margin:5px 0 20px 20px;
|
||||
}
|
||||
.alignleft {
|
||||
float:left;
|
||||
margin:5px 20px 20px 0;
|
||||
}
|
||||
a img.alignright {
|
||||
float:right;
|
||||
margin:5px 0 20px 20px;
|
||||
}
|
||||
a img.alignnone {
|
||||
margin:5px 20px 20px 0;
|
||||
}
|
||||
a img.alignleft {
|
||||
float:left;
|
||||
margin:5px 20px 20px 0;
|
||||
}
|
||||
a img.aligncenter {
|
||||
display:block;
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
.wp-caption {
|
||||
background:#FFF;
|
||||
border:1px solid #F0F0F0;
|
||||
max-width:96%;
|
||||
padding:5px 3px 10px;
|
||||
text-align:center;
|
||||
}
|
||||
.wp-caption.alignnone {
|
||||
margin:5px 20px 20px 0;
|
||||
}
|
||||
.wp-caption.alignleft {
|
||||
margin:5px 20px 20px 0;
|
||||
}
|
||||
.wp-caption.alignright {
|
||||
margin:5px 0 20px 20px;
|
||||
}
|
||||
.wp-caption img {
|
||||
border:0 none;
|
||||
height:auto;
|
||||
margin:0;
|
||||
max-width:98.5%;
|
||||
padding:0;
|
||||
width:auto;
|
||||
}
|
||||
.wp-caption .wp-caption-text,
|
||||
.gallery-caption {
|
||||
font-size:11px;
|
||||
line-height:17px;
|
||||
margin:0;
|
||||
padding:0 4px 5px;
|
||||
}
|
||||
.sticky {
|
||||
|
||||
}
|
||||
.bypostauthor {
|
||||
|
||||
}
|
||||
|
||||
/*------------------------------------*\
|
||||
PRINT
|
||||
\*------------------------------------*/
|
||||
|
||||
@media print {
|
||||
* {
|
||||
background:transparent !important;
|
||||
color:#000 !important;
|
||||
box-shadow:none !important;
|
||||
text-shadow:none !important;
|
||||
}
|
||||
a,
|
||||
a:visited {
|
||||
text-decoration:underline;
|
||||
}
|
||||
a[href]:after {
|
||||
content:" (" attr(href) ")";
|
||||
}
|
||||
abbr[title]:after {
|
||||
content:" (" attr(title) ")";
|
||||
}
|
||||
.ir a:after,
|
||||
a[href^="javascript:"]:after,
|
||||
a[href^="#"]:after {
|
||||
content:"";
|
||||
}
|
||||
pre,blockquote {
|
||||
border:1px solid #999;
|
||||
page-break-inside:avoid;
|
||||
}
|
||||
thead {
|
||||
display:table-header-group;
|
||||
}
|
||||
tr,img {
|
||||
page-break-inside:avoid;
|
||||
}
|
||||
img {
|
||||
max-width:100% !important;
|
||||
}
|
||||
@page {
|
||||
margin:0.5cm;
|
||||
}
|
||||
p,
|
||||
h2,
|
||||
h3 {
|
||||
orphans:3;
|
||||
widows:3;
|
||||
}
|
||||
h2,
|
||||
h3 {
|
||||
page-break-after:avoid;
|
||||
}
|
||||
}
|
||||
1060
sass/base.scss
Normal file
1060
sass/base.scss
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user