Entrance Announcement
MICTE 2080
2080 Magh 07
Game: Difference between revisions
Jump to navigation
Jump to search
(WikiSysop created the page Game using a non-default content model "CSS") |
No edit summary |
||
Line 1: | Line 1: | ||
body { | |||
font-family: Arial, sans-serif; | |||
text-align: center; | |||
margin-top: 50px; | |||
background-color: #FFDAB9; | |||
} | |||
#score-container { | |||
position: fixed; | |||
top: 10px; | |||
left: 10px; | |||
font-size: 24px; | |||
display: flex; | |||
justify-content: space-between; | |||
width: 100%; | |||
padding: 0 20px; | |||
} | |||
#word-container { | |||
margin-top: 20px; | |||
font-size: 32px; | |||
display: inline-block; | |||
padding: 10px; | |||
border: 1px solid #000; | |||
border-radius: 5px; | |||
background-color: #FFDAB9; | |||
} | |||
#result { | |||
margin-top: 20px; | |||
font-size: 24px; | |||
height: 30px; | |||
} | |||
.input-container { | |||
margin-top: 20px; | |||
} | |||
input { | |||
padding: 10px; | |||
font-size: 18px; | |||
width: 300px; | |||
margin-right: 10px; | |||
} | |||
button { | |||
padding: 10px 20px; | |||
font-size: 18px; | |||
} | |||
.letter { | |||
font-size: 24px; | |||
cursor: pointer; | |||
padding: 10px; | |||
border: 1px solid #000; | |||
display: inline-flex; | |||
align-items: center; | |||
justify-content: center; | |||
height: 50px; | |||
width: 50px; | |||
user-select: none; | |||
margin: 5px; | |||
border-radius: 5px; | |||
} | |||
.letter:hover { | |||
background-color: #FFD209; | |||
} |
Latest revision as of 04:17, 6 November 2024
body { font-family: Arial, sans-serif; text-align: center; margin-top: 50px; background-color: #FFDAB9; } #score-container { position: fixed; top: 10px; left: 10px; font-size: 24px; display: flex; justify-content: space-between; width: 100%; padding: 0 20px; } #word-container { margin-top: 20px; font-size: 32px; display: inline-block; padding: 10px; border: 1px solid #000; border-radius: 5px; background-color: #FFDAB9; } #result { margin-top: 20px; font-size: 24px; height: 30px; } .input-container { margin-top: 20px; } input { padding: 10px; font-size: 18px; width: 300px; margin-right: 10px; } button { padding: 10px 20px; font-size: 18px; } .letter { font-size: 24px; cursor: pointer; padding: 10px; border: 1px solid #000; display: inline-flex; align-items: center; justify-content: center; height: 50px; width: 50px; user-select: none; margin: 5px; border-radius: 5px; } .letter:hover { background-color: #FFD209; }