36 lines
542 B
CSS
36 lines
542 B
CSS
:root {
|
|
--vp-nav-height: 84px;
|
|
--vp-nav-logo-height: 64px;
|
|
}
|
|
|
|
.title img {
|
|
border-radius: 2em;
|
|
}
|
|
|
|
.VPHero .VPImage.image-src {
|
|
border-radius: 10em;
|
|
}
|
|
|
|
.form-cell {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.form-cell input[type="text"] {
|
|
border: 1px solid rgb(60, 60, 67);
|
|
display: block;
|
|
padding: 0.25em 0.5em;
|
|
border-radius: 0.25em;
|
|
min-width: 40em;
|
|
}
|
|
.form-cell input[type="text"]:focus {
|
|
border: 1px solid #0c78fc;
|
|
}
|
|
.nix-code {
|
|
white-space: pre-wrap;
|
|
}
|
|
.nix-code code {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
display: block;
|
|
}
|