38 lines
608 B
CSS
38 lines
608 B
CSS
.containerDescriptionSection{
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0 40px;
|
|
}
|
|
|
|
.containerDescriptionSectionNav{
|
|
display: flex;
|
|
list-style: none;
|
|
padding: 0 64px;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.linkContainer{
|
|
width: 114px;
|
|
height: 38px;
|
|
display: grid;
|
|
place-items: center;
|
|
|
|
border-bottom: 2px solid #000000;
|
|
}
|
|
|
|
.linkContainer a:active{
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
line-height: 38px;
|
|
color: #000000;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* .active{
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
line-height: 38px;
|
|
color: #000000;
|
|
text-decoration: none;
|
|
} */
|