Added download links

This commit is contained in:
schnulller
2022-05-11 16:41:07 +02:00
parent 209c40258d
commit c87a8513ab
18 changed files with 419 additions and 240 deletions

View File

@@ -3,131 +3,131 @@
@tailwind utilities;
@font-face {
font-family:'Biolinum';
src:url('../fonts/LinBiolinum_Rah.ttf') format('truetype'), url('../fonts/LinBiolinum_R.woff') format('woff');
font-weight:normal;
font-style:normal;
font-family: "Biolinum";
src: url("../fonts/LinBiolinum_R.woff") format("woff");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family:'Biolinum';
src:url('../fonts/LinBiolinum_RIah.ttf') format('truetype'), url('../fonts/LinBiolinum_RI.woff') format('woff');
font-weight:normal;
font-style:italic;
font-family: "Biolinum";
src: url("../fonts/LinBiolinum_RI.woff") format("woff");
font-weight: normal;
font-style: italic;
}
@font-face {
font-family:'Biolinum';
src:url('../fonts/LinBiolinum_RBah.ttf') format('truetype'), url('../fonts/LinBiolinum_RB.woff') format('woff');
font-weight:bold;
font-style:normal;
font-family: "Biolinum";
src: url("../fonts/LinBiolinum_RB.woff") format("woff");
font-weight: bold;
font-style: normal;
}
@font-face {
font-family:'Libertine';
src:url('../fonts/LinLibertine_DRah.ttf') format('truetype'), url('../fonts/LinLibertine_R.woff') format('woff');
font-weight:normal;
font-style:normal;
font-family: "Libertine";
src: url("../fonts/LinLibertine_R.woff") format("woff");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family:'Libertine';
src:url('../fonts/LinLibertine_RIah.ttf') format('truetype'), url('../fonts/LinLibertine_RI.woff') format('woff');
font-weight:normal;
font-style:italic;
font-family: "Libertine";
src: url("../fonts/LinLibertine_RI.woff") format("woff");
font-weight: normal;
font-style: italic;
}
@font-face {
font-family:'Libertine';
src:url('../fonts/LinLibertine_RBah.ttf') format('truetype'), url('../fonts/LinLibertine_RB.woff') format('woff');
font-weight:bold;
font-style:normal;
font-family: "Libertine";
src: url("../fonts/LinLibertine_RB.woff") format("woff");
font-weight: bold;
font-style: normal;
}
body {
background-image:url('../img/subtlenet2.png');
background-repeat:repeat;
background-image: url("../img/subtlenet2.png");
background-repeat: repeat;
}
@layer components {
body {
@apply text-base lg:text-lg
}
body {
@apply text-base lg:text-lg;
}
p {
@apply my-3
}
p {
@apply my-3;
}
h1 {
@apply font-bold text-xl 2xl:font-normal 2xl:text-4xl
}
h1 {
@apply font-bold text-xl 2xl:font-normal 2xl:text-4xl;
}
h2 {
@apply text-lg 2xl:text-2xl
}
h2 {
@apply text-lg 2xl:text-2xl;
}
a {
@apply text-gray-600 hover:text-gray-900
}
a {
@apply text-gray-600 hover:text-gray-900;
}
.topnav {
@apply flex lg:grow-0 lg:shrink-0 md:text-lg 2xl:text-xl lg:place-self-end
}
.topnav {
@apply flex lg:grow-0 lg:shrink-0 md:text-lg 2xl:text-xl lg:place-self-end;
}
.topnav a {
@apply hidden lg:inline pr-5 2xl:pr-6
}
.topnav a {
@apply hidden lg:inline pr-5 2xl:pr-6;
}
.active {
@apply text-red-700 hover:text-red-700
}
.active {
@apply text-red-700 hover:text-red-700;
}
.ha-maincolumn {
@apply bg-slate-50 mx-auto p-2 md:p-4 lg:px-16 lg:py-12 xl:pr-80 text-lg font-serif
}
.ha-maincolumn {
@apply bg-slate-50 mx-auto p-2 md:p-4 lg:px-16 lg:py-12 xl:pr-80 text-lg font-serif;
}
.topnav.responsive {
@apply mt-4 text-base;
}
.topnav.responsive {
@apply mt-4 text-base;
}
}
ul {
list-style-type:circle;
list-style-type: circle;
}
.ha-maincolumn {
max-width:1280px;
max-width: 1280px;
}
.ha-maincolumn p {
hyphens:auto;
hyphens: auto;
}
.main__item {
background:var(--white);
border-radius:4px;
background: var(--white);
border-radius: 4px;
}
.main__item svg {
width:24px;
height:24px;
stroke:#000000;
stroke-width:2;
stroke-linecap:round;
stroke-linejoin:miter;
fill:none;
color:#000000;
width: 24px;
height: 24px;
stroke: #000000;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: miter;
fill: none;
color: #000000;
}
@media screen and (max-width:1344px) {
.topnav.responsive {
display:block !important;
width:100%;
}
@media screen and (max-width: 1344px) {
.topnav.responsive {
display: block !important;
width: 100%;
}
.topnav.responsive a {
display:block;
text-align:left;
clear:both;
}
}
.topnav.responsive a {
display: block;
text-align: left;
clear: both;
}
}