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.
64 lines
1.0 KiB
64 lines
1.0 KiB
1 month ago
|
.container {
|
||
|
padding: 20px;
|
||
|
background-color: #f4f3f3;
|
||
|
min-height: 100vh;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
.search-bar {
|
||
|
position: sticky;
|
||
|
top: 0;
|
||
|
z-index: 1000;
|
||
|
background-color: #f4f3f3;
|
||
|
padding: 10px 0;
|
||
|
}
|
||
|
|
||
|
.search-bar input {
|
||
|
width: 100%;
|
||
|
height: 40px;
|
||
|
padding: 0 15px;
|
||
|
border: 1px solid #ccc;
|
||
|
border-radius: 20px;
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
|
||
|
.activity-list {
|
||
|
margin-top: 20px;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.activity-item {
|
||
|
width: 100%;
|
||
|
background-color: #fff;
|
||
|
padding: 15px;
|
||
|
margin-bottom: 10px;
|
||
|
border-radius: 5px;
|
||
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
.activity-info {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.activity-name {
|
||
|
font-size: 16px;
|
||
|
font-weight: bold;
|
||
|
color: #333;
|
||
|
}
|
||
|
|
||
|
.activity-participants {
|
||
|
font-size: 14px;
|
||
|
color: #666;
|
||
|
margin-top: 5px;
|
||
|
}
|
||
|
|
||
|
.create-btn {
|
||
|
background-color: #0d94ff;
|
||
|
color: white;
|
||
|
border-radius: 5px;
|
||
|
padding: 10px 20px;
|
||
|
font-size: 16px;
|
||
|
width: 100%;
|
||
|
}
|