Update index.html
Browse files- index.html +41 -16
index.html
CHANGED
@@ -59,22 +59,47 @@
|
|
59 |
z-index: 1000;
|
60 |
display: none;
|
61 |
}
|
62 |
-
#
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
</style>
|
79 |
</head>
|
80 |
<body>
|
|
|
59 |
z-index: 1000;
|
60 |
display: none;
|
61 |
}
|
62 |
+
#titleScreen {
|
63 |
+
position: fixed;
|
64 |
+
top: 0;
|
65 |
+
left: 0;
|
66 |
+
width: 100%;
|
67 |
+
height: 100%;
|
68 |
+
background: url('city2.png') no-repeat center center;
|
69 |
+
background-size: cover;
|
70 |
+
z-index: 2000;
|
71 |
+
display: flex;
|
72 |
+
flex-direction: column;
|
73 |
+
justify-content: center;
|
74 |
+
align-items: center;
|
75 |
+
}
|
76 |
+
#titleScreen h1 {
|
77 |
+
font-size: 72px;
|
78 |
+
color: white;
|
79 |
+
text-shadow: 2px 2px 5px black;
|
80 |
+
margin-bottom: 50px;
|
81 |
+
}
|
82 |
+
#startButton {
|
83 |
+
padding: 20px 50px;
|
84 |
+
font-size: 32px;
|
85 |
+
background: #4CAF50;
|
86 |
+
color: white;
|
87 |
+
border: none;
|
88 |
+
border-radius: 5px;
|
89 |
+
cursor: pointer;
|
90 |
+
}
|
91 |
+
#shop {
|
92 |
+
position: fixed;
|
93 |
+
top: 50%;
|
94 |
+
left: 50%;
|
95 |
+
transform: translate(-50%, -50%);
|
96 |
+
background: rgba(0,0,0,0.9);
|
97 |
+
padding: 20px;
|
98 |
+
border-radius: 10px;
|
99 |
+
color: white;
|
100 |
+
z-index: 1000;
|
101 |
+
display: none;
|
102 |
+
}
|
103 |
</style>
|
104 |
</head>
|
105 |
<body>
|