2019-11-09 21:10:51 +00:00
|
|
|
|
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 {
|
2019-11-09 10:31:34 +00:00
|
|
|
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 {
|
2019-11-09 10:31:34 +00:00
|
|
|
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-10 06:35:39 +00:00
|
|
|
@apply py-4 flex flex-col items-center object-contain my-4 mx-0;
|
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 {
|
2019-11-09 21:10:51 +00:00
|
|
|
min-width: 115%;
|
2019-11-09 17:57:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@screen lg {
|
|
|
|
#post .kg-width-wide .kg-image {
|
2019-11-09 21:10:51 +00:00
|
|
|
min-width: 125%;
|
2019-11-09 17:57:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@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 {
|
2019-11-09 19:00:39 +00:00
|
|
|
@apply flex flex-row justify-between text-black border border-gray-500 bg-white transition-bg;
|
|
|
|
}
|
|
|
|
#post .kg-bookmark-container:hover {
|
|
|
|
@apply bg-gray-400 transition-bg;
|
2019-11-09 13:19:36 +00:00
|
|
|
}
|
|
|
|
#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 {
|
2019-11-09 10:31:34 +00:00
|
|
|
background-color: #085d93;
|
2019-11-08 20:59:26 +00:00
|
|
|
@apply py-4 px-4;
|
|
|
|
}
|
|
|
|
|
2019-11-09 19:00:39 +00:00
|
|
|
|
2019-11-08 21:35:37 +00:00
|
|
|
.nav {
|
2019-11-09 19:00:39 +00:00
|
|
|
@apply hidden flex-col w-full pl-0 my-0 absolute;
|
|
|
|
background-color: #085d93;
|
2019-11-08 21:35:37 +00:00
|
|
|
}
|
|
|
|
.nav li {
|
2019-11-09 19:00:39 +00:00
|
|
|
@apply flex flex-row justify-start items-center my-0 py-2 text-white text-sm px-2 h-12 px-4;
|
|
|
|
}
|
|
|
|
.nav li a {
|
|
|
|
@apply align-middle w-full table-cell;
|
2019-11-09 19:12:06 +00:00
|
|
|
line-height: 2rem;
|
2019-11-08 21:35:37 +00:00
|
|
|
}
|
2019-11-09 19:00:39 +00:00
|
|
|
#menushow:hover .nav {
|
|
|
|
@apply block w-screen;
|
|
|
|
right: -1rem;
|
|
|
|
}
|
|
|
|
|
2019-11-08 21:35:37 +00:00
|
|
|
@screen md {
|
|
|
|
.nav {
|
2019-11-09 19:00:39 +00:00
|
|
|
@apply block static w-auto flex-row h-12 bg-transparent;
|
2019-11-08 21:35:37 +00:00
|
|
|
}
|
2019-11-08 22:01:26 +00:00
|
|
|
.nav li {
|
2019-11-09 19:00:39 +00:00
|
|
|
@apply object-contain justify-center items-center border-b-0 border-t-0 my-0 inline-block h-full;
|
|
|
|
}
|
|
|
|
#menushow:hover .nav {
|
|
|
|
@apply pt-0;
|
|
|
|
right: 0;
|
|
|
|
width: initial;
|
2019-11-08 21:35:37 +00:00
|
|
|
}
|
|
|
|
}
|
2019-11-09 06:03:26 +00:00
|
|
|
|
|
|
|
.nav-fixed {
|
2019-11-09 10:31:34 +00:00
|
|
|
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;
|
|
|
|
|