-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdots.css
More file actions
75 lines (64 loc) · 1.4 KB
/
dots.css
File metadata and controls
75 lines (64 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
html, body {
height: 100%;
width: 100%;
margin: 0;
font-family: sans-serif;
font-size: 4vmin; /* options: 2.5vmax 4vmin 25px*/
text-align: center;
}
.centred {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
/* instructions */
#text_display { width: 70% }
/* fixation cross */
#fix_cross{
position: absolute;
left: 50%;
transform: translateX(-50%);
font-size: 30px;
}
/* stim */
#stim_grid {
display: grid;
grid-template-columns: min-content min-content;
}
.stim { background: black }
#prompt{ font-size: 3vmin }
/* confidence */
#conf_cont { width: 100% }
#conf_sl{ width: 50%; }
.likert_item{ border-right: 1px solid grey; }
#likert_labs{
width: 60%;
position: relative;
left: 50%;
transform: translateX(-50%);
font-size: 3vmin;
display: grid;
grid-template-columns: repeat(5, 1fr);
}
#conf_instr{
font-style: italic;
font-size: 80%;
}
.button {
background-color: rgb(80, 80, 80); /*53, 115, 47*/
color: white;
border: none;
padding: 12px 29px;
font-size: 15px;
cursor: pointer;
}
.button:hover {
background-color: rgb(200, 200, 200);
color: rgb(51, 51, 51);
}
@media (max-width: 600px) {
#conf_sl{ width: 85%; }
#likert_labs{ width: 95%; }
#prompt{ font-size: 4vmin; }
}