50 lines
671 B
CSS
50 lines
671 B
CSS
ul {
|
|
width: 50vw;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
text-align: center;
|
|
padding-left: 0px;
|
|
list-style: none;
|
|
}
|
|
|
|
ul li {
|
|
margin-bottom: 3vh;
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
}
|
|
|
|
ul li a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
ul li a:link {
|
|
text-decoration: none;
|
|
}
|
|
|
|
ul li a:hover {
|
|
text-decoration: underline;
|
|
color: #AAA;
|
|
}
|
|
|
|
ul li div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
ul li div div {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
ul li div p {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.title {
|
|
margin-top: 5vh;
|
|
margin-bottom: 7vh;
|
|
text-align: center;
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
}
|