Files
ai6-m2/static/style.css
2025-11-17 23:07:52 +03:00

106 lines
1.7 KiB
CSS

/* TODO: Artyom - Enhance this CSS with Russian-themed design */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background: #1a2a6c;
color: white;
min-height: 100vh;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
padding: 20px;
}
header {
text-align: center;
margin-bottom: 20px;
padding: 15px;
background: #b21f1f;
border-radius: 8px;
}
h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
.question-container {
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
}
.question {
font-size: 1.3rem;
margin-bottom: 20px;
text-align: center;
}
.options-container {
display: grid;
gap: 10px;
}
.option {
background: #fdbb2d;
color: #1a2a6c;
padding: 15px;
border-radius: 5px;
cursor: pointer;
text-align: center;
font-weight: bold;
}
.option:hover {
background: #e6a923;
}
.lifelines {
background: rgba(255, 255, 255, 0.1);
padding: 15px;
border-radius: 8px;
}
.lifeline-buttons {
display: flex;
gap: 10px;
justify-content: center;
}
.lifeline-btn {
background: #1a2a6c;
color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
}
.start-btn {
background: #fdbb2d;
color: #1a2a6c;
border: none;
padding: 15px 30px;
border-radius: 25px;
font-size: 1.2rem;
cursor: pointer;
display: block;
margin: 20px auto;
}
.game-over-screen {
text-align: center;
padding: 30px;
}