CampFirePlay/public/scoreboard.css
Degradin f4fe2d2c06 MiniApp Update
Added scoreboard
2025-01-21 09:43:10 +03:00

79 lines
1.1 KiB
CSS

body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.tabs {
display: flex;
margin-bottom: 20px;
}
.tab-button {
padding: 10px 20px;
margin-right: 10px;
cursor: pointer;
background-color: #ddd;
border: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.tab-button.active {
background-color: #0066cc;
color: white;
}
.tab-button:hover {
background-color: #005bb5;
}
.tab-content {
display: flex;
flex-direction: column;
}
.tab-pane {
display: none;
}
.tab-pane.active {
display: block;
}
h2 {
font-size: 24px;
margin-bottom: 10px;
}
.card {
background-color: white;
padding: 15px;
margin-bottom: 15px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card h3 {
margin: 0;
font-size: 18px;
color: #333;
}
.card p {
margin: 5px 0;
color: #777;
}
.card .money {
font-weight: bold;
color: #0066cc;
}