68 lines
1.0 KiB
CSS
68 lines
1.0 KiB
CSS
ol,
|
|
li {
|
|
list-style: none;
|
|
font-size: 1em;
|
|
}
|
|
|
|
.part-title {
|
|
font-weight: bold;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
a {
|
|
position: relative;
|
|
text-decoration: none;
|
|
color: rgb(var(--mdui-color-primary));
|
|
}
|
|
|
|
a:after {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: -2px;
|
|
left: 50%;
|
|
width: 0;
|
|
height: 2px;
|
|
transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
|
|
background-color: rgb(var(--mdui-color-primary))
|
|
}
|
|
|
|
a:hover:after {
|
|
width: 100%;
|
|
left: 0;
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 0px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 0px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.preset {
|
|
min-height: 1rem !important;
|
|
}
|
|
|
|
.container {
|
|
min-height: 1rem !important;
|
|
}
|
|
|
|
.menu-link {
|
|
color: rgb(var(--mdui-color-on-surface));
|
|
}
|
|
|
|
.menu-link:after {
|
|
bottom: -2px;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 2px;
|
|
background-color: rgb(var(--mdui-color-primary));
|
|
transition: width 0.2s ease-in-out, left 0.2s ease-in-out;
|
|
}
|
|
|
|
.menu-link:hover:after {
|
|
width: calc(100% - 20px);
|
|
left: 20px;
|
|
} |