This repository has been archived on 2025-02-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
swift-mhoush.com/deploy/static/input.css
2025-02-19 17:01:08 -05:00

131 lines
1.9 KiB
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.cdnfonts.com/css/avenir');
@font-face {
font-family: "Anonymous Pro";
src: local("Anonymous Pro Regular"), url(/static/AnonymousPro-Regular.ttf);
}
/* BODY */
body.home nav {
@apply lg:justify-center;
}
body.home header img {
@apply block lg:hidden;
}
body.home .site-footer {
@apply hidden;
}
body.home .images img {
@apply inline m-5 h-[28px];
}
/* LINKS */
nav a {
@apply block border-b-2 border-transparent;
}
nav a:hover {
@apply border-orange;
}
nav a.active {
@apply border-orange text-white;
}
.gray-links a {
@apply underline text-inherit;
}
.gray-links a:hover {
@apply text-white;
}
a.orange {
@apply text-orange;
}
a.orange:hover {
@apply underline;
}
a[href^="https://github.com"].app {
background: transparent url("images/github.svg") no-repeat;
background-size: 1em 1em;
padding-left: 20px;
}
a[href^="https://itunes.apple.com"].app, a[href^="https://apps.apple.com"].app {
background: transparent url("images/apple.svg") no-repeat;
background-size: 1em 1em;
padding-left: 20px;
}
/* PROSE */
.prose {
@apply prose-code:before:hidden prose-code:after:hidden;
}
.prose code {
@apply font-normal text-base;
}
.prose pre {
@apply shadow-lg shadow-nav;
}
.prose hr {
margin-left: 140px;
margin-right: 140px;
}
.fa-regular {
font-weight: normal;
}
/* SCREENSHOTS */
.screenshots.break_1 span {
@apply flex-1;
}
.screenshots.break_2 span {
@apply flex-[0_0_50%] lg:flex-1;
}
.screenshots.break_3 span {
@apply flex-[0_0_33%] lg:flex-1;
}
.screenshots img {
padding: 3px 3px 0 0;
border-radius: 0px;
margin: 0;
}
.screenshots.rounded img {
border-radius: 10%/4.7%;
}
@media (min-width: 860px) {
.prose pre {
margin-left: -20px;
width: 840px;
padding-left: 20px;
}
body.projects .bg-sub {
margin-left: -20px;
width: 840px;
padding-left: 20px;
}
}