mirror of
https://github.com/Damillora/Yuika
synced 2024-11-05 10:27:32 +00:00
91 lines
1.4 KiB
CSS
91 lines
1.4 KiB
CSS
@import url('https://fonts.googleapis.com/css?family=Exo+2:300,400,500&display=swap');
|
|
|
|
@tailwind base;
|
|
html {
|
|
@apply font-sans;
|
|
}
|
|
header {
|
|
background-color: #085d93;
|
|
@apply py-4 px-4;
|
|
}
|
|
.index-navbar header {
|
|
background-color: transparent;
|
|
}
|
|
.index-header {
|
|
min-height: 300px;
|
|
height: 50vh;
|
|
}
|
|
|
|
#post p {
|
|
@apply my-3;
|
|
}
|
|
#post h1 {
|
|
@apply my-4 text-4xl font-light;
|
|
}
|
|
#post h2 {
|
|
@apply my-4 text-3xl font-light;
|
|
}
|
|
#post h3 {
|
|
@apply my-4 text-2xl font-light;
|
|
}
|
|
#post h4 {
|
|
@apply my-4 text-xl font-light;
|
|
}
|
|
#post h5 {
|
|
@apply my-4 text-lg font-light;
|
|
}
|
|
#post h6 {
|
|
@apply my-4 text-base font-light;
|
|
}
|
|
#post a {
|
|
color: #085d93;
|
|
@apply underline;
|
|
}
|
|
#post .kg-card {
|
|
@apply px-4 py-4 flex flex-col items-center border-2 object-contain my-4;
|
|
}
|
|
#post .kg-card figcaption {
|
|
@apply text-sm text-gray-800 mt-2;
|
|
}
|
|
|
|
#post .kg-gallery-container {
|
|
|
|
}
|
|
#post .kg-gallery-row {
|
|
@apply flex flex-row;
|
|
}
|
|
#post .kg-gallery-image {
|
|
@apply mx-1;
|
|
}
|
|
|
|
|
|
footer {
|
|
background-color: #085d93;
|
|
@apply py-4 px-4;
|
|
}
|
|
|
|
.nav {
|
|
@apply hidden flex flex-col w-full;
|
|
display: none;
|
|
}
|
|
.nav li {
|
|
@apply flex flex-row justify-start items-center h-12 my-0 py-2 text-white text-sm px-2;
|
|
}
|
|
@screen md {
|
|
.nav {
|
|
@apply w-auto block flex-row;
|
|
}
|
|
.nav li {
|
|
@apply object-contain justify-center items-center border-b-0 border-t-0 my-0 inline-block px-4;
|
|
}
|
|
}
|
|
|
|
.nav-fixed {
|
|
background-color: #085d93;
|
|
z-index: 10;
|
|
}
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|