-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesign.css
62 lines (54 loc) · 1000 Bytes
/
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
*
{
padding: 0px;
margin: 0px;
}
body
{
background: #fff6cc;
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: 150px auto 40px;
}
#reloadButton, #githublink
{
border: 1px solid #000;
border-width: 2px;
padding: 5px;
text-decoration: none;
color:black;
font-family: "Courier";
font-weight: bold;
font-size: 20px;
-webkit-transition: font-size 0.1s;
}
#reloadButton:hover, #githublink:hover
{
font-size: 24px;
background: #f7eaaa;
}
#whoseturn
{
font-size: 40px;
font-family: "Courier";
font-weight:bold;
color: black;
border: 1px solid #000;
border-width: 2px;
width: 150px;
margin: 150px auto 10px;
}