This commit is contained in:
armansansd
2021-06-23 16:37:53 +02:00
parent c2e9a2be04
commit 457df22b80
16 changed files with 295 additions and 27 deletions

View File

@@ -0,0 +1,11 @@
@media (min-width: 48rem) {
:root {
font-size: calc(1rem + ((1vw - .48rem) * 1.389));
/* .48rem = viewportWidthMinimum /100 */
/* 1.389rem = 100 * fontSizeDifference / viewportWidthDifference */ } }
@media (min-width: 120em) {
:root {
font-size: 2rem; } }
/*# sourceMappingURL=variables.css.map */

View File

@@ -0,0 +1 @@
{"version":3,"file":"variables.css","sources":["setup/variables.scss"],"sourcesContent":["$font-extra: 2rem;\n$font-big: 1.2rem;\n$font-medium: .8rem;\n$font-normal: .6rem;\n@media (min-width: 48rem) {\n\t:root {\n\t font-size: calc(1rem + ((1vw - .48rem) * 1.389));\n\t /* .48rem = viewportWidthMinimum /100 */\n\t /* 1.389rem = 100 * fontSizeDifference / viewportWidthDifference */\n\t}\n }\n \n @media (min-width: 120em) {\n\t:root {\n\t font-size: 2rem;\n\t}\n }"],"mappings":"AAIA,MAAM,EAAL,SAAS,EAAE,KAAK;EAChB,AAAA,KAAK,CAAC;IACJ,SAAS,EAAE,qCAAI;IACf,wCAAwC;IACxC,mEAAmE,EACpE;;AAGA,MAAM,EAAL,SAAS,EAAE,KAAK;EAClB,AAAA,KAAK,CAAC;IACJ,SAAS,EAAE,IAAK,GACjB","names":[]}

View File

@@ -999,6 +999,16 @@ table {
.slick-arrow.slick-hidden {
display: none; }
@media (min-width: 48rem) {
:root {
font-size: calc(1rem + ((1vw - .48rem) * 1.389));
/* .48rem = viewportWidthMinimum /100 */
/* 1.389rem = 100 * fontSizeDifference / viewportWidthDifference */ } }
@media (min-width: 120em) {
:root {
font-size: 2rem; } }
@font-face {
font-family: 'duke';
src: url("../fonts/Duke_Fill.otf") format("opentype");
@@ -1140,9 +1150,50 @@ table {
body {
font-family: "trueno";
font-size: 0.6rem;
font-weight: 300;
line-height: 1.5; }
main h2 {
text-transform: uppercase;
font-family: 'duke';
font-size: 2.3rem; }
a {
color: inherit; }
#header-top-right .header_top_rigth_container {
position: absolute;
top: 0;
left: 0;
width: 100%;
background: #a1a1a1;
display: grid;
grid-template-columns: 5% 30% 30% 30% 5%;
padding: 1rem 0;
z-index: 100;
line-height: 2; }
#header-top-right .header_top_rigth_container nav {
grid-column-start: 2; }
#header-top-right .header_top_rigth_container a {
text-decoration: none;
font-weight: 400; }
#header-top-right .header_top_rigth_container a:hover {
text-decoration: underline; }
#header-top-right .header_top_rigth_container h2 {
font-weight: 100;
margin-bottom: .3rem; }
#header-top-right .header_top_rigth_container .is-active {
font-weight: 800; }
#header-top-right .header_top_rigth_container #block-views-block-programmes-block-2 .views-row {
width: 100%; }
footer * {
word-wrap: break-word; }
iframe {
display: none; }
/*pages*/
#header-top-right {
background: yellow; }
@@ -1153,4 +1204,15 @@ body {
background: lightblue;
text-align: center; }
article h2 {
font-family: "trueno";
font-weight: 600;
font-size: 0.8rem;
text-transform: inherit; }
article h3, article h4, article h5, article h6 {
font-family: "trueno";
font-weight: 600;
font-size: 0.8rem; }
/*# sourceMappingURL=styles.css.map */

File diff suppressed because one or more lines are too long