Ported libs fo net V6

This commit is contained in:
schnulller
2022-05-17 01:21:10 +02:00
parent cb23a75761
commit 2ffd46cd62
79 changed files with 225299 additions and 124 deletions

View File

@@ -652,8 +652,8 @@ body {
background-color: rgb(248 250 252 / var(--tw-bg-opacity));
padding-top: 3rem;
padding-bottom: 3rem;
padding-left: 4rem;
padding-right: 4rem;
padding-left: 3rem;
padding-right: 3rem;
font-family: Libertine, serif;
-webkit-hyphens: auto;
-ms-hyphens: auto;
@@ -662,7 +662,8 @@ body {
@media (min-width: 1024px) {
.ha-static {
padding-right: 20rem;
padding-left: 4rem;
padding-right: 4rem;
}
}
@@ -709,26 +710,40 @@ body {
}
.ha-static table th {
padding-left: 0.5rem;
padding-right: 0.5rem;
text-align: left;
font-weight: 400;
--tw-text-opacity: 1;
color: rgb(216 0 0 / var(--tw-text-opacity));
}
.ha-static .fullwidth {
width: 100%;
@media (min-width: 1190px) {
.ha-static table th {
padding-right: 1rem;
}
}
@media (min-width: 1024px) {
.ha-static .fullwidth {
margin-right: -20rem;
}
.ha-static table tr td {
padding-left: 0.5rem;
padding-right: 0.5rem;
vertical-align: top;
}
@media (min-width: 1190px) {
.ha-static .fullwidth {
max-width: 1190px;
.ha-static table tr td {
white-space: nowrap;
padding-right: 1rem;
}
.ha-static table tr td:last-child {
white-space: normal;
}
}
.ha-static table tr:nth-child(even) {
--tw-bg-opacity: 1;
background-color: rgb(226 232 240 / var(--tw-bg-opacity));
}
.ha-static p {
@@ -750,8 +765,71 @@ body {
text-decoration-style: solid;
}
.ha-static .ha-footnote {
position: relative;
font-size: 0.875rem;
line-height: 1.25rem;
}
@media (min-width: 1190px) {
.ha-static .ha-footnote {
font-size: 1rem;
line-height: 1.5rem;
}
}
.ha-static .ha-footnote .ha-footnote-ref {
position: absolute;
left: -2.5rem;
display: inline-block;
width: 2rem;
text-align: right;
}
/* Classes from .NET */
.ha-serif {
font-family: Libertine, serif;
}
.ha-aq {
font-family: Biolinum, sans-serif;
}
.ha-ul {
-webkit-text-decoration-line: underline;
text-decoration-line: underline;
}
.ha-del {
-webkit-text-decoration-line: line-through;
text-decoration-line: line-through;
}
.ha-hand {
font-family: Playfair, serif;
font-size: 0.9rem;
}
.ha-added {
--tw-bg-opacity: 1;
background-color: rgb(209 213 219 / var(--tw-bg-opacity));
padding-left: 0.25rem;
padding-right: 0.25rem;
}
.ha-note {
font-style: italic;
--tw-text-opacity: 1;
color: rgb(75 85 99 / var(--tw-text-opacity));
}
.ha-sup {
position: relative;
top: -0.5em;
font-size: 80%;
}
/* Classes from Javascript */
.active {
@@ -891,11 +969,25 @@ body {
position: sticky;
}
.my-8 {
margin-top: 2rem;
margin-bottom: 2rem;
}
.mx-8 {
margin-left: 2rem;
margin-right: 2rem;
}
.mx-auto {
margin-left: auto;
margin-right: auto;
}
.ml-8 {
margin-left: 2rem;
}
.mb-6 {
margin-bottom: 1.5rem;
}
@@ -960,6 +1052,10 @@ body {
cursor: default;
}
.list-disc {
list-style-type: disc;
}
.flex-row {
flex-direction: row;
}
@@ -1186,6 +1282,12 @@ body {
hyphens: auto;
}
.unhyphenate {
-webkit-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
.ha-menu-arrowsymbol::after {
display: inline-block;
margin-left: 0.2em;
@@ -1236,6 +1338,10 @@ body {
.md\:hidden {
display: none;
}
.md\:pr-80 {
padding-right: 20rem;
}
}
@media (min-width: 1190px) {
@@ -1255,6 +1361,10 @@ body {
padding-left: 2rem;
padding-right: 2rem;
}
.desktop\:pr-8 {
padding-right: 2rem;
}
}
@media (min-width: 1440px) {

View File

@@ -139,7 +139,7 @@
} */
.ha-static {
@apply w-full bg-slate-50 py-12 px-16 hyphenate md:pr-80 font-serif
@apply w-full bg-slate-50 py-12 px-12 md:px-16 hyphenate font-serif
}
.ha-static h1 {
@apply font-bold text-xl desktop:font-normal desktop:text-4xl mb-6
@@ -158,11 +158,19 @@
}
.ha-static table th {
@apply text-left font-normal text-hamannHighlight
@apply pl-2 pr-2 desktop:pr-4 text-left font-normal text-hamannHighlight
}
.ha-static .fullwidth {
@apply w-full desktop:max-w-screen-desktop md:-mr-80
.ha-static table tr td {
@apply pl-2 pr-2 desktop:pr-4 align-top desktop:whitespace-nowrap
}
.ha-static table tr td:last-child {
@apply desktop:whitespace-normal
}
.ha-static table tr:nth-child(even) {
@apply bg-slate-200
}
.ha-static p {
@@ -177,7 +185,46 @@
@apply underline decoration-solid
}
.ha-static .ha-footnote {
@apply relative text-sm desktop:text-base
}
.ha-static .ha-footnote .ha-footnote-ref {
@apply inline-block absolute text-right w-8 -left-10
}
/* Classes from .NET */
.ha-serif {
@apply font-serif
}
.ha-aq {
@apply font-sans
}
.ha-ul {
@apply underline
}
.ha-del {
@apply line-through
}
.ha-hand {
@apply font-classy text-[0.9rem]
}
.ha-added {
@apply bg-gray-300 px-1
}
.ha-note {
@apply italic text-gray-600
}
.ha-sup {
@apply relative -top-[0.5em] text-[80%]
}
/* Classes from Javascript */
.active {
@@ -216,7 +263,6 @@
.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content a {
@apply py-1 desktop:py-2
}
}
* {
@@ -236,6 +282,10 @@ body {
hyphens: auto;
}
.unhyphenate {
hyphens: none;
}
.ha-menu-arrowsymbol::after {
display: inline-block;
margin-left: 0.2em;