Yuika/assets/css/styles.css

148 lines
2.6 KiB
CSS
Raw Normal View History

2019-11-08 20:59:26 +00:00
@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;
2019-11-08 20:59:26 +00:00
@apply py-4 px-4;
}
2019-11-09 06:03:26 +00:00
.index-navbar header {
background-color: transparent;
}
.index-header {
min-height: 300px;
height: 50vh;
}
2019-11-08 20:59:26 +00:00
#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;
2019-11-08 20:59:26 +00:00
}
2019-11-09 13:19:36 +00:00
2019-11-08 20:59:26 +00:00
#post .kg-card {
2019-11-09 13:19:36 +00:00
@apply px-4 py-4 flex flex-col items-center object-contain my-4;
2019-11-08 20:59:26 +00:00
}
2019-11-09 17:57:34 +00:00
#post .kg-card .kg-image {
@apply w-full;
}
#post .kg-width-wide .kg-image {
min-width: 100vw;
}
@screen md {
#post .kg-width-wide .kg-image {
min-width: 125%;
}
}
@screen lg {
#post .kg-width-wide .kg-image {
min-width: 175%;
}
}
@screen xl {
#post .kg-width-wide .kg-image {
min-width: 140%;
}
}
#post .kg-width-full .kg-image {
min-width: 100vw;
}
2019-11-08 20:59:26 +00:00
#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;
}
2019-11-09 13:19:36 +00:00
#post .kg-bookmark-card {
@apply text-black;
}
#post .kg-bookmark-container {
@apply flex flex-row justify-between text-black border border-gray-500;
}
#post .kg-bookmark-content {
@apply w-2/3 py-4 px-4;
}
#post .kg-bookmark-thumbnail {
@apply w-1/3 h-full;
}
#post .kg-bookmark-thumbnail img {
@apply w-full h-full object-cover;
}
#post .kg-bookmark-title {
@apply font-medium text-xl no-underline mb-1;
}
#post .kg-bookmark-description {
@apply font-light text-sm my-2;
}
#post .kg-bookmark-metadata {
@apply flex flex-row items-start justify-end h-6 my-4;
}
#post .kg-bookmark-icon {
@apply h-full mx-2;
}
#post .kg-bookmark-author {
@apply text-sm text-blue-700 truncate;
}
#post .kg-bookmark-publisher {
@apply text-sm text-blue-700 truncate;
}
2019-11-08 20:59:26 +00:00
footer {
background-color: #085d93;
2019-11-08 20:59:26 +00:00
@apply py-4 px-4;
}
2019-11-08 21:35:37 +00:00
.nav {
2019-11-09 12:52:19 +00:00
@apply hidden flex flex-col w-full pl-0 my-0 h-12;
2019-11-08 21:35:37 +00:00
display: none;
}
.nav li {
2019-11-09 12:52:19 +00:00
@apply flex flex-row justify-start items-center h-full my-0 py-2 text-white text-sm px-2;
2019-11-08 21:35:37 +00:00
}
@screen md {
.nav {
2019-11-08 22:01:26 +00:00
@apply w-auto block flex-row;
2019-11-08 21:35:37 +00:00
}
2019-11-08 22:01:26 +00:00
.nav li {
@apply object-contain justify-center items-center border-b-0 border-t-0 my-0 inline-block px-4;
2019-11-08 21:35:37 +00:00
}
}
2019-11-09 06:03:26 +00:00
.nav-fixed {
background-color: #085d93;
2019-11-09 06:03:26 +00:00
z-index: 10;
}
2019-11-08 20:59:26 +00:00
@tailwind components;
@tailwind utilities;