Changes to backend
This commit is contained in:
parent
da36fbf6fe
commit
de12ac714a
2 changed files with 13 additions and 14 deletions
|
@ -14,8 +14,8 @@
|
||||||
<img :src="hit.scan_image">
|
<img :src="hit.scan_image">
|
||||||
|
|
||||||
<div class='credits'>
|
<div class='credits'>
|
||||||
<span class='worker_id'>test{{hit.assignment.worker_id}}</span>
|
<span class='worker_id'>{{hit.assignment.worker_id}}</span>
|
||||||
<span class='country'>test{{hit.assignment.turk_country}}</span>
|
<span class='country'>{{hit.assignment.turk_country}}</span>
|
||||||
<template v-if="hit.preceding_assignments.length">
|
<template v-if="hit.preceding_assignments.length">
|
||||||
<div id='collaborators'>
|
<div id='collaborators'>
|
||||||
<div id='collab_items'>
|
<div id='collab_items'>
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
body{
|
body{
|
||||||
background: black;
|
background: black;
|
||||||
margin:0;
|
margin:0;
|
||||||
color:white;
|
color:#f5f5f5;
|
||||||
font-family: 'bt';
|
font-family: 'bt';
|
||||||
font-size: var(--base-font-size);
|
font-size: var(--base-font-size);
|
||||||
line-height: var(--base-font-size)*1.5;
|
line-height: var(--base-font-size)*1.5;
|
||||||
|
@ -47,8 +47,8 @@ body{
|
||||||
.hit{
|
.hit{
|
||||||
position:absolute;
|
position:absolute;
|
||||||
top:var(--pos-y);
|
top:var(--pos-y);
|
||||||
left:0;
|
left:24px;
|
||||||
right:0;
|
right:21px;
|
||||||
bottom:0;
|
bottom:0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
transition: opacity 1s;
|
transition: opacity 1s;
|
||||||
|
@ -73,17 +73,16 @@ body{
|
||||||
|
|
||||||
.hit img{
|
.hit img{
|
||||||
display: block;
|
display: block;
|
||||||
margin: 10vh auto 7vh;
|
margin: 6vh auto 7vh;
|
||||||
width: 1000px;
|
width: 875px;
|
||||||
height: 500px;
|
|
||||||
border: solid 1px white;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.credits{
|
.credits{
|
||||||
font-size: var(--base-font-size);
|
font-size: var(--base-font-size);
|
||||||
|
text-transform: uppercase;
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.credits::before{
|
.credits::before{
|
||||||
|
@ -108,12 +107,12 @@ body{
|
||||||
.country::after{content:')';}
|
.country::after{content:')';}
|
||||||
|
|
||||||
#collaborators{
|
#collaborators{
|
||||||
height: 30vh;
|
height: 32vh;
|
||||||
width: 1000px;
|
width: 800px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
#collab_items{
|
#collab_items{
|
||||||
text-align: justify;
|
text-align: justify-center;
|
||||||
}
|
}
|
||||||
#collaborators::before{
|
#collaborators::before{
|
||||||
margin-top: 7vh;
|
margin-top: 7vh;
|
||||||
|
|
Loading…
Reference in a new issue