husk/static/stylesheet.css

158 lines
4.0 KiB
CSS
Raw Normal View History

2022-10-29 01:27:18 +02:00
html *{ font-family: Dejavu Sans Mono, Noto Sans Mono, Menlo, Consolas, Monaco, monospace; }
body { margin:0; padding: 0; text-decoration: none; }
h1 {font-size: 33px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 51px; }
h2 {font-size: 26px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 41px; }
h3 { font-size: 16px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 27px; }
p { font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 27px; }
blockquote { text-align: center; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 27px; }
pre { font-family: monospace; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 27px; padding-left: 2ch;padding-top:2ch; padding-bottom: 2ch; overflow: auto; max-width: 100%; border-radius: 5px;}
2022-10-29 00:15:24 +02:00
code { max-width: 100%; overflow: auto; }
img { max-width: 100%; }
2022-09-02 09:05:59 +02:00
hr { height: 0px; }
2022-10-27 00:52:17 +02:00
a {color: inherit; }
a:hover { text-decoration: solid underline;}
2022-10-29 00:15:24 +02:00
details > summary{ font-size: 16px;}
2022-10-27 00:52:17 +02:00
details > summary:hover { }
2022-09-02 09:05:59 +02:00
details summary::-webkit-details-marker,
2022-10-29 00:15:24 +02:00
details summary::marker { height: auto; content: "\1F4C1\20";}
/*details summary::marker { display: none; content: ""; }*/
2022-10-27 00:52:17 +02:00
::selection { }
::-moz-selection { }
.menu { line-height: 1em; font-size: 32px; text-decoration: none; width: 100%; margin: 0 auto; opacity: 1; }
2022-10-29 00:15:24 +02:00
.banner { float: left; padding-left: 2em; padding-top: 8px; text-align: center; }
.header-wrapper { width: 100%; position: fixed; top: 0; padding-bottom: 12px; padding-top: 8px; opacity: 0.9; }
2022-09-02 09:05:59 +02:00
2022-09-18 21:00:35 +02:00
.HolyGrail,
.HolyGrail-body {
display: flex;
flex-direction: column;
2022-09-02 09:05:59 +02:00
}
2022-09-18 21:00:35 +02:00
.HolyGrail-nav {
padding-right: 1em;
2022-09-22 00:26:16 +02:00
padding-top: 1em;
2022-10-27 00:52:17 +02:00
padding-bottom: 1em;
2022-09-18 21:00:35 +02:00
order: -1;
}
2022-10-27 00:52:17 +02:00
@media (min-width: 768px) {
2022-09-18 21:00:35 +02:00
.HolyGrail-body {
flex-direction: row;
flex: 1;
text-align: left;
2022-10-29 00:15:24 +02:00
padding-top: 3.6%;
2022-09-18 21:00:35 +02:00
}
.HolyGrail-content {
flex: 1;
text-align: left;
2022-10-29 00:15:24 +02:00
margin-left: 2em;
margin-right: 2em;
/* max-width: 80.5em; */
overflow: auto;
padding-top: 1em;
2022-09-18 21:00:35 +02:00
}
.HolyGrail-nav, .HolyGrail-ads {
/* 12em is the width of the columns */
2022-10-27 00:52:17 +02:00
flex: 0 0 12em;
/* experimental line height */
2022-10-29 01:27:18 +02:00
line-height: 27px;
2022-09-18 21:00:35 +02:00
}
2022-10-27 00:52:17 +02:00
.HolyGrail-ads {
overflow: hidden;
padding-right: 8px;
min-width: 18em;
max-width: 18em;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
.HolyGrail-nav {
min-width: 18em;
max-width: 18em;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
2022-09-02 09:05:59 +02:00
}
2022-10-27 00:52:17 +02:00
2022-09-18 21:00:35 +02:00
.HolyGrail-nav ul {
list-style-type: none!important;
2022-10-27 00:52:17 +02:00
padding-left: 1.5ch;
2022-09-18 21:00:35 +02:00
margin: 0em;
text-align: left;
2022-10-27 00:52:17 +02:00
}
2022-09-18 21:00:35 +02:00
.HolyGrail-nav li {
list-style-type: none!important;
2022-10-27 00:52:17 +02:00
/* padding-left : 0.5ch; */
2022-09-18 21:00:35 +02:00
margin: 0em;
text-align: left;
2022-10-27 00:52:17 +02:00
/* experimental line height */
list-style-position: inside;
}
2022-09-18 21:00:35 +02:00
2022-10-27 00:52:17 +02:00
.HolyGrail-nav li::marker {
2022-10-29 00:15:24 +02:00
content: "\1F4DD\20";
2022-10-27 00:52:17 +02:00
display: none;
2022-10-29 00:15:24 +02:00
/*content: "";*/
2022-10-27 00:52:17 +02:00
2022-09-18 21:00:35 +02:00
}
2022-10-27 00:52:17 +02:00
.HolyGrail-nav a{
overflow-wrap: break-word;
text-decoration: none;
}
.HolyGrail-nav a:hover{
text-decoration: solid underline;
}
2022-09-02 09:05:59 +02:00
2022-10-27 00:52:17 +02:00
.HolyGrail-nav a:before{
2022-09-18 21:00:35 +02:00
content: "";
2022-10-27 00:52:17 +02:00
}
2022-09-02 09:05:59 +02:00
2022-10-27 00:52:17 +02:00
.HolyGrail-ads ul li {
list-style-type: none!important;
text-align: left;
border: none;
white-space: normal;
}
2022-09-18 21:00:35 +02:00
2022-10-27 00:52:17 +02:00
.HolyGrail-ads a {
text-decoration: none;
}
2022-09-18 21:00:35 +02:00
2022-10-27 00:52:17 +02:00
.HolyGrail-ads a:hover {
text-decoration: solid underline;
}
.HolyGrail-ads ul{
padding-left: 1.5ch;
padding-right: 0;
}
2022-09-02 09:05:59 +02:00
2022-10-27 00:52:17 +02:00
.HolyGrail-ads ul li:before {
content: "\007C\20";
}
2022-09-02 09:05:59 +02:00
}
2022-10-27 00:52:17 +02:00
.search-container {
/*width: 75%; */
margin: 0 auto;
2022-10-29 00:15:24 +02:00
2022-10-27 00:52:17 +02:00
/*margin-right: 0%;*/
2022-10-29 00:15:24 +02:00
width: 50%;
2022-09-02 09:05:59 +02:00
}
.search-container input {
2022-10-29 00:15:24 +02:00
width: 100%;
2022-09-02 09:05:59 +02:00
height: 42px;
2022-10-27 00:52:17 +02:00
font-weight: 30px;
2022-09-02 09:05:59 +02:00
cursor: pointer;
2022-09-25 15:23:58 +02:00
padding-left: 1ch;
padding-right: 1ch;
2022-10-27 00:52:17 +02:00
border-radius: 5px;
2022-09-02 09:05:59 +02:00
}
.search-container input:focus {
outline: 0 none;
}
2022-10-27 00:52:17 +02:00