Now layout is fully bootstrap based
Added hover.css
This commit is contained in:
parent
ba8497fb71
commit
ed41988844
14 changed files with 5138 additions and 201 deletions
|
|
@ -1,36 +1,25 @@
|
|||
<footer class="site-footer">
|
||||
|
||||
<div class="wrapper">
|
||||
|
||||
<div class="footer-col-wrapper">
|
||||
<footer class="footer">
|
||||
|
||||
<div class="container-fluid">
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="col-md-3">
|
||||
<ul class="contact-list">
|
||||
<li><b>{{ site.title }}</b></li>
|
||||
<li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
|
||||
<li><p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p></li>
|
||||
<li><a href="{{site.facebook_link}}">Facebook</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6">
|
||||
<p class="text">{{ site.description }}</p>
|
||||
<div class="col-md-5 col-md-offset-2">
|
||||
<h4>{{ site.title }}</h4>
|
||||
<p>{{ site.description }}</p>
|
||||
<p><a href="mailto:{{ site.email }}">{{ site.email }}</a></p>
|
||||
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
|
||||
<a href="{{site.facebook_link}}">Facebook</a>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<b>Supported by</b>
|
||||
<ul class="contact-list">
|
||||
<h4>Supported by</h4>
|
||||
<div class="footer-supporters">
|
||||
<ul>
|
||||
<li><img src="/assets/panke_logo.png"></img></li>
|
||||
<li><img src="/assets/troika_logo.png"></img></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -10,13 +10,16 @@
|
|||
|
||||
<link rel="stylesheet" type="text/css" href="/bower_components/bootstrap/dist/css/bootstrap.min.css"/>
|
||||
<link rel="stylesheet" type="text/css" href="/bower_components/vegas/dist/jquery.vegas.min.css"/>
|
||||
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
|
||||
<link rel="stylesheet" href="{{ "/css/custom.css" | prepend: site.baseurl }}">
|
||||
<link rel="stylesheet" href="{{ "/css/hover.css" | prepend: site.baseurl }}">
|
||||
<link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
|
||||
|
||||
<script type="text/javascript" src="/bower_components/jquery/dist/jquery.min.js"></script>
|
||||
<script src="/bower_components/bootstrap/dist/js/bootstrap.min.js" type="text/javascript"></script>
|
||||
<script src="/bower_components/vegas/dist/jquery.vegas.min.js" type="text/javascript"></script>
|
||||
|
||||
<script type="text/javascript" src="/js/custom.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
var rnd=Math.floor(Math.random()*4);
|
||||
|
|
|
|||
|
|
@ -1,27 +1,25 @@
|
|||
<header class="site-header">
|
||||
<nav class="navbar navbar-default navbar-static-top">
|
||||
|
||||
<div class="wrapper">
|
||||
<div class="container-fluid">
|
||||
|
||||
<a class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</a>
|
||||
<div class="navbar-header">
|
||||
|
||||
<nav class="site-nav">
|
||||
<a href="#" class="menu-icon">
|
||||
<svg viewBox="0 0 18 15">
|
||||
<path fill="#424242" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
|
||||
<path fill="#424242" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484 h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
|
||||
<path fill="#424242" d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z"/>
|
||||
</svg>
|
||||
<a class="navbar-brand" href="/">
|
||||
<img alt="Logo" src="/assets/scope_logo.png">
|
||||
</a>
|
||||
|
||||
<div class="trigger">
|
||||
</div>
|
||||
|
||||
<div class="navbar-options">
|
||||
|
||||
{% for page in site.pages %}
|
||||
{% if page.title %}
|
||||
<a class="page-link" href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a>
|
||||
<a class="button hvr-sweep-to-top" href="{{ page.url | prepend: site.baseurl }}">{{ page.title }}</a>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</header>
|
||||
</div>
|
||||
|
||||
</nav>
|
||||
|
|
|
|||
|
|
@ -17,12 +17,14 @@ layout: default
|
|||
{% for talk in page.talks %}
|
||||
|
||||
<div class="talk_detail col-md-4">
|
||||
<div class="artist-media">
|
||||
{% if {{talk.media_artist_url}} %}
|
||||
<img src={{talk.media_artist_url}}></img>
|
||||
{% else %}
|
||||
<img src="/assets/no_artist_media.png"></img>
|
||||
<img class="artist_media" src="/assets/no_artist_media.png"></img>
|
||||
{% endif %}
|
||||
<h3 href={{talk.artist_url}}>{{talk.artist}}</h3>
|
||||
</div>
|
||||
<a href={{talk.artist_website}} target="_blank">{{talk.artist}}</a>
|
||||
<h4>{{talk.title}}</h4>
|
||||
<p>{{talk.description}}</p>
|
||||
<a href={{talk.video_url}}>Video</a>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
layout: event
|
||||
title: "Scope 30 @ B-Seite Mannheim / March 20th, 2014"
|
||||
number: 031
|
||||
number: 030
|
||||
date: 2014-03-20
|
||||
topics:
|
||||
location: "Cinema Quadrat"
|
||||
|
|
|
|||
13
about.html
13
about.html
|
|
@ -4,7 +4,11 @@ title: About
|
|||
permalink: /about/
|
||||
---
|
||||
|
||||
<div class="home">
|
||||
<div class="container-fluid">
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="col-md-8 col-md-offset-2">
|
||||
|
||||
<p>Scope is a monthly event happening every 2nd thursday a month in Berlin/DE.
|
||||
Scope is an artist-run initiative without financial benefits.
|
||||
|
|
@ -48,7 +52,12 @@ permalink: /about/
|
|||
<li><p>Rosa Teixidor / film maker, dancer
|
||||
idealpaar.net</p></li>
|
||||
|
||||
<li><p>Aude video performance & photography
|
||||
<li><p>Aude / video performance & photography
|
||||
http://aude-f.com/</p></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
34
archive.html
34
archive.html
|
|
@ -4,20 +4,34 @@ title: Archive
|
|||
permalink: /archive/
|
||||
---
|
||||
|
||||
<div class="home">
|
||||
<div class="wrapper container-fluid">
|
||||
|
||||
<h1 class="page-heading">Archive</h1>
|
||||
<div class="row">
|
||||
|
||||
<ul class="post-list">
|
||||
{% for event in site.posts %}
|
||||
{% for talk in event.talks %}
|
||||
<li>
|
||||
<h3>{{talk.artist}}</h3>
|
||||
</li>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
|
||||
<div class="col-md-3">
|
||||
|
||||
<div class="artist-media">
|
||||
{% if {{talk.media_artist_url}} %}
|
||||
<img src={{talk.media_artist_url}}></img>
|
||||
{% else %}
|
||||
<img class="artist_media" src="/assets/no_artist_media.png"></img>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div class="talk_detail">
|
||||
<h3><a class="button hvr-sweep-to-top" href={{talk.artist_website}} target="_blank">{{talk.artist}}</a></h3>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
BIN
assets/scope_logo.png
Normal file
BIN
assets/scope_logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 65 KiB |
109
css/custom.css
109
css/custom.css
|
|
@ -1,19 +1,57 @@
|
|||
body{
|
||||
color:#fff;
|
||||
font-family: 'Abel', sans-serif;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
h3{
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
a:hover{
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
.navbar-header{
|
||||
height: 70px;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.navbar-options{
|
||||
padding: 10px;
|
||||
float:right;
|
||||
}
|
||||
|
||||
.navbar-options a{
|
||||
margin-left: 10px;
|
||||
color: #000;
|
||||
padding: 10px;
|
||||
background: #CCC;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.navbar-brand img{
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
.navbar-header a{
|
||||
color:#000;
|
||||
}
|
||||
|
||||
.site-header{
|
||||
background:#fff;
|
||||
}
|
||||
|
||||
.site-footer{
|
||||
background:#fff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.artist-media {
|
||||
width: 100%;
|
||||
max-height: 200px;
|
||||
overflow: hidden;
|
||||
padding: 10px;
|
||||
background: #000;
|
||||
}
|
||||
|
||||
.artist-media img {
|
||||
|
|
@ -23,22 +61,81 @@ h3{
|
|||
.event{
|
||||
padding:10px;
|
||||
margin:10px;
|
||||
display:none;
|
||||
background: rgb(0, 0, 0) transparent;
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000, endColorstr=#66000000);
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000, endColorstr=#66000000)";
|
||||
}
|
||||
|
||||
.event :hover{
|
||||
.event h3{
|
||||
color: #fff;
|
||||
margin-top: 0px;
|
||||
font-size: 32px;
|
||||
}
|
||||
|
||||
.upcoming{
|
||||
background: #ccc;
|
||||
display: normal;
|
||||
}
|
||||
|
||||
.talk{
|
||||
padding:10px;
|
||||
background: #fff;
|
||||
height: 300px;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
.talk :hover{
|
||||
}
|
||||
|
||||
.talk_detail{
|
||||
padding:10px;
|
||||
background: #fff;
|
||||
margin-top:10px;
|
||||
}
|
||||
|
||||
.talk_detail h3{
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.talk_detail a{
|
||||
background: #fff;
|
||||
color: #000;
|
||||
margin: 0 auto;
|
||||
padding: 2px;
|
||||
float: center;
|
||||
}
|
||||
|
||||
.event-selector{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.event-selector ul{
|
||||
list-style:none;
|
||||
}
|
||||
|
||||
.event-selector li{
|
||||
float:left;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.event-selector a{
|
||||
display: block;
|
||||
color: #fff;
|
||||
text-size: 20px;
|
||||
}
|
||||
|
||||
.footer{
|
||||
margin-top: 20px;
|
||||
background: rgb(0, 0, 0) transparent;
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000, endColorstr=#66000000);
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000, endColorstr=#66000000)";
|
||||
}
|
||||
|
||||
.footer li{
|
||||
list-style-type:none;
|
||||
}
|
||||
|
||||
.footer-supporters li img{
|
||||
margin: 10px;
|
||||
height: 80px;
|
||||
float: left;
|
||||
}
|
||||
|
|
|
|||
12
css/hover-min.css
vendored
Executable file
12
css/hover-min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
4835
css/hover.css
Executable file
4835
css/hover.css
Executable file
File diff suppressed because it is too large
Load diff
|
|
@ -1,52 +0,0 @@
|
|||
---
|
||||
# Only the main Sass file needs front matter (the dashes are enough)
|
||||
---
|
||||
@charset "utf-8";
|
||||
|
||||
|
||||
|
||||
// Our variables
|
||||
$base-font-family: Helvetica, Arial, sans-serif;
|
||||
$base-font-size: 16px;
|
||||
$small-font-size: $base-font-size * 0.875;
|
||||
$base-line-height: 1.5;
|
||||
|
||||
$spacing-unit: 30px;
|
||||
|
||||
$text-color: #111;
|
||||
$background-color: #fdfdfd;
|
||||
$brand-color: #2a7ae2;
|
||||
|
||||
$grey-color: #828282;
|
||||
$grey-color-light: lighten($grey-color, 40%);
|
||||
$grey-color-dark: darken($grey-color, 25%);
|
||||
|
||||
// Width of the content area
|
||||
$content-width: 800px;
|
||||
|
||||
$on-palm: 600px;
|
||||
$on-laptop: 600px;
|
||||
|
||||
|
||||
|
||||
// Using media queries with like this:
|
||||
// @include media-query($on-palm) {
|
||||
// .wrapper {
|
||||
// padding-right: $spacing-unit / 2;
|
||||
// padding-left: $spacing-unit / 2;
|
||||
// }
|
||||
// }
|
||||
@mixin media-query($device) {
|
||||
@media screen and (max-width: $device) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Import partials from `sass_dir` (defaults to `_sass`)
|
||||
@import
|
||||
"base",
|
||||
"layout",
|
||||
"syntax-highlighting"
|
||||
;
|
||||
46
index.html
46
index.html
|
|
@ -1,24 +1,30 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
<div class="container-fluid">
|
||||
|
||||
<div class="home">
|
||||
<div class="row">
|
||||
|
||||
<div class="wrapper container-fluid">
|
||||
<div class="event-selector col-md-2 col-md-offset-1">
|
||||
<ul>
|
||||
{% for post in site.posts %}
|
||||
<li><a href="#">{{post.number}}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
{% for post in paginator.posts %}
|
||||
<div class="event-displayer col-md-7">
|
||||
|
||||
{% if post.upcoming %}
|
||||
<div class="row event upcoming">
|
||||
{% else %}
|
||||
<div class="row event">
|
||||
{% endif %}
|
||||
{% for post in site.posts %}
|
||||
|
||||
<div class="row event event-{{post.number}}">
|
||||
|
||||
<a href={{post.url}}><h3>{{post.title}}</h3></a>
|
||||
|
||||
{% for talk in post.talks %}
|
||||
|
||||
<div class="talk col-md-4">
|
||||
|
||||
<div class="artist-media">
|
||||
{% if {{talk.media_artist_url}} %}
|
||||
<img src={{talk.media_artist_url}}></img>
|
||||
|
|
@ -26,11 +32,14 @@ layout: default
|
|||
<img class="artist_media" src="/assets/no_artist_media.png"></img>
|
||||
{% endif %}
|
||||
</div>
|
||||
<a href={{talk.artist_website}} target="_blank">{{talk.artist}}</a>
|
||||
<p>{{talk.title}}</p>
|
||||
{% if {{talk.video_url}} %}
|
||||
<a href={{post.video_artist_url}}>Video</a>
|
||||
{% endif %}
|
||||
|
||||
<div class="talk_detail">
|
||||
<h3><a class="button hvr-sweep-to-top" href={{talk.artist_website}} target="_blank">{{talk.artist}}</a></h3>
|
||||
<h4>{{talk.title}}</h4>
|
||||
<p>{{talk.description}}</p>
|
||||
<a href={{talk.video_url}}>Video</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
{% endfor%}
|
||||
|
|
@ -39,9 +48,12 @@ layout: default
|
|||
|
||||
{% endfor%}
|
||||
|
||||
<div class="row pagination">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- <div class="row pagination">
|
||||
|
||||
<!-- Pagination links -->
|
||||
<div class="pagination">
|
||||
{% if paginator.previous_page %}
|
||||
<a href="{{ paginator.previous_page_path }}" class="previous">Previous</a>
|
||||
|
|
@ -56,8 +68,6 @@ layout: default
|
|||
{% endif %}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div> -->
|
||||
|
||||
</div>
|
||||
|
|
|
|||
20
js/custom.js
Normal file
20
js/custom.js
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
$(document).ready(function(){
|
||||
|
||||
var currentEvent = "038";
|
||||
|
||||
$('.event-'+currentEvent).show();
|
||||
|
||||
$('.event-selector li').on("mouseover",function(){
|
||||
$(this).attr("text-size","40px");
|
||||
});
|
||||
|
||||
$('.event-selector li').on("click",function(){
|
||||
var number = $(this).text();
|
||||
console.log(number);
|
||||
});
|
||||
|
||||
function loadEvent(eventNumber){
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue