-
Notifications
You must be signed in to change notification settings - Fork 0
/
design.css
76 lines (67 loc) · 1.23 KB
/
design.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
*
{
padding: 0px;
margin: 0px;
}
body
{
background: #b3dda8;
text-align: center;
}
canvas
{
background-size: 100% 100%;
background-image: url("http://sr.photos2.fotosearch.com/bthumb/UNC/UNC304/u10494504.jpg");
-webkit-transition: -webkit-transform 1s;
}
canvas:hover
{
opacity: 0.5;
background-color: rgba(0, 169, 255, 0.2);
background-blend-mode: multiply;
}
#canvasDiv
{
margin: 10px auto 20px;
}
#reloadButton, #githublink
{
border: 1px solid #2a4720;
border-width: 2px;
padding: 5px;
text-decoration: none;
color: #2a4720;
background: white;
font-family: "Courier";
font-weight: bold;
font-size: 20px;
-webkit-transition: font-size 0.1s;
}
#reloadButton:hover, #githublink:hover
{
font-size: 24px;
}
#title
{
font-size: 30px;
font-family: "Courier";
font-weight:bold;
color: #2a4720;
border: 1px solid #2a4720;
background: white;
border-width: 2px;
width: 150px;
margin: 10px auto 10px;
}
#scoreCount
{
font-size: 20px;
font-family: "Courier";
font-weight:bold;
color: #2a4720;
border: 1px solid #2a4720;
background: white;
border-width: 2px;
width: 150px;
margin: 10px auto 0px;
}