-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJPong.css
62 lines (54 loc) · 1.04 KB
/
JPong.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
body{
background-color: #AAAAFF;
}
h1{
font-size: 3em;
font-family: cursive;
color: purple;
}
h2{
font-size: 1.3em;
font-family: sans-serif;
color: black;
text-decoration:none;
}
p{
font-size: 0.8em;
font-family:Times, serif;
}
span{
font-family: script;
}
.header{
text-align: center;
background: -webkit-linear-gradient(#EEEEEE, #AAAAAA); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(#EEEEEE, #AAAAAA); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(#EEEEEE, #AAAAAA); /* For Firefox 3.6 to 15 */
background: linear-gradient(#EEEEEE, #AAAAAA); /* Standard syntax */
display: block;
border-radius: 5px;
}
.canvas{
background-color: #DDDDDD;
border-radius: 3px;
text-align: center;
display: inline-block;
float: left;
box-shadow: 0px 0px 4px;
}
.instructions{
background-color: #DDDDDD;
border-radius: 3px;
text-align:justify;
display: inline-block;
width: 20%;
margin-left: 5px;
padding: 2px;
float: left;
box-shadow: 0px 0px 4px;
}
.footer{
text-align: center;
display: block;
clear:both;
}