44 lines
537 B
CSS
44 lines
537 B
CSS
a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
ul {
|
|
margin-left: 1rem;
|
|
}
|
|
ul li {
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.content {
|
|
z-index: unset !important;
|
|
position: unset !important;
|
|
}
|
|
|
|
#title{
|
|
display:none;
|
|
}
|
|
|
|
#divbody .content {
|
|
padding: unset !important;
|
|
}
|
|
|
|
.content-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-top: 4rem;
|
|
height: 100vh;
|
|
}
|
|
.content + * {
|
|
all: unset;
|
|
}
|
|
|
|
.footer {
|
|
padding: 1rem;
|
|
background-color: #333333;
|
|
color: #e9eaed;
|
|
}
|
|
|
|
.footer a {
|
|
font-weight: bold;
|
|
color: #e9eaed;
|
|
} |