Compare commits

...

3 Commits

Author SHA1 Message Date
dbb22984e6 Fix code blocks overflow, improve header text color, improve mobile size 2025-01-04 00:09:12 -07:00
5773af38f4 remove dead code 2025-01-03 23:57:07 -07:00
73c5f09420 better phone support 2025-01-03 23:56:34 -07:00

View File

@ -3,7 +3,7 @@
--bg-text: #606060; --bg-text: #606060;
--text: #ffffff; --text: #ffffff;
--header: #454545; --header: #454545;
--header-text: #707070; --header-text: #d3d3d3;
--content-bg: #303030; --content-bg: #303030;
--accent: #344a70; --accent: #344a70;
--link: #3e765d; --link: #3e765d;
@ -23,19 +23,11 @@ blockquote {
margin-bottom: 0; margin-bottom: 0;
} }
/* blockquote~blockquote {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
blockquote+blockquote {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
} */
pre { pre {
background-color: var(--bg); background-color: var(--bg);
padding: 1rem; padding: 1rem;
border-radius: var(--radius); border-radius: var(--radius);
overflow: scroll;
} }
.copy:hover { .copy:hover {
@ -78,6 +70,8 @@ section {
article { article {
background-color: var(--content-bg); background-color: var(--content-bg);
padding: 1.5rem; padding: 1.5rem;
padding-top: 1px;
padding-bottom: 1px;
text-align: left; text-align: left;
} }
@ -133,9 +127,13 @@ main {
margin: auto; margin: auto;
} }
@media screen and (max-width: 1500px) { @media screen and (max-width: 1200px) {
main { main, section {
max-width: 100%; max-width: 100%;
margin: auto; margin: 0;
}
:root {
--radius: 0;
font-size: large;
}
} }
}