Merge branch 'master' of https://git.xpub.nl/XPUB/issue.xpub.nl
After Width: | Height: | Size: 96 KiB |
After Width: | Height: | Size: 244 KiB |
After Width: | Height: | Size: 282 KiB |
After Width: | Height: | Size: 197 KiB |
After Width: | Height: | Size: 207 KiB |
After Width: | Height: | Size: 290 KiB |
After Width: | Height: | Size: 284 KiB |
After Width: | Height: | Size: 266 KiB |
After Width: | Height: | Size: 280 KiB |
After Width: | Height: | Size: 140 KiB |
After Width: | Height: | Size: 380 KiB |
After Width: | Height: | Size: 296 KiB |
After Width: | Height: | Size: 329 KiB |
After Width: | Height: | Size: 344 KiB |
After Width: | Height: | Size: 274 KiB |
After Width: | Height: | Size: 261 KiB |
After Width: | Height: | Size: 273 KiB |
After Width: | Height: | Size: 128 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 399 KiB |
After Width: | Height: | Size: 5.6 KiB |
@ -0,0 +1,89 @@
|
|||||||
|
;(function(){
|
||||||
|
var msg = "IRIS version 0.5";
|
||||||
|
var size = 14;
|
||||||
|
var circleY = 0.75; var circleX = 2;
|
||||||
|
var letter_spacing = 5;
|
||||||
|
var diameter = 10;
|
||||||
|
var rotation = 0.4;
|
||||||
|
var speed = 0.3;
|
||||||
|
|
||||||
|
if (!window.addEventListener && !window.attachEvent || !document.createElement) return;
|
||||||
|
|
||||||
|
msg = msg.split('');
|
||||||
|
var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
|
||||||
|
ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
|
||||||
|
|
||||||
|
o = document.createElement('div'), oi = document.createElement('div'),
|
||||||
|
b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement : document.body,
|
||||||
|
|
||||||
|
mouse = function(e){
|
||||||
|
e = e || window.event;
|
||||||
|
ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
|
||||||
|
xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
|
||||||
|
},
|
||||||
|
|
||||||
|
makecircle = function(){ // rotation/positioning
|
||||||
|
if(init.nopy){
|
||||||
|
o.style.top = (b || document.body).scrollTop + 'px';
|
||||||
|
o.style.left = (b || document.body).scrollLeft + 'px';
|
||||||
|
};
|
||||||
|
|
||||||
|
currStep -= rotation;
|
||||||
|
|
||||||
|
for (var d, i = n; i > -1; --i){ // makes the circle
|
||||||
|
|
||||||
|
d = document.getElementById('iemsg' + i).style;
|
||||||
|
d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) + 'px';
|
||||||
|
d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px';
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
drag = function(){ // makes the resistance
|
||||||
|
y[0] = Y[0] += (ymouse - Y[0]) * speed;
|
||||||
|
x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
|
||||||
|
for (var i = n; i > 0; --i){
|
||||||
|
y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
|
||||||
|
x[i] = X[i] += (x[i-1] - X[i]) * speed;
|
||||||
|
};
|
||||||
|
|
||||||
|
makecircle();
|
||||||
|
},
|
||||||
|
|
||||||
|
init = function(){ // appends message divs, & sets initial values for positioning arrays
|
||||||
|
|
||||||
|
if(!isNaN(window.pageYOffset)){
|
||||||
|
ymouse += window.pageYOffset;
|
||||||
|
xmouse += window.pageXOffset;
|
||||||
|
} else init.nopy = true;
|
||||||
|
for (var d, i = n; i > -1; --i){
|
||||||
|
|
||||||
|
d = document.createElement('div'); d.id = 'iemsg' + i;
|
||||||
|
d.style.height = d.style.width = a + 'px';
|
||||||
|
d.appendChild(document.createTextNode(msg[i]));
|
||||||
|
oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
o.appendChild(oi); document.body.appendChild(o);
|
||||||
|
setInterval(drag, 25);
|
||||||
|
},
|
||||||
|
|
||||||
|
ascroll = function(){
|
||||||
|
ymouse += window.pageYOffset;
|
||||||
|
xmouse += window.pageXOffset;
|
||||||
|
window.removeEventListener('scroll', ascroll, false);
|
||||||
|
};
|
||||||
|
|
||||||
|
o.id = 'outerCircleText'; o.style.fontSize = size + 'px';
|
||||||
|
|
||||||
|
if (window.addEventListener){
|
||||||
|
window.addEventListener('load', init, false);
|
||||||
|
document.addEventListener('mouseover', mouse, false);
|
||||||
|
document.addEventListener('mousemove', mouse, false);
|
||||||
|
if (/Apple/.test(navigator.vendor))
|
||||||
|
window.addEventListener('scroll', ascroll, false);
|
||||||
|
}
|
||||||
|
else if (window.attachEvent){
|
||||||
|
window.attachEvent('onload', init);
|
||||||
|
document.attachEvent('onmousemove', mouse);
|
||||||
|
};
|
||||||
|
})();
|
Before Width: | Height: | Size: 131 KiB After Width: | Height: | Size: 131 KiB |
@ -0,0 +1,80 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: "Vegur Regular";
|
||||||
|
src: url("fonts/Vegur-Regular.otf");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Vegur Light";
|
||||||
|
src: url("fonts/Vegur-Light.otf");
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
background-color: #9200e5;
|
||||||
|
background-image: url("img/iris.jpg");
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
background-size: 100%;
|
||||||
|
background-attachment: fixed;
|
||||||
|
font-size: 16px;
|
||||||
|
|
||||||
|
@media (max-width: 1000px) {
|
||||||
|
font-size: calc(12px + .4vw);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
text-align: center;
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 0 auto;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
font-family: "Vegur Regular", sans-serif;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box {
|
||||||
|
display: flex;
|
||||||
|
flex: 1 1 auto;
|
||||||
|
flex-direction: column;
|
||||||
|
text-align: center;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 12rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 6rem;
|
||||||
|
letter-spacing: -0.2rem;
|
||||||
|
line-height: 5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 3rem;
|
||||||
|
font-family: "Vegur Light";
|
||||||
|
letter-spacing: -0.1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
header p, footer p {
|
||||||
|
font-size: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
header p.italic, footer p.italic {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
main p {
|
||||||
|
line-height: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blink {
|
||||||
|
animation: blinker 1s step-end infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes blinker {
|
||||||
|
50% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
a, a:active, a:visited {
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
@ -0,0 +1,48 @@
|
|||||||
|
/* http://meyerweb.com/eric/tools/css/reset/
|
||||||
|
v2.0 | 20110126
|
||||||
|
License: none (public domain)
|
||||||
|
*/
|
||||||
|
|
||||||
|
html, body, div, span, applet, object, iframe,
|
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||||
|
a, abbr, acronym, address, big, cite, code,
|
||||||
|
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||||
|
small, strike, strong, sub, sup, tt, var,
|
||||||
|
b, u, i, center,
|
||||||
|
dl, dt, dd, ol, ul, li,
|
||||||
|
fieldset, form, label, legend,
|
||||||
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||||
|
article, aside, canvas, details, embed,
|
||||||
|
figure, figcaption, footer, header, hgroup,
|
||||||
|
menu, nav, output, ruby, section, summary,
|
||||||
|
time, mark, audio, video {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
font-size: 100%;
|
||||||
|
font: inherit;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
/* HTML5 display-role reset for older browsers */
|
||||||
|
article, aside, details, figcaption, figure,
|
||||||
|
footer, header, hgroup, menu, nav, section {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
ol, ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
blockquote, q {
|
||||||
|
quotes: none;
|
||||||
|
}
|
||||||
|
blockquote:before, blockquote:after,
|
||||||
|
q:before, q:after {
|
||||||
|
content: '';
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
@ -1,80 +1,340 @@
|
|||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Vegur Regular";
|
font-family: "Arial";
|
||||||
src: url("fonts/Vegur-Regular.otf");
|
src: url("font/arial.ttf");
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: normal;}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Arial Narrow";
|
||||||
|
src: url("font/Arial Narrow.ttf");
|
||||||
|
font-weight: 300;
|
||||||
|
font-style: normal;}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-size: calc(8px + 0.7vw);
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
scrollbar-width: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
a{
|
||||||
font-family: "Vegur Light";
|
text-decoration: none;
|
||||||
src: url("fonts/Vegur-Light.otf");
|
color: black;
|
||||||
|
display: inline;
|
||||||
|
clear: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
a:hover, a.get:hover, a.menus:hover{
|
||||||
background-color: #9200e5;
|
text-decoration: none;
|
||||||
background-image: url("img/iris.jpg");
|
color: #972fe8;
|
||||||
background-repeat: no-repeat;
|
}
|
||||||
background-position: center;
|
|
||||||
background-size: 100%;
|
|
||||||
background-attachment: fixed;
|
|
||||||
font-size: 16px;
|
|
||||||
|
|
||||||
@media (max-width: 1000px) {
|
a:visited{
|
||||||
font-size: calc(12px + .4vw);
|
text-decoration: none;
|
||||||
}
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
.back{
|
||||||
text-align: center;
|
margin-left: 30vw;
|
||||||
max-width: 800px;
|
width: 70vw;
|
||||||
margin: 0 auto;
|
height: 94vh;
|
||||||
font-size: 1.5rem;
|
position: fixed;
|
||||||
font-family: "Vegur Regular", sans-serif;
|
background-color: #dbdcde;
|
||||||
color: #ffffff;
|
}
|
||||||
|
|
||||||
|
#topdots{
|
||||||
|
position: fixed;
|
||||||
|
top: 0px;
|
||||||
|
height: 4vh;
|
||||||
|
width: 30vw;
|
||||||
|
background-color: #dbdcde;
|
||||||
|
}
|
||||||
|
|
||||||
|
#topdots img{
|
||||||
|
width: 80%;
|
||||||
|
margin-left: 10%;
|
||||||
|
margin-top: 1vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
.box {
|
#bottomdots{
|
||||||
display: flex;
|
position: fixed;
|
||||||
flex: 1 1 auto;
|
bottom: 6vh;
|
||||||
flex-direction: column;
|
height: 4vh;
|
||||||
|
width: 30vw;
|
||||||
|
background-color: #dbdcde;
|
||||||
|
}
|
||||||
|
|
||||||
|
#bottomdots img{
|
||||||
|
width: 80%;
|
||||||
|
margin-left: 10%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left{
|
||||||
|
position: fixed;
|
||||||
|
margin-top: 4vh;
|
||||||
|
height: 86vh;
|
||||||
|
width: 30vw;
|
||||||
|
background-color: #dbdcde;
|
||||||
|
}
|
||||||
|
|
||||||
|
#leftheader{
|
||||||
|
font-family: "Arial Narrow", Helvetica, sans-serif;
|
||||||
|
width: 100%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
align-items: center;
|
font-size: calc(6px + 0.5vw);
|
||||||
justify-content: center;
|
|
||||||
height: 12rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
.gallerywrapper{
|
||||||
font-size: 6rem;
|
margin-top: 4vh;
|
||||||
letter-spacing: -0.2rem;
|
margin-left: 10%;
|
||||||
line-height: 5rem;
|
width: 80%;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
.gallerywrapper img{
|
||||||
font-size: 3rem;
|
width: 100%;
|
||||||
font-family: "Vegur Light";
|
|
||||||
letter-spacing: -0.1rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
header p, footer p {
|
::-webkit-scrollbar {
|
||||||
font-size: 2rem;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
header p.italic, footer p.italic {
|
footer {
|
||||||
|
background-color: #972fe8;
|
||||||
|
color: white;
|
||||||
|
font-size: calc(6px + 0.7vw);
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0
|
||||||
|
width: 100vw;
|
||||||
|
height: 6vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box{
|
||||||
|
text-align: center;
|
||||||
|
width: 100vw;
|
||||||
|
height: 6vh;
|
||||||
|
line-height: 6vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
video{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
main{
|
||||||
|
position: fixed;
|
||||||
|
left: 30vw;
|
||||||
|
margin-top: 4vh;
|
||||||
|
margin-left: 3vw;
|
||||||
|
height: 75.5vh;
|
||||||
|
width: 64vw;
|
||||||
|
overflow:scroll;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right{
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
margin-top: 4vh;
|
||||||
|
width: 70vw;
|
||||||
|
left: 30vw;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.headeright{
|
||||||
|
font-family: "Arial", Helvetica, sans-serif;
|
||||||
|
width: 70vw;
|
||||||
|
font-size: calc(6px + 0.5vw);
|
||||||
|
}
|
||||||
|
|
||||||
|
.block{
|
||||||
|
background-color: #dbdcde;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text{
|
||||||
|
line-height: 115%;
|
||||||
|
padding-top: 8vh;
|
||||||
|
margin-left: 2vw;
|
||||||
|
margin-right: 15vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
#bo{
|
||||||
|
width: 30vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2{
|
||||||
|
padding-bottom: 3vh;
|
||||||
|
padding-top: 1vh;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: #972fe8;
|
||||||
|
}
|
||||||
|
|
||||||
|
#colophon2{
|
||||||
|
padding-bottom: 5vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* MOUSE OUTER CIRCLE!!!!!!!!!!!!! */
|
||||||
|
#outerCircleText {
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: bold;
|
||||||
|
font-family: Arial, Helvetica, sans-serif;
|
||||||
|
color: #000;
|
||||||
|
position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
#outerCircleText div {position: relative;}
|
||||||
|
|
||||||
|
#outerCircleText div div {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
/* MOUSE OUTER CIRCLE!!!!!!!!!!!!! */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Slideshow container */
|
||||||
|
.slideshow-container {
|
||||||
|
margin-top: 4vh;
|
||||||
|
margin-left: 10%;
|
||||||
|
width: 80%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Position the "next button" to the right */
|
||||||
|
.next {
|
||||||
|
width: 12vw;
|
||||||
|
text-align: right;
|
||||||
|
font-family: "Arial Narrow", Helvetica, sans-serif;
|
||||||
|
font-size: calc(6px + 0.5vw);
|
||||||
|
position: fixed;
|
||||||
|
bottom: 15vh;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.prev {
|
||||||
|
text-align: left;
|
||||||
|
font-family: "Arial Narrow", Helvetica, sans-serif;
|
||||||
|
font-size: calc(6px + 0.5vw);
|
||||||
|
position: fixed;
|
||||||
|
bottom: 15vh;;
|
||||||
|
left: 3vw;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
main p {
|
.next:hover, .prev:hover{
|
||||||
line-height: 3rem;
|
text-decoration: none;
|
||||||
|
color: #972fe8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blink {
|
#phone{
|
||||||
animation: blinker 1s step-end infinite;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes blinker {
|
@media screen and (max-width: 635px) {
|
||||||
50% {
|
|
||||||
opacity: 0;
|
#desktop{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#phone{
|
||||||
|
display:block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
body{
|
||||||
|
background-color: #dbdcde;
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.back{
|
||||||
|
display: none;
|
||||||
|
width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left{
|
||||||
|
position: static;
|
||||||
|
width: 100vw;
|
||||||
|
height: 60vh;
|
||||||
|
overflow:hidden;
|
||||||
|
margin-top: 2vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.text{
|
||||||
|
margin-left: 9vw;
|
||||||
|
margin-right: 7vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
#colophon2{
|
||||||
|
padding-bottom: 2vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
main{
|
||||||
|
position: static;
|
||||||
|
width: 100%;
|
||||||
|
overflow: auto;
|
||||||
|
margin-top: 65vh;
|
||||||
|
overflow:hidden;
|
||||||
|
height: auto;
|
||||||
|
margin-left: -30vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right{
|
||||||
|
position: absolute;
|
||||||
|
width: 100vw;
|
||||||
|
margin-top: 0vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.headeright{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.block{
|
||||||
|
background-color: #dbdcde;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#leftheader{
|
||||||
|
position: static;
|
||||||
|
top: 3vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Position the "next button" to the right */
|
||||||
|
.next {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prev {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#topdots{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#bottomdots{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
font-size: calc(7px + 0.9vw);
|
||||||
|
height: 4vh;
|
||||||
|
}
|
||||||
|
.box{
|
||||||
|
height: 4vh;
|
||||||
|
line-height: 4vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
#bo{
|
||||||
|
width: 40vw;
|
||||||
|
padding-bottom: 20vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
a, a:active, a:visited {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,91 @@
|
|||||||
|
/* Push the body down with margin-top*/
|
||||||
|
body {
|
||||||
|
margin-top: 40px;
|
||||||
|
/*background-color: pink;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
/* CNN styling */
|
||||||
|
#cnn{
|
||||||
|
position: fixed;
|
||||||
|
width: calc(100% - 10px);
|
||||||
|
min-width: 420px;
|
||||||
|
height: 25px;
|
||||||
|
top:0;
|
||||||
|
left:0;
|
||||||
|
right: 0;
|
||||||
|
vertical-align: top;
|
||||||
|
padding: 6px;
|
||||||
|
font-size: 16px;
|
||||||
|
background-color: #f2f5f6;
|
||||||
|
background-image: -webkit-gradient(linear, left top, left bottom, from(yellow), to(gold));
|
||||||
|
}
|
||||||
|
|
||||||
|
#cnn .button_container {
|
||||||
|
display: inline-block;
|
||||||
|
width: calc(50% - 20px);
|
||||||
|
transform: scaleX(0.7);
|
||||||
|
transform-origin: 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sitemap button:hover{
|
||||||
|
color: blue;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sitemap button{
|
||||||
|
position: absolute;
|
||||||
|
top:0;
|
||||||
|
right:0;
|
||||||
|
margin:5px;
|
||||||
|
padding-top: 5px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: black;
|
||||||
|
transform: scaleX(0.7);
|
||||||
|
transform-origin: 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cnn-button{
|
||||||
|
padding-top: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#buttonA{
|
||||||
|
padding-left: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media only screen and (max-width: 700px){
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin-top: 40px;
|
||||||
|
/*background-color: yellow;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
#cnn {
|
||||||
|
width: calc(100% - 10px);
|
||||||
|
height: 40px;
|
||||||
|
font-size: 12px;
|
||||||
|
padding-bottom: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cnn .button_container {
|
||||||
|
width: calc(100% - 100px);
|
||||||
|
}
|
||||||
|
|
||||||
|
#sitemap button {
|
||||||
|
position: fixed;
|
||||||
|
right: 5px;
|
||||||
|
top: 1px;
|
||||||
|
margin-top: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#buttonA, #buttonB{
|
||||||
|
padding-left: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cnn-button{
|
||||||
|
padding-top: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#cnn{
|
||||||
|
height: 25px;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,84 @@
|
|||||||
|
const invocation = new XMLHttpRequest();
|
||||||
|
const url = 'https://pad.xpub.nl/p/special_issue_8_cnn/export/txt';
|
||||||
|
|
||||||
|
function findCategories(data){
|
||||||
|
// Return categories that this page is part of
|
||||||
|
// by doing a reversed dictionary lookup
|
||||||
|
var current_url = window.location.href;
|
||||||
|
var keys = Object.keys(data)
|
||||||
|
var categories = [];
|
||||||
|
for(var i=0; i<keys.length; i++){
|
||||||
|
var urls = data[keys[i]];
|
||||||
|
for(var x=0; x<urls.length; x++){
|
||||||
|
if(urls[x] === current_url){
|
||||||
|
console.log('MATCH:', keys[i]);
|
||||||
|
categories.push(keys[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return categories;
|
||||||
|
}
|
||||||
|
|
||||||
|
function CategoryNetworkNavigator(data){
|
||||||
|
// Pick two categories that this page is part of
|
||||||
|
// and insert links to other pages of the same category
|
||||||
|
|
||||||
|
var data = JSON.parse(data);
|
||||||
|
|
||||||
|
// Find categories that this page is part of
|
||||||
|
var categories = findCategories(data);
|
||||||
|
|
||||||
|
// Select a pseudo-randomised category for buttonA
|
||||||
|
var buttonA = categories[Math.floor(Math.random() * categories.length)];
|
||||||
|
document.querySelectorAll('#buttonA button')[0].textContent = buttonA;
|
||||||
|
|
||||||
|
// Select another category for buttonB
|
||||||
|
var indexA = categories.indexOf(buttonA);
|
||||||
|
categories.splice(indexA, 1);
|
||||||
|
var buttonB = categories[Math.floor(Math.random() * categories.length)];
|
||||||
|
document.querySelectorAll('#buttonB button')[0].textContent = buttonB;
|
||||||
|
|
||||||
|
// Insert a link for each button
|
||||||
|
// to another page of the same category
|
||||||
|
var linksA = data[buttonA];
|
||||||
|
var linksB = data[buttonB];
|
||||||
|
linksA.splice(window.location.href, 1);
|
||||||
|
linksB.splice(window.location.href, 1);
|
||||||
|
document.getElementById("buttonA").href = linksA[Math.floor(Math.random() * linksA.length)];
|
||||||
|
document.getElementById("buttonB").href = linksB[Math.floor(Math.random() * linksB.length)];
|
||||||
|
}
|
||||||
|
|
||||||
|
function readEtherpadJSON(){
|
||||||
|
if (invocation){
|
||||||
|
invocation.open( "GET", url, true );
|
||||||
|
invocation.onreadystatechange = function() {
|
||||||
|
console.log('ready!');
|
||||||
|
if (invocation.readyState === 4 && invocation.status === 200) {
|
||||||
|
console.log('invocation:', invocation);
|
||||||
|
CategoryNetworkNavigator(invocation.responseText);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
invocation.send();
|
||||||
|
}
|
||||||
|
return invocation;
|
||||||
|
}
|
||||||
|
|
||||||
|
function insertCNN(cnn_template){
|
||||||
|
document.body.innerHTML = cnn_template + document.body.innerHTML;
|
||||||
|
readEtherpadJSON();
|
||||||
|
}
|
||||||
|
|
||||||
|
var cnn_template = '<!-- START CNN -->\
|
||||||
|
<div id="cnn">\
|
||||||
|
<div class="button_container">\
|
||||||
|
<a id="buttonA" href="http://b-e-e-t.r-o-o-t.net/pages/please_to_foshan.html"><button class="cnn-button">WHAT IS A NETWORK?</button></a>\
|
||||||
|
</div>\
|
||||||
|
<div class="button_container">\
|
||||||
|
<a id="buttonB" href="http://richfolks.club/"><button class="cnn-button">AUTONOMY AND ITS CONTINGENCIES</button></a>\
|
||||||
|
</div>\
|
||||||
|
<a id="sitemap" href="https://issue.xpub.nl/08/"><button class="cnn-button">netmap</button></a>\
|
||||||
|
</div>\
|
||||||
|
<link rel="stylesheet" type="text/css" href="cnn.css">\
|
||||||
|
<!-- END CNN -->'
|
||||||
|
|
||||||
|
insertCNN(cnn_template);
|
After Width: | Height: | Size: 400 KiB |
After Width: | Height: | Size: 283 KiB |
After Width: | Height: | Size: 195 KiB |
@ -0,0 +1,48 @@
|
|||||||
|
/* http://meyerweb.com/eric/tools/css/reset/
|
||||||
|
v2.0 | 20110126
|
||||||
|
License: none (public domain)
|
||||||
|
*/
|
||||||
|
|
||||||
|
html, body, div, span, applet, object, iframe,
|
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||||
|
a, abbr, acronym, address, big, cite, code,
|
||||||
|
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||||
|
small, strike, strong, sub, sup, tt, var,
|
||||||
|
b, u, i, center,
|
||||||
|
dl, dt, dd, ol, ul, li,
|
||||||
|
fieldset, form, label, legend,
|
||||||
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||||
|
article, aside, canvas, details, embed,
|
||||||
|
figure, figcaption, footer, header, hgroup,
|
||||||
|
menu, nav, output, ruby, section, summary,
|
||||||
|
time, mark, audio, video {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
font-size: 100%;
|
||||||
|
font: inherit;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
/* HTML5 display-role reset for older browsers */
|
||||||
|
article, aside, details, figcaption, figure,
|
||||||
|
footer, header, hgroup, menu, nav, section {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
body {
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
ol, ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
blockquote, q {
|
||||||
|
quotes: none;
|
||||||
|
}
|
||||||
|
blockquote:before, blockquote:after,
|
||||||
|
q:before, q:after {
|
||||||
|
content: '';
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
@ -0,0 +1,425 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: "Arial";
|
||||||
|
src: url("font/Arial.ttf");
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Times New Roman";
|
||||||
|
src: url("font/Times New Roman.ttf");
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
body{
|
||||||
|
width: 99%;
|
||||||
|
background-color: #FFF;
|
||||||
|
font-family: "Arial", "Helvetica Neue", "Helvetica", sans-serif;
|
||||||
|
font-weight: 400;
|
||||||
|
margin-left: 1%;
|
||||||
|
}
|
||||||
|
|
||||||
|
main{
|
||||||
|
width:100%;
|
||||||
|
height:100%;
|
||||||
|
overflow:scroll;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul{
|
||||||
|
text-transform: uppercase;
|
||||||
|
width: calc(94vh - 30px);
|
||||||
|
transform: rotate(90deg);
|
||||||
|
transform-origin:top left;
|
||||||
|
-ms-transform: rotate(90deg); /* IE 9 */
|
||||||
|
-ms-transform-origin:top left; /* IE 9 */
|
||||||
|
-webkit-transform: rotate(90deg); /* Safari and Chrome */
|
||||||
|
-webkit-transform-origin:top left; /* Safari and Chrome */
|
||||||
|
moz-transform: rotate(90deg); /* Firefox */
|
||||||
|
-moz-transform-origin:top left; /* Firefox */
|
||||||
|
-o-transform: rotate(90deg); /* Opera */
|
||||||
|
-o-transform-origin:top left; /* Opera */
|
||||||
|
position: relative;
|
||||||
|
left: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
li{
|
||||||
|
font-size: 1.8em;
|
||||||
|
transform: scaleX(0.45);
|
||||||
|
transform-origin: 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer{
|
||||||
|
font-family: "Times New Roman";
|
||||||
|
position: fixed;
|
||||||
|
bottom: 2vh;
|
||||||
|
right: -75px;
|
||||||
|
text-align: right;
|
||||||
|
font-size: 1.4em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
transform: scaleX(0.6);
|
||||||
|
transform-origin: 0 0;
|
||||||
|
z-index: -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
header{
|
||||||
|
font-family: "Times New Roman";
|
||||||
|
position: fixed;
|
||||||
|
top: 2vh;
|
||||||
|
right: -134px;
|
||||||
|
text-align: right;
|
||||||
|
font-size: 1.4em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
transform: scaleX(0.6);
|
||||||
|
transform-origin: 0 0;
|
||||||
|
z-index: -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
a{
|
||||||
|
text-decoration: none;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover{
|
||||||
|
text-decoration: none;
|
||||||
|
color: #e2e3e4;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.grey:hover, a.aboutmore:hover{
|
||||||
|
text-decoration: none;
|
||||||
|
color: #eeeff0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited{
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
em{
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
.not_mine{
|
||||||
|
color: #909090;
|
||||||
|
}
|
||||||
|
|
||||||
|
.open{
|
||||||
|
display: inline-block;
|
||||||
|
background-color: #eeeff0;
|
||||||
|
height: calc(94vh - 30px);
|
||||||
|
padding-top: 5px;
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
margin-left: 10px;
|
||||||
|
width: 35px;
|
||||||
|
overflow: auto;
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.popup{
|
||||||
|
line-height: 120%;
|
||||||
|
display: none;
|
||||||
|
background-color: #e2e3e4;
|
||||||
|
width: 450px;
|
||||||
|
height: calc(94vh - 30px);
|
||||||
|
overflow: auto;
|
||||||
|
white-space: normal;
|
||||||
|
vertical-align: top;
|
||||||
|
padding-top: 5px;
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
h2{
|
||||||
|
transform: scaleX(0.7);
|
||||||
|
font-size: 1.6em;
|
||||||
|
line-height: 110%;
|
||||||
|
text-transform: uppercase;
|
||||||
|
transform-origin: 0 0;
|
||||||
|
margin-left: 8px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1{
|
||||||
|
transform: scaleX(0.6);
|
||||||
|
font-size: 1.8em;
|
||||||
|
line-height: 110%;
|
||||||
|
text-transform: uppercase;
|
||||||
|
transform-origin: 0 0;
|
||||||
|
margin-left: 8px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub_h1{
|
||||||
|
font-family: "Times New Roman";
|
||||||
|
}
|
||||||
|
|
||||||
|
p{
|
||||||
|
margin-left: 16px;
|
||||||
|
margin-right: 36px;
|
||||||
|
overflow: auto;
|
||||||
|
white-space: normal;
|
||||||
|
padding-bottom: 1em;
|
||||||
|
font-size: 15px;
|
||||||
|
line-height: 120%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footnotes{
|
||||||
|
font-family: "Times New Roman";
|
||||||
|
transform: scaleX(0.8);
|
||||||
|
transform-origin: 0 0;
|
||||||
|
margin-left: 8px;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 120%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.git{
|
||||||
|
font-family: "Times New Roman";
|
||||||
|
transform: scaleX(0.8);
|
||||||
|
transform-origin: 0 0;
|
||||||
|
margin-left: 0px;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 120%;
|
||||||
|
padding-top: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
button, input[type="submit"], input[type="reset"] {
|
||||||
|
background: none;
|
||||||
|
color: inherit;
|
||||||
|
border: none;
|
||||||
|
padding: 0;
|
||||||
|
font: inherit;
|
||||||
|
cursor: pointer;
|
||||||
|
outline: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
figcaption{
|
||||||
|
font-family: "Times New Roman";
|
||||||
|
transform: scaleX(0.8);
|
||||||
|
transform-origin: 0 0;
|
||||||
|
margin-left: 8px;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 120%;
|
||||||
|
text-align: justify;
|
||||||
|
text-justify: inter-word;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
img{
|
||||||
|
margin-top: 3px;
|
||||||
|
margin-left: 8px;
|
||||||
|
width: 326px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3{
|
||||||
|
transform: scaleX(0.7);
|
||||||
|
font-size: 1.6em;
|
||||||
|
line-height: 110%;
|
||||||
|
text-transform: uppercase;
|
||||||
|
transform-origin: 0 0;
|
||||||
|
margin-left: 8px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.avatar{
|
||||||
|
width: 125px;
|
||||||
|
padding-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.answer{
|
||||||
|
background-color: #eeeff0;
|
||||||
|
width: 388px;
|
||||||
|
margin-left: 0;
|
||||||
|
margin-right: 0;
|
||||||
|
margin-bottom: 75px;
|
||||||
|
padding: 8px;
|
||||||
|
padding-left: 36px;
|
||||||
|
padding-right: 26px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.link{
|
||||||
|
font-size: 1.6em;
|
||||||
|
line-height: 110%;
|
||||||
|
transform: scaleX(0.6);
|
||||||
|
text-transform: uppercase;
|
||||||
|
transform-origin: 0 0;
|
||||||
|
background-color: #eeeff0;
|
||||||
|
width: 742px;
|
||||||
|
margin-left: 0;
|
||||||
|
margin-right: 0;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
padding: 8px;
|
||||||
|
padding-left: 8px;
|
||||||
|
padding-right: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#text04 {
|
||||||
|
padding-top: 0px;
|
||||||
|
padding-top: 1vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description{
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.name{
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
padding-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.username{
|
||||||
|
font-family: "Times New Roman";
|
||||||
|
transform: scaleX(0.8);
|
||||||
|
transform-origin: 0 0;
|
||||||
|
margin-left: 8px;
|
||||||
|
font-size: 14px;
|
||||||
|
margin-bottom: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.code{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aboutmore{
|
||||||
|
font-family: "Times New Roman";
|
||||||
|
transform: scaleX(0.6);
|
||||||
|
transform-origin: 0 0;
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@media only screen and (max-width: 700px){
|
||||||
|
|
||||||
|
header{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul{
|
||||||
|
width: 95%;
|
||||||
|
transform: rotate(0deg);
|
||||||
|
transform-origin:top left;
|
||||||
|
-ms-transform: rotate(0deg); /* IE 9 */
|
||||||
|
-ms-transform-origin:top left; /* IE 9 */
|
||||||
|
-webkit-transform: rotate(0deg); /* Safari and Chrome */
|
||||||
|
-webkit-transform-origin:top left; /* Safari and Chrome */
|
||||||
|
moz-transform: rotate(0deg); /* Firefox */
|
||||||
|
-moz-transform-origin:top left; /* Firefox */
|
||||||
|
-o-transform: rotate(0deg); /* Opera */
|
||||||
|
-o-transform-origin:top left; /* Opera */
|
||||||
|
position: relative;
|
||||||
|
left: 5px;
|
||||||
|
margin-top: -4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
li{
|
||||||
|
margin-top: 5px;
|
||||||
|
font-size: 1.6em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.open{
|
||||||
|
display: block;
|
||||||
|
height: 35px;
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-right: 4px;
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
width: 95%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.popup{
|
||||||
|
background-color: #F5F5F5;
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-right: 4px;
|
||||||
|
margin-top: 0;
|
||||||
|
padding-top: 0;
|
||||||
|
width: 95%;
|
||||||
|
height: 70vh;
|
||||||
|
overflow-y: scroll;
|
||||||
|
-webkit-overflow-scrolling: touch;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2{
|
||||||
|
font-size: 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1{
|
||||||
|
font-size: 1.4em;
|
||||||
|
margin-top: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p{
|
||||||
|
margin-left: 12px;
|
||||||
|
margin-right: 20px;
|
||||||
|
padding-bottom: 1em;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footnotes{
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
figcaption{
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
img{
|
||||||
|
width: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3{
|
||||||
|
transform: scaleX(0.7);
|
||||||
|
font-size: 1.4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.avatar{
|
||||||
|
padding-top: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.answer{
|
||||||
|
width: 83vw;
|
||||||
|
margin-left: 0;
|
||||||
|
margin-right: 0;
|
||||||
|
margin-bottom: 25px;
|
||||||
|
padding: 0;
|
||||||
|
padding-left: 2vw;
|
||||||
|
padding-right: 8vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.link{
|
||||||
|
font-size: 1.2em;
|
||||||
|
width: 163%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.instance{
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#text04 {
|
||||||
|
padding-top: 1vh;
|
||||||
|
}
|
||||||
|
#text05 {
|
||||||
|
padding-top: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description{
|
||||||
|
margin-bottom: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.name{
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
padding-top: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer{
|
||||||
|
bottom: 8px;
|
||||||
|
left: 8px;
|
||||||
|
text-align: left;
|
||||||
|
font-size: 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Before Width: | Height: | Size: 193 KiB After Width: | Height: | Size: 174 KiB |