51 lines
712 B
SCSS
51 lines
712 B
SCSS
.infoContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
hr {
|
|
border: 0.2rem solid #d5caf29d;
|
|
width: 80%;
|
|
}
|
|
|
|
div {
|
|
width: 80%;
|
|
}
|
|
}
|
|
|
|
.infoTitle {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-left: 1.5rem;
|
|
padding-right: 1.5rem;
|
|
margin-top: 1.5rem;
|
|
cursor: pointer;
|
|
width: 80%;
|
|
|
|
h2 {
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
h2:hover {
|
|
color: rgb(117, 117, 117);
|
|
transition: color 0.3s;
|
|
}
|
|
}
|
|
|
|
.infoContent {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.linkList {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
a {
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|