This repository has been archived on 2025-06-11. You can view files and clone it, but cannot push or open issues or pull requests.
www_ow_freezone/css/index.css
2022-03-06 17:31:09 +03:00

94 lines
1.7 KiB
CSS

/*! purgecss start ignore */
@import "nav.css";
@import "code.css";
@import "tailwindcss/base";
@import "layout.css";
@import "tailwindcss/components";
@import "admonition.css";
/*! purgecss end ignore */
@import "tailwindcss/utilities";
@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Custom CSS for header partial */
.backdrop-blur {
-webkit-backdrop-filter: blur(40px);
}
* {
font-family: "Work Sans";
}
.bg-semi-white {
background-color: rgba(255, 255, 255, 0.75);
}
/* Custom css allowing image styling in markdown */
img[src*="#small"] {
width: 68px;
}
img[src*="#medium"] {
width: 150px;
margin: auto;
}
img[src*="#logo"] {
max-width: min(250px, 100%);
margin: auto;
}
img[src*="#large"] {
width: 400px;
margin: auto;
}
@layer components {
h1 {
@apply text-3xl lg:text-5xl font-light;
}
h2 {
@apply text-2xl lg:text-4xl font-light;
}
h4 {
@apply text-lg lg:text-xl font-light;
}
h5 {
@apply text-base not-italic font-light leading-8;
}
h6 {
@apply text-sm lg:text-sm font-normal;
}
nav p {
@apply hidden sm:block md:block lg:block xl:block 2xl:block;
}
blockquote {
@apply border-l-4 border-gray-400 mx-2 my-2 p-2;
}
li {
@apply text-base lg:text-base font-normal;
}
li li {
@apply text-sm lg:text-sm font-light;
}
}
h3 {
font-size: 1em;
font-style: normal;
font-weight: 600;
color: rgba(0, 0, 0, 0.5);
}
p {
font-size: 15px;
}
a {
border: none;
}
header {
font-family: "Work Sans";
}