aboutsummaryrefslogtreecommitdiff
path: root/apps/website/src/styles/blog.css
diff options
context:
space:
mode:
authorPauline <git@ethanlibs.co>2023-11-26 22:55:04 -0500
committerPauline <git@ethanlibs.co>2023-11-26 22:55:04 -0500
commit181547a25213bee8a20002e07344b957386c4d0f (patch)
tree1e1b4815166342406026478c00604cdd65e64660 /apps/website/src/styles/blog.css
parent955e820f1ccb59467a4f27c5c77738a7ebff193e (diff)
downloadNexus-181547a25213bee8a20002e07344b957386c4d0f.tar.gz
Nexus-181547a25213bee8a20002e07344b957386c4d0f.tar.bz2
Nexus-181547a25213bee8a20002e07344b957386c4d0f.zip
feat(build): transfer everything to esm/ts
Diffstat (limited to 'apps/website/src/styles/blog.css')
-rw-r--r--apps/website/src/styles/blog.css37
1 files changed, 37 insertions, 0 deletions
diff --git a/apps/website/src/styles/blog.css b/apps/website/src/styles/blog.css
new file mode 100644
index 0000000..9cfe3fa
--- /dev/null
+++ b/apps/website/src/styles/blog.css
@@ -0,0 +1,37 @@
+main {
+ width: calc(100% - 2em);
+ max-width: 100%;
+ margin: 0;
+}
+.hero-image {
+ width: 100%;
+}
+.hero-image img {
+ display: block;
+ margin: 0 auto;
+ border-radius: 12px;
+ box-shadow: var(--box-shadow);
+}
+.prose {
+ width: 720px;
+ max-width: calc(100% - 2em);
+ margin: auto;
+ padding: 1em;
+ color: rgb(var(--gray-dark));
+}
+.title {
+ margin-bottom: 1em;
+ padding: 1em 0;
+ text-align: center;
+ line-height: 1;
+}
+.title h1 {
+ margin: 0 0 0.5em 0;
+}
+.date {
+ margin-bottom: 0.5em;
+ color: rgb(var(--gray));
+}
+.last-updated-on {
+ font-style: italic;
+}