-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
155 lines (135 loc) · 3.48 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
body {
background-color:#0C3745;
color: white;
font-family: "Trebuchet MS", Verdana, sans-serif;
}
#Space {
display: block;
height: 550px;
width: 630px;
font-size: 90%;
text-shadow: 1px 1px 0 black;
text-align: center;
}
.MenuButton {
padding-top: 10px;
font-size: 22px;
cursor: pointer;
}
.MenuButton:hover {
color: #b0b5bf;
}
.thisgame {
position: absolute;
left: 1%;
top: 45%;
font-size: 170%;
-webkit-transform: rotate(-35deg);
-moz-transform: rotate(-35deg);
}
#EasyButton {
float: left;
position: absolute;
left: 37%;
}
#HardButton {
float: right;
position: absolute;
right: 37%;
}
#Title {
margin-top: -35px;
margin-bottom: -30px;
}
#StartButton {
margin-top: -125px;
margin-bottom:60px;
padding-bottom: 20px;
font-size: 250%;
}
#Difficulty {
font-size: 170%;
padding-bottom: 10px;
}
#SoundImg {
position: absolute;
right: 26%;
top: 3.5%;
}
#Space {
text-align: center;
width: 800px;
height: 150px;
margin: 0px auto;
}
#canvas{
position: absolute;
left: 0px;
top: 0px;
}
#canvasHolder {
position: absolute;
width: 100%;
height: 100%;
text-align:center;
}
#canvasHolder canvas {
margin-left:auto;
margin-right:auto;
}
p.description {
padding-top:15px;
width: 420px;
margin: 10px auto 30px auto;
color: black;
font-size: 70%;
text-align: justify;
}
p a{
color: #F2EBEB;
text-decoration: none;
}
p a:hover {
color: #948F8F;
}
.Button {
-moz-box-shadow:inset 0px 0px 24px 1px #97c4fe;
-webkit-box-shadow:inset 0px 0px 24px 1px #97c4fe;
box-shadow:inset 0px 0px 24px 1px #97c4fe;
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #3d94f6), color-stop(1, #1e62d0) );
background:-moz-linear-gradient( center top, #3d94f6 5%, #1e62d0 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3d94f6', endColorstr='#1e62d0');
background-color:#3d94f6;
-webkit-border-top-left-radius:20px;
-moz-border-radius-topleft:20px;
border-top-left-radius:20px;
-webkit-border-top-right-radius:20px;
-moz-border-radius-topright:20px;
border-top-right-radius:20px;
-webkit-border-bottom-right-radius:20px;
-moz-border-radius-bottomright:20px;
border-bottom-right-radius:20px;
-webkit-border-bottom-left-radius:20px;
-moz-border-radius-bottomleft:20px;
border-bottom-left-radius:20px;
text-indent:0;
border:1px solid #337fed;
display:inline-block;
color:#ffffff;
font-family:"Trebuchet MS", Verdana, sans-serif;
font-size:15px;
font-weight:bold;
font-style:normal;
height:43px;
line-height:43px;
width:110px;
text-decoration:none;
text-align:center;
text-shadow:1px 1px 0px #1570c
}
.Button:hover {
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1e62d0), color-stop(1, #3d94f6) );
background:-moz-linear-gradient( center top, #1e62d0 5%, #3d94f6 100% );
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e62d0', endColorstr='#3d94f6');
background-color:#1e62d0;
}