-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
124 lines (102 loc) · 1.82 KB
/
Copy pathmain.css
File metadata and controls
124 lines (102 loc) · 1.82 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*I make this look so damn good.
Its not the suit, its me and you want it so bad.
*/
html{
overflow-x: hidden;
overflow-y: scroll;
}
html, body{
margin: 0;
padding: 0;
width: 100%;
font-family: 'Didact Gothic', sans-serif;
font-size: .92em;
text-align: justify;
line-height: 1.5em;
background-color: #FFFDF9;
color: #444444;
}
@font-face {
font-family: '8-bit';
src: url('8-bit.ttf');
font-weight: normal;
font-style: normal;
}
#container{
height: 100%;
width: 100%;
margin: 0 auto;
}
#container a,h4{
color: #C83E22;
text-decoration: none;
}
#container a:hover{
text-decoration: underline;
}
#container ul{
list-style-type: none;
padding: 0;
}
#container li{
border-bottom : 1px dashed #DDDDDD;
padding: 5px 0 5px 0;
}
#wrapper{
height: 100%;
width: 100%;
margin: 0;
font-family: '8-bit';
}
#wrapper a{
text-decoration: none;
color: #F03060;
}
#wrapper a:hover{
text-decoration: none;
}
#pongCanvas{
background-color: #45fd70;
box-shadow:0px 0px 0px #333;
height: 100%;
width: 100%;
}
#display{
width: 300px;
height: 200px;
text-align: center;
position: absolute;
margin-top: 50%;
margin-left: 50%;
color: #FFFFFF;
}
#game{
border: 1px solid #FFFFFF;
}
#controls{
padding-top: 5px;
}
#scoreboard{
text-align: center;
font-size: 30px;
width: 100%;
margin-top: -65px;
position: relative;
display: none;
}
@-webkit-keyframes blink {
from { opacity: 1.0; }
to { opacity: 0.0; }
}
blink {
-webkit-animation-name: blink;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
-webkit-animation-duration: 1s;
}
.green{
color: #222222;
}
.pull-right{
float: right;
}