rra 6 years ago
parent
commit
0564872d7a
  1. 2
      README.md
  2. 4
      content/algologs.en.md
  3. 5
      content/algologs.nl.md
  4. BIN
      content/images/cbkrotterdam.png
  5. 25
      themes/varia/static/css/main.css
  6. 2
      themes/varia/templates/page.html

2
README.md

@ -1,5 +1,3 @@
# Varia website
## Cloning

4
content/algologs.en.md

@ -70,5 +70,9 @@ Varia - Gouwstraat 3, Rotterdam<br>
* [You should know a word by the compant it keeps](http://www.algolit.net/index.php/You_shall_know_a_word_by_the_company_it_keeps), graphs generated by word2vec
* [Crowd Embeddings](http://www.algolit.net/index.php/Crowd_Embeddings), a first-step into a case study of applied word-embeddings
----
The research project of Cristina Cochior is kindly supported by ![cbk rotterdam](/images/cbkrotterdam.png).

5
content/algologs.nl.md

@ -70,5 +70,10 @@ Varia - Gouwstraat 3, Rotterdam <br>
* [You should know a word by the compant it keeps](http://www.algolit.net/index.php/You_shall_know_a_word_by_the_company_it_keeps), grafieken gegenereerd door word2vec
* [Crowd Embeddings](http://www.algolit.net/index.php/Crowd_Embeddings), een eerste stap naar een case study rondom toegepaste woordinbeddingen
----
Het onderzoeksproject van Cristina Cochior is mede mogelijk gemaakt met een financiële bijdrage van CBK Rotterdam ![cbk rotterdam](/images/cbkrotterdam.png).

BIN
content/images/cbkrotterdam.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 607 B

25
themes/varia/static/css/main.css

@ -34,7 +34,7 @@ body{
min-width: 500px;
top:0px;
left:0px;
margin:0 auto 5em auto;
margin:14px auto 5em auto;
padding: 0px 15px;
font-family: "main", monospace;
font-size: 14px;
@ -172,35 +172,36 @@ header {
#stream{
display: inline-block;
position: absolute;
width: 100%;
}
#stream .container{
#stream a .container{
background-clip: padding-box;
background-position: center center;
background-size: cover;
height: 600px;
width: 100%;
background-color: black;
}
/* reset header img styles */
#stream .container img{
#stream a .container img{
min-width: none;
min-height: none;
width: none;
height: none;
}
#stream a{
display: block;
}
#stream.overview{
width: 100%;
}
/* #stream.overview .container{
margin: 0 1em 1em 0;
}*/
div.container:nth-child(2n) {
transform: skew(-2deg);
div#stream a:nth-child(odd) {
transform: skew(-2deg);
}
div.container:nth-child(2n+1) {
transform: skew(2deg);
div#stream a:nth-child(even) {
transform: skew(2deg);
}
#translation{

2
themes/varia/templates/page.html

@ -29,7 +29,7 @@
{% if page.slug == 'stream' %}
<div id="stream" class="overview">
{% for img in page.stream %}
<div class="container" style="background-image: url(https://vvvvvvaria.org/stream/{{ img }})"></div>
<a href="https://vvvvvvaria.org/stream/{{ img }}"><div class="container" style="background-image: url(https://vvvvvvaria.org/stream/{{ img }})"></div></a>
{% endfor %}
</div>
{% endif %}

Loading…
Cancel
Save