A collection of games I worked on in high school.
1html,body,#playground {
2 background-color: black;
3 font-family: 'Segoe UI', sans-serif;
4 text-align: center;
5}
6
7#firstDiv {
8 position: relative;
9 margin-left: auto;
10 margin-right: auto;
11 height: 600px;
12 width: 800px;
13}
14
15#welcomeScreen {
16 position: relative;
17 height: 600px;
18 width: 800px;
19 margin-left: auto;
20 margin-right: auto;
21 z-index: 100;
22 background-color: black;
23 background-image: url(assets/img/splash.png);
24}
25
26#welcome1 {
27 position: absolute;
28 width: 800px;
29 height: 600px;
30}
31
32#loadingBar {
33 position: relative;
34 margin-left: 100px;
35 height: 15px;
36 width: 0px;
37 background-color: blue;
38}
39
40#healthwrapper {
41 position: relative;
42 width: 800px;
43 margin-left: auto;
44 margin-right: auto;
45}
46
47#healthbar {
48 position: relative;
49 height: 15px;
50 width: 0px;
51 background-color: red;
52 z-index: 1000000;
53}
54
55#restart {
56 position: relative;
57 width: 800px;
58 margin-left: auto;
59 margin-right: auto;
60 color: white;
61 opacity: 0;
62}
63
64.button {
65 cursor: pointer;
66}
67
68a {
69 color: #FFF;
70}
71
72span {
73 font-style: italic;
74}