Skip to content

Commit

Permalink
feat(themes): tweaks to tui css
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleygwilliams committed Jun 14, 2023
1 parent 2ef3b66 commit c96fcb7
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion oranda-css/css/themes/tui.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
@import url('https://unpkg.com/fixedsys-css/css/fixedsys.css');
@import url('https://fonts.googleapis.com/css2?family=Cutive+Mono&display=swap');

html.tui main {
max-width: 82%;
}

html.tui ::selection {
@apply text-axo-black;
Expand All @@ -12,19 +17,26 @@ html.tui body {
font-family: "fixedsys", monospace;
}

html.tui strong,
html.tui code,
html.tui ul,
html.tui ul li,
html.tui pre {
@apply text-zinc-300;
font-family: "fixedsys", monospace;
}

html.tui ul li {
list-style-type: square;
}

html.tui .button {
@apply rounded-none;
box-shadow: 10px 10px 10px #000;
}

html.tui blockquote {
@apply bg-zinc-100 p-2 border-double border-axo-black border-8;
@apply bg-zinc-100 p-2 border-double border-axo-black border-8 mb-4;
box-shadow: 0 0 0 8px #f4f4f5;
}

Expand All @@ -49,6 +61,7 @@ html.tui footer {
html.tui p,
html.tui table {
@apply text-zinc-100;
font-family: 'Cutive Mono', monospace;
}

html.tui p {
Expand Down Expand Up @@ -103,6 +116,14 @@ html.tui .nav ul {
@apply justify-start;
}

html.tui .nav ul li {
list-style-type: none;
}

html.tui li.list-none {
list-style-type: none;
}

html.tui .button.primary {
@apply text-zinc-100 bg-cyan-700 hover:bg-zinc-100 hover:text-axo-black;
}
Expand Down

0 comments on commit c96fcb7

Please sign in to comment.