-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbv_css.css
93 lines (77 loc) · 1.72 KB
/
bv_css.css
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* Bourdon Vos Test - Stimuli Presentation (i.e. Task)
Written in conjuction with other BV files
Author: Sally A.M. Hogenboom
Version Control via Git
*/
/* CREATE & SET VARIABLES */
:root {
--bgColor: MediumSpringGreen; /*NOTE: no space between the -- and the variable name*/
--fontColor: Black;
--buttonColor: Black;
--buttonText: White;
--fontFamily: Verdana;
}
/* BODY */
body {
background-color: var(--bgColor);
}
/* ALL BUTTONS */
button {
display: block; /* create block otherwise won't center */
text-align: center; /* center text within button */
color: var(--buttonText); /* font color */
margin: 0 auto; /* center on page */
width: 20%; /* enlarge button */
background-color: var(--buttonColor);
border-style: solid;
border-width: 1px;
border-color: var(--buttonText);
text-transform: uppercase;
}
.bug {
position: fixed;
top: 2px;
right: 2px;
width: 10%;
}
div {
margin: auto;
border-color: var(--bgColor);
}
canvas {
border-style: solid;
border-color: var(--bgColor);
border-width: 1px;
background-color: White;
}
.practice {
border-style: solid;
border-color: var(--bgColor);
border-width: 10px;
background-color: White;
}
H6 {
font-size: 20px;
font-family: var(--fontFamily);
line-height: 2;
}
form {
font-size: 10px;
font-family: var(--fontFamily);
}
table {
border-collapse: collapse;
width: 50%;
margin: auto;
}
table, th, td {
border: 2px solid black;
text-align: center;
padding: 10px;
}
th {
background-color: black;
color: white;
border-color: black;
text-align: center;
}