12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- html,body{
- margin: 0;
- padding: 0;
- font-family: Arial, sans-serif;
- }
- #game-container {
- width: 100%;
- height: 100%;
- z-index: 1;
- }
- #inventory {
- position: absolute;
- display: none;
- width: 300px;
- height: 300px;
- top: 100px;
- left: 100px;
- background-color: white;
- color: black;
- }
- #chat {
- position: absolute;
- display: block;
- height: 60px;
- bottom: 30px;
- left: 30px;
- right: 30px;
- background-color: rgba(255, 255, 255, 0.3);
- color: black;
- overflow: hidden;
- pointer-events: none;
- }
- #chat-input {
- width: 100%;
- padding: 5px;
- font-size: 16px;
- position: absolute;
- bottom: 0;
- background-color: transparent;
- color: white;
- font-weight: bold;
- border: 2px solid gray;
- pointer-events: auto;
- text-shadow: 0 0 5px black;
- }
- #chat-input:focus {
- border: 2px solid limegreen;
- }
- #chat-output {
- height: auto;
- font-size: 16px;
- padding: 5px;
- display: flex;
- flex-direction: column;
- }
- #chat-output span {
- display: inline-flex;
- padding-left: 5px;
- padding-right: 5px;
- color: white;
- font-weight: bold;
- pointer-events: auto;
- margin-right: auto;
- text-shadow: 0 0 5px black;
- }
|