Yuika/assets/css/styles.css

62 lines
1.1 KiB
CSS
Raw Normal View History

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');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
2021-04-14 08:24:27 +00:00
@import '../../node_modules/@damillora/shian/dist/app.css';
/*
2019-11-08 20:59:26 +00:00
@tailwind base;
2019-11-12 17:51:01 +00:00
2019-11-08 20:59:26 +00:00
html {
@apply font-sans;
}
2019-11-25 19:25:00 +00:00
.primary-tag-header {
2020-11-11 04:54:56 +00:00
@apply bg-blue-700 w-auto inline-block px-2 py-1 text-white text-sm transition duration-300 ease-in-out;
2020-06-16 10:47:02 +00:00
}
.primary-tag-header:hover {
2020-11-11 19:54:23 +00:00
@apply transition-all duration-300 ease-in-out underline;
2019-11-25 19:25:00 +00:00
}
2020-11-11 19:54:23 +00:00
.tag-accent-color {
@apply inline-block rounded-full align-text-bottom h-12 w-12;
2020-11-11 19:54:23 +00:00
}
.tag-accent-color.small {
@apply h-4 w-4;
}
.tag-accent-color.medium {
@apply h-6 w-6;
2019-11-25 19:25:00 +00:00
}
2020-11-11 19:54:23 +00:00
.author-image {
@apply inline-block rounded-full align-text-bottom h-12 w-12;
}
@screen md {
.tag-accent-color {
@apply h-16 w-16;
}
.author-image {
@apply h-16 w-16;
}
2020-11-11 19:54:23 +00:00
}
2020-06-16 10:47:02 +00:00
.author-list {
@apply flex flex-row items-center my-2 py-2;
2020-06-16 10:47:02 +00:00
}
.author-images {
@apply flex flex-row;
}
.author-names {
@apply flex-grow flex flex-col;
}
2020-11-11 19:54:23 +00:00
.author-names a:hover {
@apply underline;
}
2020-06-16 10:47:02 +00:00
.post-feed {
2021-01-08 20:27:29 +00:00
@apply grid grid-cols-1 gap-y-4 my-8;
}
2019-11-08 20:59:26 +00:00
@tailwind components;
@tailwind utilities;
2021-04-14 08:24:27 +00:00
*/