You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
607 B
CSS
36 lines
607 B
CSS
5 years ago
|
.pageContainer {
|
||
|
max-width: 800px;
|
||
|
margin: 0 auto;
|
||
|
width: calc(100% - 100px);
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.parentLink {
|
||
|
position: absolute;
|
||
|
top: -65px;
|
||
|
color: rgb(121, 10, 141);
|
||
|
}
|
||
|
|
||
|
.description {
|
||
|
text-align: center;
|
||
|
margin-top: -20px;
|
||
|
}
|
||
|
|
||
|
.childCategories {
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: center;
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
|
||
|
.childCategories > a {
|
||
|
display: inline-block;
|
||
|
border: solid 1px rgb(248, 48, 255);
|
||
|
background: rgba(248, 48, 255, 0.4);
|
||
|
padding: 4px 10px;
|
||
|
border-radius: 15px;
|
||
|
text-decoration: none;
|
||
|
color: black;
|
||
|
margin: 10px 20px;
|
||
|
}
|