forked from daverix/HTML5-Pong
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (116 loc) · 1.68 KB
/
style.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
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
125
126
/*
* Styles for the Pong game
* Author: David Laurell <[email protected]>
* License: GPLv3
*/
@CHARSET "UTF-8";
#gamediv {
display: block;
margin: 0 auto;
width: 640px;
height: 360px;
background: #150000;
padding: 10px;
}
/*
Title screen
*/
#titleScreen {
border: 2px solid #333;
padding: 1em;
margin: 0 auto;
margin-top: 3em;
width: 50%;
text-align: center;
}
#titleScreen h1 {
font-weight: normal;
color: #ffc;
font-size: 1.5em;
}
#titleScreen p {
font-weight: bold;
font-size: 0.8em;
color: #ccc;
text-align: left;
}
#titleScreen .vcard {
font-size: 0.8em;
}
#titleScreen .vcard a {
color: #ccc;
}
/*
Play screen
*/
#playScreen {
display: none;
}
#playScreen .ingamebuttons {
float: left;
position: relative;
top: -2.5em;
left: 0;
text-align: center;
}
#gameCanvas {
position: relative;
top: 0;
left: 0;
color: #ccc;
}
#computerScore,
#playerScore {
position: relative;
top: -340px;
left: 0;
font-size: 3em;
color: #ccc;
line-height: 0;
width: 40%;
opacity:0.8;filter:alpha(opacity=80);
}
#computerScore {
float: left;
text-align: right;
}
#playerScore {
float: right;
text-align: left;
}
#pauseText {
display: none;
position: relative;
top: -360px;
left: 0;
font-size: 3em;
margin: 3em auto;
opacity:0.4;filter:alpha(opacity=40);
color: #ffc;
text-align: center;
line-height: 0;
}
/*
Buttons
*/
#playButton,
#pauseButton,
#soundButton {
border: 2px solid #333;
background: #111;
color: #ffc;
padding: 0.3em 2em;
font-size: 0.8em;
opacity:0.4;filter:alpha(opacity=40);
}
#pauseButton,
#soundButton {
float: left;
margin-left: 1em;
}
#pauseButton:hover,
#soundButton:hover,
#playButton:hover {
background: #444;
color: #afa;
}