cutechicken commited on
Commit
f4d0847
ยท
verified ยท
1 Parent(s): 14a29ce

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +41 -16
index.html CHANGED
@@ -59,22 +59,47 @@
59
  z-index: 1000;
60
  display: none;
61
  }
62
- #winMessage {
63
- font-size: 72px;
64
- background: none;
65
- top: 30%; /* ํ™”๋ฉด์˜ ์œ„์ชฝ์œผ๋กœ ์ด๋™ */
66
- left: 50%;
67
- transform: translate(-50%, -50%);
68
- z-index: 1001; /* ๋‹ค์Œ ๋ผ์šด๋“œ ๋ฒ„ํŠผ๋ณด๋‹ค ์œ„๋กœ ์„ค์ • */
69
- }
70
-
71
- #nextRound {
72
- top: 80%; /* ํ™”๋ฉด์˜ ์•„๋ž˜์ชฝ์œผ๋กœ ์ด๋™ */
73
- z-index: 1000; /* "You Win"๋ณด๋‹ค ์•„๋ž˜๋กœ ์„ค์ • */
74
- }
75
- #nextRound {
76
- top: 80%; /* ์•„๋ž˜์ชฝ์œผ๋กœ ์ด๋™ */
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>