-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
76 lines (71 loc) · 1.21 KB
/
styles.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
body {
padding: 0;
margin:0;
font-size: 20px;
}
button {
padding: 10px 25px 8px;
color: #fff;
background-color: #0067ab;
text-shadow: rgba(0,0,0,0.24) 0 1px 0;
font-size: 16px;
box-shadow: rgba(255,255,255,0.24) 0 2px 0 0 inset,#fff 0 1px 0 0;
border: 1px solid #0164a5;
border-radius: 2px;
cursor:pointer;
margin-left: 5px;
}
button:hover {
background-color: #024978;
}
canvas {
position: relative;
float: right;
margin-right: 10px;
}
#trials {
list-style: none;
background-color: lightblue;
text-align: center;
font-size: 20px;
}
.container {
background-color: lightblue;
text-align: center;
}
li {
display: inline;
margin-left: -3px;
}
input[type="text"], .inputValue{
width: 200px;
border-radius: 2px;
border: 1px solid #CCC;
padding: 10px;
color: #333;
font-size: 14px;
margin-top: 10px;
margin-bottom: 10px;
}
.width {
width: 70px;
border-radius: 2px;
border: 1px solid #CCC;
padding: 10px;
color: #333;
font-size: 14px;
margin-top: 10px;
margin-bottom: 10px;
}
#instructions {
width: 700px;
height: 700px;
margin-left: 10px;
float: left;
background-color: black;
}
p {
color: white;
padding: 10px;
font-size: 23px;
}