31 lines
465 B
CSS
31 lines
465 B
CSS
|
#categories ul {
|
||
|
list-style-type: none;
|
||
|
display: flex;
|
||
|
justify-content:space-around;
|
||
|
}
|
||
|
|
||
|
.elem {
|
||
|
margin: 10px;
|
||
|
padding: 5px;
|
||
|
padding-top: 2px;
|
||
|
background-color: darkslategrey;
|
||
|
}
|
||
|
|
||
|
.elem a {
|
||
|
color: white;
|
||
|
font-weight: bolder;
|
||
|
}
|
||
|
|
||
|
.elem ul {
|
||
|
list-style-type: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
display: flex;
|
||
|
justify-content: start;
|
||
|
}
|
||
|
|
||
|
.elem li {
|
||
|
margin-right: 5px;
|
||
|
padding: 5px;
|
||
|
background-color: dimgray;
|
||
|
}
|