94 lines
1.6 KiB
CSS
94 lines
1.6 KiB
CSS
|
@font-face {
|
||
|
font-family: 'bebas';
|
||
|
src: url('font/BebasNeue-Regular.ttf');
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'freesans';
|
||
|
src: url('font/FreeSans.ttf')
|
||
|
}
|
||
|
|
||
|
|
||
|
:root{
|
||
|
|
||
|
--base-font-size: 25px;
|
||
|
--spec_name-font-size: 120%;
|
||
|
--spec_value-font-size: 250%;
|
||
|
|
||
|
--base-color: #271601; /* tekst */
|
||
|
--alt-color: #FFF5DF; /* achtergrond */
|
||
|
|
||
|
/* /////// GAT VOORKANT PLEK & POSITIE //////// */
|
||
|
/* */ /* */
|
||
|
/* */ --pos-x: calc(50% - (var(--width)/2)); /* */
|
||
|
/* */ --pos-y: 200px; /* */
|
||
|
/* */ --width: 560px; /* 115mm */
|
||
|
/* */ --height: 1250px; /* 260mm */
|
||
|
/* */ /* */
|
||
|
/* //////////////////////////////////////////// */
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
html, body{
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
border: 0;
|
||
|
text-decoration: none;
|
||
|
font-family: 'bebas';
|
||
|
font-size: var(--base-font-size);
|
||
|
line-height: 1.1;
|
||
|
background: #000;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
|
||
|
#wrapper{
|
||
|
|
||
|
position: absolute;
|
||
|
left: var(--pos-x);
|
||
|
top: var(--pos-y);
|
||
|
width: var(--width);
|
||
|
height: var(--height);
|
||
|
|
||
|
background: var(--alt-color);
|
||
|
box-sizing: border-box;
|
||
|
padding: 2%;
|
||
|
}
|
||
|
|
||
|
|
||
|
#worker_specs{
|
||
|
display:grid;
|
||
|
grid-template-columns: 1fr ;
|
||
|
grid-template-rows: repeat(50, 1fr 2fr);
|
||
|
}
|
||
|
|
||
|
.grid-item{
|
||
|
color: var(--base-color);
|
||
|
}
|
||
|
|
||
|
.spec_name{
|
||
|
font-size: var(--spec_name-font-size);
|
||
|
font-family: 'freesans';
|
||
|
}
|
||
|
|
||
|
.spec_value{
|
||
|
font-size: var(--spec_value-font-size);
|
||
|
padding-bottom: 2%;
|
||
|
}
|
||
|
|
||
|
|
||
|
.phase{
|
||
|
display:none;
|
||
|
}
|
||
|
|
||
|
|
||
|
.phase:not(#worker_specs){
|
||
|
padding-top: 100%;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.narrative_phase_text{
|
||
|
font-size: var(--spec_value-font-size);
|
||
|
}
|