2022-04-07 14:47:54 +02:00
|
|
|
// general styles
|
|
|
|
//----------------
|
|
|
|
//
|
|
|
|
// mods on fonts and typography
|
|
|
|
// not in foundation variables
|
|
|
|
// -----------------------------
|
2022-03-30 21:14:48 +02:00
|
|
|
|
2022-04-07 14:47:54 +02:00
|
|
|
h1,h2,h3,h4,h5,h6,
|
|
|
|
.h1,.h2,.h3,.h4,.h4,.h5,.h6,
|
|
|
|
button,.button,
|
|
|
|
header nav,
|
2022-03-30 21:14:48 +02:00
|
|
|
|
|
|
|
|
2022-04-07 14:47:54 +02:00
|
|
|
h1,h2,h3,h4,h5,h6,
|
|
|
|
.h1,.h2,.h3,.h4,.h4,.h5,.h6 {
|
|
|
|
font-variant:all-small-caps;
|
|
|
|
a {
|
|
|
|
color: $body-font-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.excerpt,.post-excerpt{
|
|
|
|
a {
|
|
|
|
color: $body-font-color;
|
|
|
|
&:hover {
|
|
|
|
p {
|
|
|
|
color: $anchor-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-30 21:14:48 +02:00
|
|
|
|
2022-04-07 14:47:54 +02:00
|
|
|
//
|
|
|
|
// main block
|
|
|
|
//--------------
|
|
|
|
|
|
|
|
|
|
|
|
main {
|
|
|
|
article {
|
|
|
|
@include xy-grid;
|
|
|
|
header {
|
|
|
|
@include xy-cell(12);
|
|
|
|
.entry-title {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
.entry-content {
|
|
|
|
@include breakpoint(small){
|
|
|
|
@include xy-cell(12);
|
|
|
|
padding: $global-padding*2 ;
|
|
|
|
margin:0 auto;
|
|
|
|
}
|
|
|
|
@include breakpoint(medium){
|
|
|
|
@include xy-cell(12);
|
|
|
|
padding: $global-padding*2 $global-padding*3;
|
|
|
|
max-width: 50rem;
|
|
|
|
margin:0 auto;
|
|
|
|
}
|
|
|
|
@include breakpoint(xlarge){
|
|
|
|
@include xy-cell(12);
|
|
|
|
max-width: 50rem;
|
|
|
|
padding: $global-padding*2 $global-padding*3;
|
|
|
|
font-size: $global-font-size*1.2;
|
|
|
|
margin: 0 auto;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
}
|
|
|
|
}
|
2022-03-30 21:14:48 +02:00
|
|
|
|
2022-03-29 16:15:20 +02:00
|
|
|
|
2022-04-07 14:47:54 +02:00
|
|
|
//
|
|
|
|
// category view and news
|
|
|
|
//--------------
|
2022-03-29 16:15:20 +02:00
|
|
|
|
2022-04-07 14:47:54 +02:00
|
|
|
.category-posts,.archive-posts {
|
|
|
|
@include xy-grid;
|
|
|
|
header,main,aside {
|
|
|
|
@include breakpoint(small){
|
|
|
|
@include xy-cell(12);
|
|
|
|
@include flex;
|
|
|
|
@include flex-align(center,top);
|
|
|
|
padding-top: $global-padding*3;
|
|
|
|
}
|
|
|
|
@include breakpoint(medium){
|
|
|
|
}
|
|
|
|
}
|
|
|
|
main {
|
|
|
|
@include xy-grid;
|
|
|
|
article{
|
|
|
|
text-align:center;
|
|
|
|
@include card-container();
|
|
|
|
@include breakpoint(small){
|
|
|
|
@include xy-cell(12);
|
|
|
|
}
|
|
|
|
@include breakpoint(medium){
|
|
|
|
@include xy-cell(6);
|
|
|
|
}
|
|
|
|
@include breakpoint(large){
|
|
|
|
@include xy-cell(4);
|
|
|
|
}
|
|
|
|
figure {
|
|
|
|
@include breakpoint(small){
|
2022-03-29 16:15:20 +02:00
|
|
|
@include xy-cell(12);
|
2022-04-07 14:47:54 +02:00
|
|
|
height: 58vw;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
background-image: url('../img/ARC-HIVE-logo.svg');
|
|
|
|
background-color: rgb(240,240,240);
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
@include breakpoint(medium){
|
|
|
|
height: 28vw;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
@include breakpoint(large){
|
|
|
|
height: 20vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.date {
|
|
|
|
height: 1rem;
|
|
|
|
padding-top: $global-padding*2;
|
|
|
|
}
|
|
|
|
.entry-title {
|
|
|
|
padding-top: $global-padding*2;
|
|
|
|
line-height: 0.7;
|
|
|
|
font-size: $global-font-size*1.5;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
}
|
|
|
|
aside {
|
|
|
|
@include breakpoint(small){
|
|
|
|
padding-top:0;
|
|
|
|
padding-bottom: $global-padding*3;
|
|
|
|
}
|
|
|
|
@include breakpoint(medium){
|
|
|
|
padding-top: $global-padding*3;
|
|
|
|
padding-bottom: 0;
|
2022-03-29 16:15:20 +02:00
|
|
|
|
2022-04-07 14:47:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
&.resources {
|
|
|
|
@include xy-grid;
|
|
|
|
header,main,aside {
|
|
|
|
}
|
|
|
|
main {
|
|
|
|
article{
|
2022-03-29 16:15:20 +02:00
|
|
|
@include breakpoint(small){
|
|
|
|
@include xy-cell(12);
|
|
|
|
}
|
|
|
|
@include breakpoint(medium){
|
2022-04-07 14:47:54 +02:00
|
|
|
@include xy-cell(1 of 3);
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
@include breakpoint(large){
|
|
|
|
@include xy-cell(1 of 5);
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
figure {
|
|
|
|
@include breakpoint(small){
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
@include breakpoint(medium){
|
|
|
|
height: 18vw;
|
|
|
|
}
|
|
|
|
@include breakpoint(large){
|
|
|
|
height: 10vw;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
}
|
|
|
|
}
|
2022-03-29 16:15:20 +02:00
|
|
|
|
2022-04-07 14:47:54 +02:00
|
|
|
// end category-posts
|
2022-03-29 16:15:20 +02:00
|
|
|
|
|
|
|
|
2022-04-07 14:47:54 +02:00
|
|
|
//
|
|
|
|
// collections category
|
|
|
|
//--------------
|
2022-03-30 21:14:48 +02:00
|
|
|
|
2022-04-07 14:47:54 +02:00
|
|
|
.collections-list {
|
|
|
|
@include xy-grid;
|
|
|
|
header,main,aside {
|
|
|
|
@include xy-cell(12);
|
|
|
|
@include flex;
|
|
|
|
@include flex-align(center,top);
|
|
|
|
padding: $global-padding*3 0;
|
|
|
|
}
|
|
|
|
header {
|
|
|
|
border-top: 1px solid $body-font-color;
|
|
|
|
padding: $global-padding*4 0;
|
|
|
|
}
|
|
|
|
main {
|
|
|
|
@include xy-grid;
|
|
|
|
article{
|
|
|
|
text-align:center;
|
|
|
|
@include card-container();
|
|
|
|
@include breakpoint(small){
|
|
|
|
@include xy-cell();
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
@include breakpoint(medium){
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
@include breakpoint(large){
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
}
|
|
|
|
aside {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// end news & resources category
|
2022-03-29 16:15:20 +02:00
|
|
|
|
2022-04-07 14:47:54 +02:00
|
|
|
//
|
|
|
|
// partners
|
|
|
|
// for big announcemnts
|
|
|
|
//---------------------
|
2022-03-29 16:15:20 +02:00
|
|
|
|
|
|
|
.partners {
|
|
|
|
.entry-content {
|
|
|
|
max-width: unset;
|
|
|
|
p {
|
|
|
|
padding-left: 30vw;
|
|
|
|
padding-bottom: 2rem;
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
border-bottom: 1px solid $body-font-color;
|
|
|
|
width: 100vw;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
padding-top: 2rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.alignleft {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.wp-block-image {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-07 14:47:54 +02:00
|
|
|
//
|
|
|
|
// hero
|
|
|
|
// for big announcemnts
|
|
|
|
//---------------------
|
2022-03-29 16:15:20 +02:00
|
|
|
|
|
|
|
|
2022-04-07 14:47:54 +02:00
|
|
|
.hero {
|
|
|
|
.slides {
|
|
|
|
@include xy-grid();
|
|
|
|
border-top: 2px solid $primary-color;
|
|
|
|
.slide {
|
|
|
|
@include xy-grid;
|
|
|
|
&.widget {
|
|
|
|
display: flex;
|
|
|
|
align-content: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
@include breakpoint(small){
|
|
|
|
width: 100vw;
|
|
|
|
margin: 0;
|
|
|
|
&.widget_text p,.textwidget {
|
|
|
|
padding: $global-padding * 2;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
&.widget_media_image {
|
|
|
|
overflow: hidden;
|
|
|
|
img {
|
|
|
|
width:100%;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
}
|
|
|
|
@include breakpoint(medium){
|
|
|
|
&.widget_text p,.textwidget {
|
|
|
|
max-width: 50rem;
|
|
|
|
margin:auto;
|
|
|
|
padding: $global-padding * 2;
|
|
|
|
//font-size: $global-font-size*1.3;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
}
|
|
|
|
@include breakpoint(large){
|
|
|
|
width: 50%;
|
|
|
|
//height: calc((50vw*9)/16);
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
overflow:hidden;
|
|
|
|
a {
|
|
|
|
@include flex;
|
|
|
|
@include flex-align (center,middle);
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
img {
|
|
|
|
//height: 100% !important;
|
|
|
|
//width: 100%;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
&.widget_text p,.textwidget {
|
|
|
|
font-size: $global-font-size*1.1;
|
|
|
|
padding: $global-padding * 2;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
}
|
|
|
|
@include breakpoint(xlarge){
|
|
|
|
&.widget_text p,.textwidget {
|
|
|
|
font-size: $global-font-size*1.15;
|
|
|
|
padding: $global-padding*3;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
}
|
|
|
|
@include breakpoint(xxlarge){
|
|
|
|
&.widget_text p,.textwidget {
|
|
|
|
font-size: $global-font-size*1.3;
|
|
|
|
padding: $global-padding*3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:nth-child(odd) {
|
|
|
|
background-color: $primary-color;
|
|
|
|
font-variant:all-small-caps;
|
|
|
|
* {
|
|
|
|
color: $white;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
}
|
|
|
|
color: $white;
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
@include breakpoint(medium){
|
|
|
|
max-width: 80%;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-08 01:10:36 +02:00
|
|
|
//&.announcement.top {
|
|
|
|
&.announcement {
|
|
|
|
.slide {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.widget_nav_menu,.widget_tag_cloud {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
.widget_tag_cloud {
|
|
|
|
h6 {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
a{
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
&.top.secondary {
|
|
|
|
align-content: center;
|
|
|
|
justify-content: center;
|
|
|
|
ul {
|
|
|
|
margin: 2rem 0;
|
|
|
|
}
|
|
|
|
a {
|
2022-04-08 01:10:36 +02:00
|
|
|
//border: 1px solid black;
|
|
|
|
//border-radius: 2rem;
|
|
|
|
//padding: 1rem;
|
|
|
|
//color:blue;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
}
|
|
|
|
aside {
|
|
|
|
@include xy-grid();
|
|
|
|
background-color: $secondary-color;
|
|
|
|
.slides {
|
|
|
|
width: 100%;
|
|
|
|
.slide {
|
|
|
|
width: 100%;
|
|
|
|
&:nth-child(odd) {
|
|
|
|
background-color: $secondary-color;
|
2022-03-29 16:15:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
nav {
|
|
|
|
@include xy-cell(auto);
|
|
|
|
@include flex;
|
|
|
|
@include flex-align(spaced,middle);
|
|
|
|
min-height: 6rem;
|
|
|
|
padding: $global-padding 0 ;
|
|
|
|
a {
|
|
|
|
color: $body-font-color;
|
|
|
|
}
|
|
|
|
.button {
|
|
|
|
justify-content:center;
|
|
|
|
}
|
|
|
|
}
|
2022-03-30 21:14:48 +02:00
|
|
|
}
|
2022-04-07 14:47:54 +02:00
|
|
|
//hero secondary
|
|
|
|
&.secondary {
|
|
|
|
border-top: none;
|
|
|
|
background-color: $secondary-color;
|
|
|
|
.slide{
|
|
|
|
figure {
|
|
|
|
background-color: unset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//end hero
|