You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
913 B
63 lines
913 B
2 months ago
|
.container {
|
||
|
padding: 20px;
|
||
|
background-color: #f4f3f3;
|
||
|
}
|
||
|
|
||
|
.activity-info {
|
||
|
background-color: white;
|
||
|
padding: 15px;
|
||
|
border-radius: 10px;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.activity-name {
|
||
|
font-size: 20px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.activity-participants {
|
||
|
font-size: 14px;
|
||
|
color: #666;
|
||
|
}
|
||
|
|
||
|
.action-buttons {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.btn-action {
|
||
|
width: 48%;
|
||
|
height: 40px;
|
||
|
background-color: #0d94ff;
|
||
|
color: white;
|
||
|
border-radius: 20px;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
.selected-user {
|
||
|
background-color: white;
|
||
|
padding: 15px;
|
||
|
border-radius: 10px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.selected-user-name {
|
||
|
font-size: 18px;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
.score-buttons {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.btn-score {
|
||
|
width: 80px;
|
||
|
height: 30px;
|
||
|
background-color: #0d94ff;
|
||
|
color: white;
|
||
|
border-radius: 15px;
|
||
|
font-size: 14px;
|
||
|
margin: 0 10px;
|
||
|
}
|