Compare commits

..

5 Commits

9 changed files with 421 additions and 359 deletions

View File

@ -5,7 +5,7 @@
&::before { &::before {
content: ''; content: '';
display:inline-block; display:inline-block;
margin-top:-$global-padding; //margin-top:-$global-padding;
width: 100%; width: 100%;
height: $global-padding*5; height: $global-padding*5;
background-size: contain; background-size: contain;
@ -18,14 +18,13 @@
} }
&.arc-hive{ &.arc-hive{
&::before { &::before {
width: 10rem;
max-width: 10rem; max-width: 10rem;
background-image: url('../img/ARC-HIVE-logo.svg'); background-image: url('../img/ARC-HIVE-logo.svg');
} }
} }
&.eu{ &.eu{
&::before { &::before {
max-width: 15rem;
// background-image: url('../img/eu_flag_creative_europe_co_funded_black_right.svg');
background-image: url('../img/eu_flag_creative_europe_co_funded_left.svg'); background-image: url('../img/eu_flag_creative_europe_co_funded_left.svg');
} }
} }

View File

@ -1,4 +1,3 @@
//content {
// general styles // general styles
//---------------- //----------------
@ -149,6 +148,7 @@
.collections-list { .collections-list {
@include xy-grid; @include xy-grid;
width:100vw;
header,main{ header,main{
@include xy-cell(12); @include xy-cell(12);
@include flex; @include flex;
@ -163,12 +163,13 @@
main { main {
@include xy-grid; @include xy-grid;
article{ article{
// text-align:center;
@include card-container(); @include card-container();
@include breakpoint(small){ @include breakpoint(small){
@include xy-cell(); @include xy-cell();
font-size: $global-font-size*0.7;
} }
@include breakpoint(medium){ @include breakpoint(medium){
font-size: $global-font-size*1;
} }
@include breakpoint(large){ @include breakpoint(large){
} }
@ -181,12 +182,26 @@
} }
} }
.accordion-content { .accordion-content {
@include xy-grid(12); section {
@include xy-grid;
@include breakpoint(small){
figure { figure {
@include xy-cell(4); @include xy-cell(12);
} }
p { p {
@include xy-cell(6); @include xy-cell(12);
}
}
@include breakpoint(medium){
figure {
@include xy-cell(3);
}
p {
@include xy-cell(9);
}
}
@include breakpoint(large){
}
} }
} }
} }
@ -235,11 +250,12 @@
@include xy-grid(); @include xy-grid();
.slide { .slide {
@include xy-grid; @include xy-grid;
justify-content: center;
@include breakpoint(small){ @include breakpoint(small){
width: 100vw; width: 100vw;
margin: 0; margin: 0;
.textwidget {
padding: $global-padding * 3; padding: $global-padding * 3;
.textwidget {
} }
} }
@include breakpoint(medium){ @include breakpoint(medium){
@ -357,5 +373,10 @@
} }
//end hero //end hero
//} // omeka specific styles
// end content #user-bar {
width: 100%;
}
//end omeka specific styles

View File

@ -31,10 +31,20 @@ footer {
} }
&.eu { &.eu {
&::before { &::before {
@include breakpoint(small) {
// background-image: url('../img/eu_flag_creative_europe_co_funded_black_right.svg');
background-position-x: right;
max-width: 50vw;
margin-top:unset;
}
@include breakpoint(medium) {
background-position-x: left;
margin-top:unset; margin-top:unset;
max-width:100%; max-width:100%;
max-height: 4rem; max-height: 4rem;
} }
}
} }
} }
.copyright, .legal-credits { .copyright, .legal-credits {
@ -76,4 +86,3 @@ footer {
} }
} }
} }

View File

@ -6,13 +6,15 @@
@include breakpoint(small){ @include breakpoint(small){
@include xy-cell(12); @include xy-cell(12);
@include flex-align(center, middle); @include flex-align(center, middle);
padding: $global-padding*2 $global-padding;
min-width: 14rem;
text-align: center; text-align: center;
} }
@include breakpoint (medium) { @include breakpoint (medium) {
padding: $global-padding*2 $global-padding;
}
@include breakpoint(large){
@include xy-cell(shrink); @include xy-cell(shrink);
@include flex-align(left, middle); @include flex-align(left, middle);
// min-width: 14rem;
text-align: unset; text-align: unset;
} }
} }
@ -32,17 +34,26 @@
padding: 0; padding: 0;
font-size: 0.8rem; font-size: 0.8rem;
} }
.menu {
justify-content: center;
a {
padding: $global-padding*0.7 $global-padding*0.5;
}
}
} }
@include breakpoint(medium) { @include breakpoint(medium) {
menu {
font-size: $global-font-size*1.5;
}
}
@include breakpoint(large) {
@include xy-cell(auto); @include xy-cell(auto);
@include flex; @include flex;
@include flex-align(right, middle); @include flex-align(right, middle);
menu { menu {
margin: inherit; margin: inherit;
padding: inherit; padding: inherit;
font-size: $global-font-size*1.5;
} }
} }
} }
} }

View File

@ -17,13 +17,14 @@
{{> header}} {{> header}}
</header> </header>
{{> section-hero-omeka}} {{> section-hero-omeka}}
<article>
<main> <main>
<article>
{{> body}} {{> body}}
</main> </article>
<aside> <aside>
</aside> </aside>
</article> </main>
<footer> <footer>
{{> footer}} {{> footer}}

View File

@ -1,13 +1,12 @@
<footer class="">
<section class="subsection"> <section class="subsection">
<aside class="site-brand arc-hive"> <aside class="site-brand arc-hive">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home" class=""> <a href="/" rel="home" class="">
<h1 class="site-name"> <h1 class="site-name">
<?php bloginfo( 'name' ); ?> arcHIVE
</h1> </h1>
<h2 class="site-description"> <h2 class="site-description">
<?php bloginfo( 'description' ); ?> an integrative digital bio-art platform
</h2> </h2>
</a> </a>
</aside> </aside>
@ -52,10 +51,8 @@
Hosted, maintained and coded by <a href="https://hangar.org">Hangar</a> Hosted, maintained and coded by <a href="https://hangar.org">Hangar</a>
</aside> </aside>
<aside class="double"> <aside class="double">
<?php dynamic_sidebar( 'footer-widgets' ); ?>
</aside> </aside>
<aside class="legal-credits"> <aside class="legal-credits">
Visual identity by <a href="http://oficinadedisseny.net/">Oficina de disseny</a> Visual identity by <a href="http://oficinadedisseny.net/">Oficina de disseny</a>
</aside> </aside>
</section> </section>
</footer>

View File

@ -1,7 +1,11 @@
<main class=""> <main class="">
<a href="/" role="banner" class="site-brand arc-hive"> <a href="/" role="banner" class="site-brand arc-hive">
<h1 class="site-name">arcHIVE</h1> <h1 class="site-name">
<h2 class="site-description">an integrative digital bio-art platform</h2> arcHIVE
</h1>
<h2 class="site-description">
an integrative digital bio-art platform
</h2>
</a> </a>
</main> </main>
<nav> <nav>

View File

@ -17,10 +17,12 @@
</ul> </ul>
</a> </a>
<aside class="accordion-content" data-tab-content> <aside class="accordion-content" data-tab-content>
<section>
<figure> <figure>
</figure> </figure>
<p> <p>
</p> </p>
</section>
</aside> </aside>
</li> </li>
<li class="accordion-item" data-accordion-item> <li class="accordion-item" data-accordion-item>
@ -33,9 +35,13 @@
</ul> </ul>
</a> </a>
<aside class="accordion-content" data-tab-content> <aside class="accordion-content" data-tab-content>
<section>
<figure> <figure>
</figure> </figure>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eaque unde quaerat reprehenderit ipsa ipsam, adipisci facere repellendus impedit at, quisquam dicta optio veniam quia nesciunt, inventore quod in neque magni?</p> <p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eaque unde quaerat reprehenderit ipsa ipsam, adipisci facere repellendus impedit at, quisquam dicta optio veniam quia nesciunt, inventore quod in neque magni?
</p>
</section>
</aside> </aside>
</li> </li>
@ -49,12 +55,18 @@
</ul> </ul>
</a> </a>
<aside class="accordion-content" data-tab-content> <aside class="accordion-content" data-tab-content>
<section>
<figure>
<img src="https://dev-archive.hangar.org/files/large/81/3D-Panoramic-Landscape-Image-768x288.jpg"> <img src="https://dev-archive.hangar.org/files/large/81/3D-Panoramic-Landscape-Image-768x288.jpg">
<p>You can extend the functionality of Omeka S by writing an add-on component called a module. Zend Framework provides a substantial framework for writing modules, but Omeka S provides extra structure that makes the modules installable, upgradeable, and integratable. You can extend the functionality of Omeka S by writing an add-on component called a module. Zend Framework provides a substantial framework for writing modules, but Omeka S provides extra structure that makes the modules installable, upgradeable, and integratable.</p> </figure>
<p>
You can extend the functionality of Omeka S by writing an add-on component called a module. Zend Framework provides a substantial framework for writing modules, but Omeka S provides extra structure that makes the modules installable, upgradeable, and integratable. You can extend the functionality of Omeka S by writing an add-on component called a module. Zend Framework provides a substantial framework for writing modules, but Omeka S provides extra structure that makes the modules installable, upgradeable, and integratable.
<br> <br>
<button class="go_to_site_button" onclick="window.location.href = '/s/modules'"> <button class="go_to_site_button" onclick="window.location.href = '/s/modules'">
View View
</button> </button>
</p>
</section>
</aside> </aside>
</li> </li>
<li class="accordion-item" data-accordion-item> <li class="accordion-item" data-accordion-item>
@ -67,14 +79,18 @@
</ul> </ul>
</a> </a>
<aside class="accordion-content" data-tab-content> <aside class="accordion-content" data-tab-content>
<section>
<figure>
</figure>
<p>
Here, some footnotes of structural imagination <br> Here, some footnotes of structural imagination <br>
<button class="go_to_site_button" onclick="window.location.href = '/s/trees-and-cells'"> <button class="go_to_site_button" onclick="window.location.href = '/s/trees-and-cells'">
View View
</button> </button>
</p>
</section>
</aside> </aside>
</li> </li>
<li class="accordion-item" data-accordion-item> <li class="accordion-item" data-accordion-item>
<a href="#" class="accordion-title"> <a href="#" class="accordion-title">
<ul class=""> <ul class="">
@ -85,6 +101,7 @@
</ul> </ul>
</a> </a>
<aside class="accordion-content" data-tab-content> <aside class="accordion-content" data-tab-content>
<section>
<figure> <figure>
</figure> </figure>
<p> <p>
@ -92,6 +109,7 @@
View View
</button> </button>
</p> </p>
</section>
</aside> </aside>
</li> </li>
<li class="accordion-item" data-accordion-item> <li class="accordion-item" data-accordion-item>
@ -104,6 +122,7 @@
</ul> </ul>
</a> </a>
<aside class="accordion-content" data-tab-content> <aside class="accordion-content" data-tab-content>
<section>
<figure> <figure>
<img src="https://dev-archive.hangar.org/files/large/89/scary-werewolf.jpg"> <img src="https://dev-archive.hangar.org/files/large/89/scary-werewolf.jpg">
</figure> </figure>
@ -113,6 +132,7 @@
View View
</button> </button>
</p> </p>
</section>
</aside> </aside>
</li> </li>
</ul> </ul>

View File

@ -1,7 +1,7 @@
<section class="hero omeka"> <section class="hero omeka">
<main class="slides"> <main class="slides">
<section class="slide"> <section class="slide">
<p>ARC-HIVE is a curatorial space that gathers artworks that work in the continuum of biomateriality, from DNA, proteins, and cells to full organisms. They can be manipulation, modification or (re)creation of life and living processes.</p> <!-- <p>ARC-HIVE is a curatorial space that gathers artworks that work in the continuum of biomateriality, from DNA, proteins, and cells to full organisms. They can be manipulation, modification or (re)creation of life and living processes.</p> -->
<figure> <figure>
<img src="{{root}}assets/img/ARC-HIVE-logo.svg" class="logo"/> <img src="{{root}}assets/img/ARC-HIVE-logo.svg" class="logo"/>
</figure> </figure>