Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Define the overall game container style */
- #game {
- width: 800px; /* Adjust the width as needed */
- margin: 0 auto;
- background-color: #f2f2f2;
- font-family: 'Helvetica Neue', sans-serif;
- color: #333;
- }
- /* Define the style for buttons */
- .bigButton {
- background-color: #f5d76e;
- color: #333;
- border: 2px solid #e8c300;
- padding: 10px 20px;
- font-size: 18px;
- cursor: pointer;
- margin: 10px;
- border-radius: 5px;
- box-shadow: 0 5px #d1a200;
- }
- .bigButton:hover {
- background-color: #f7e289;
- }
- /* Define the style for the game header */
- #header {
- background-color: #333;
- color: #fff;
- text-align: center;
- padding: 10px;
- font-size: 24px;
- }
- /* Define the style for resources (e.g., bananas) */
- .resource {
- display: inline-block;
- padding: 10px;
- background-color: #f5d76e;
- border: 2px solid #e8c300;
- color: #333;
- font-size: 18px;
- margin: 10px;
- border-radius: 5px;
- }
- /* Define the style for tooltips */
- .tooltip {
- position: relative;
- }
- .tooltip .tooltiptext {
- visibility: hidden;
- width: 200px;
- background-color: #333;
- color: #fff;
- text-align: center;
- border-radius: 6px;
- padding: 5px;
- position: absolute;
- z-index: 1;
- bottom: 125%;
- left: 50%;
- transform: translateX(-50%);
- opacity: 0;
- transition: opacity 0.3s;
- }
- .tooltip:hover .tooltiptext {
- visibility: visible;
- opacity: 1;
- }
- /* Define the style for upgrades */
- .upgrade {
- display: inline-block;
- background-color: #f5d76e;
- color: #333;
- border: 2px solid #e8c300;
- padding: 10px;
- font-size: 14px;
- margin: 10px;
- border-radius: 5px;
- cursor: pointer;
- }
- .upgrade:hover {
- background-color: #f7e289;
- }
- /* Define the style for the game footer */
- #footer {
- background-color: #333;
- color: #fff;
- text-align: center;
- padding: 10px;
- font-size: 12px;
- }
- /* Hide the default IGM logo (optional) */
- .logo {
- display: none;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement