55 lines
804 B
SCSS
55 lines
804 B
SCSS
|
|
.container {
|
|
background: #ffffff;
|
|
color: #000000;
|
|
padding: 20px;
|
|
animation: fade-in 1s ease-in-out;
|
|
}
|
|
|
|
@keyframes fade-in {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.title {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 18px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.button {
|
|
background: #000000;
|
|
color: #ffffff;
|
|
padding: 10px 20px;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.meeting {
|
|
&__cards {
|
|
list-style-type: none;
|
|
width: 80%;
|
|
padding: 0;
|
|
}
|
|
&__container {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
&__arrow {
|
|
|
|
}
|
|
}
|
|
|