45 lines
1.2 KiB
CSS
45 lines
1.2 KiB
CSS
body {
|
|
margin: 0;
|
|
font-family: Arial, sans-serif;
|
|
background: linear-gradient(135deg, #7b2ff7, #f107a3);
|
|
color: white;
|
|
}
|
|
|
|
.container { padding: 20px; max-width: 1000px; margin: auto; }
|
|
|
|
.header {
|
|
display: flex; justify-content: space-between; align-items: center;
|
|
padding: 15px 20px; border-radius: 20px; margin-bottom: 20px;
|
|
}
|
|
|
|
.user-info { display: flex; align-items: center; gap: 15px; }
|
|
.user-icon {
|
|
width: 50px; height: 50px; border-radius: 50%;
|
|
background: #fff; color: #000; display:flex; align-items:center; justify-content:center;
|
|
font-size: 20px; font-weight: bold;
|
|
}
|
|
|
|
.actions button { margin-left: 10px; }
|
|
|
|
.btn {
|
|
padding: 10px 20px; border: none; border-radius: 10px;
|
|
font-size: 15px; cursor: pointer;
|
|
}
|
|
.gold { background: gold; }
|
|
.gray { background: #444; color: white; }
|
|
|
|
.title { text-align: center; margin-top: 40px; margin-bottom: 40px; }
|
|
|
|
.stage-grid {
|
|
display: grid; grid-template-columns: repeat(3, 1fr);
|
|
gap: 20px;
|
|
}
|
|
|
|
.stage-btn {
|
|
background: white; color: black; padding: 30px; border-radius: 20px;
|
|
cursor: pointer; transition: .3s; text-align: center;
|
|
}
|
|
.stage-btn:hover { transform: scale(1.05); }
|
|
|
|
.icon { font-size: 40px; margin-bottom: 10px; display:block; }
|