-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (94 loc) · 1.57 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
.game_board {
position: relative;
width: 100%;
clear: both;
text-align: center;
overflow: hidden;
}
.fancy_title {
width: 96.5%;
height: 100px;
background-color: brown;
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
font-family: Geneva;
font-weight: bold;
color: white;
font-size: 60px;
padding-top: 20px;
}
.left_tower {
margin: 1px 1px 1px 1px;
float: left;
position: relative;
width: 32%;
height: 500px;
background-color: green;
}
.middle_tower {
margin: 1px 1px 1px 1px;
float: left;
width: 32%;
height: 500px;
background-color: blue;
}
.right_tower {
margin: 1px 1px 1px 1px;
float: left;
width: 32%;
height: 500px;
background-color: green;
}
.base {
position: fixed;
width: 31.4%;
bottom: 6px;
background-color: brown;
z-index: 10;
text-indent: 100%;
white-space: nowrap;
}
.paddles {
font-size: 0;
line-height: 0;
padding-top: 355px;
}
#p4 {
position: relative;
width: 75%;
height: 30px;
margin: 0 auto;
background-color: #00ff00;
border-radius: 15px;
border: 1px solid black;
}
#p3 {
position: relative;
width: 55%;
height: 30px;
margin: 0 auto;
background-color: #00ff00;
border-radius: 15px;
border: 1px solid black;
}
#p2 {
position: relative;
width: 35%;
height: 30px;
margin: 0 auto;
background-color: #00ff00;
border-radius: 15px;
border: 1px solid black;
}
#p1 {
position: relative;
width: 15%;
height: 30px;
margin: 0 auto;
background-color: #00ff00;
border-radius: 15px;
border: 1px solid black;
}