File size: 2,934 Bytes
6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b 570a1ab f75e86a 6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b f75e86a 6d0e66b 570a1ab f75e86a 6d0e66b 570a1ab f75e86a 6d0e66b 570a1ab f75e86a 570a1ab |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
#stats {
display: flex;
justify-content: space-between;
width: 100%;
padding: 10px;
background-color: #333;
color: white;
}
#game-area {
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#coin {
width: 100px;
height: 100px;
background-color: #ffd700;
border-radius: 50%;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
font-weight: bold;
transition: transform 0.3s ease-in-out;
}
#coin:hover {
transform: scale(1.1);
}
#shop {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
padding: 10px;
background-color: #ddd;
}
.shop-item {
display: flex;
flex-direction: column;
align-items: center;
margin: 0 10px;
}
.coin-icon {
width: 50px;
height: 50px;
border-radius: 50%;
margin-bottom: 5px;
cursor: pointer;
border: 2px solid transparent;
}
.coin-icon.selected {
border-color: #333;
}
#mint-button {
background-color: #4caf50;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 5px;
}
#game-over {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
z-index: 1000;
}
#leaderboard {
margin-top: 20px;
width: 300px;
}
#leaderboard table {
background-color: rgba(255, 255, 255, 0.1);
color: white;
margin-bottom: 20px;
max-height: 300px;
overflow-y: auto;
width: 100%;
border-collapse: collapse;
}
#leaderboard th,
#leaderboard td {
border: 1px solid white;
padding: 5px;
text-align: center;
}
#initials-form {
margin-top: 20px;
}
#initials-input {
padding: 5px;
font-size: 16px;
}
#submit-score,
#play-again {
background-color: #4caf50;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 5px;
}
.coin-tooltip {
position: absolute;
background-color: rgba(0, 0, 0, 0.8);
color: white;
padding: 10px;
border-radius: 5px;
font-size: 14px;
z-index: 1000;
pointer-events: none;
opacity: 0;
transition: opacity 0.3s ease-in-out;
}
.shop-item:hover .coin-tooltip {
opacity: 1;
}
.coin-tooltip p {
margin: 5px 0;
}
|