body {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
textarea {
width: 100%;
min-height: 200px;
margin: 10px 0;
}
pre {
white-space: pre-wrap;
background: #f5f5f5;
padding: 15px;
}
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
--bg-primary: #1a1a1a;
--bg-secondary: #2a2a2a;
--text-primary: #cccccc;
--text-secondary: #888888;
--text-muted: #555555;
--border-color: #333333;
--accent-subtle: #404040;
--shadow-color: rgba(0, 0, 0, 0.5);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Anonymous Pro', monospace;
font-size: 14px;
line-height: 1.6;
color: var(--text-primary);
background-color: var(--bg-primary);
background-image: url('https://pseudoware.com/cdn/img/transparent-textures/random-grey-variations.png');
background-repeat: repeat;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 400;
color: var(--text-primary);
margin-bottom: 0.5em;
}
h1 { font-size: 1.8em; }
h2 { font-size: 1.5em; }
h3 { font-size: 1.3em; }
h4 { font-size: 1.1em; }
h5 { font-size: 1em; }
h6 { font-size: 0.9em; color: var(--text-secondary); }
p {
margin-bottom: 1em;
color: var(--text-secondary);
}
a {
color: var(--text-primary);
text-decoration: none;
border-bottom: 1px solid var(--text-muted);
transition: border-color 0.2s ease;
}
a:hover {
border-bottom-color: var(--text-secondary);
}
code, pre {
font-family: 'Anonymous Pro', monospace;
background-color: var(--bg-secondary);
color: var(--text-primary);
}
code {
padding: 0.2em 0.4em;
border-radius: 2px;
font-size: 0.9em;
}
pre {
padding: 1em;
border-radius: 4px;
overflow-x: auto;
border: 1px solid var(--border-color);
margin-bottom: 1em;
}
blockquote {
border-left: 2px solid var(--border-color);
padding-left: 1em;
margin: 1em 0;
color: var(--text-muted);
font-style: italic;
}
ul, ol {
padding-left: 2em;
margin-bottom: 1em;
color: var(--text-secondary);
}
li {
margin-bottom: 0.3em;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 1em;
background-color: var(--bg-secondary);
}
th, td {
padding: 0.5em;
text-align: left;
border-bottom: 1px solid var(--border-color);
}
th {
background-color: var(--accent-subtle);
color: var(--text-primary);
font-weight: 400;
}
input, textarea, select, button {
font-family: 'Anonymous Pro', monospace;
font-size: 14px;
background-color: var(--bg-secondary);
color: var(--text-primary);
border: 1px solid var(--border-color);
padding: 0.5em;
border-radius: 2px;
}
input:focus, textarea:focus, select:focus {
outline: none;
border-color: var(--text-muted);
}
button {
cursor: pointer;
background-color: var(--accent-subtle);
transition: background-color 0.2s ease;
}
button:hover {
background-color: var(--text-muted);
}
hr {
border: none;
height: 1px;
background-color: var(--border-color);
margin: 2em 0;
}
img {
max-width: 100%;
height: auto;
opacity: 0.9;
}
::selection {
background-color: var(--text-muted);
color: var(--text-primary);
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background-color: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
background-color: var(--border-color);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background-color: var(--text-muted);
}
.card {
background-color: var(--bg-secondary);
border: 1px solid var(--border-color);
border-radius: 4px;
padding: 1.5em;
margin-bottom: 1.5em;
box-shadow: 0 2px 4px var(--shadow-color);
}
.card h3 {
margin-bottom: 1em;
padding-bottom: 0.5em;
border-bottom: 1px solid var(--border-color);
}
.category-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5em;
margin-bottom: 2em;
}
.paste-preview pre {
transition: background-color 0.2s ease, border-color 0.2s ease;
}
.paste-preview:hover pre {
background-color: var(--accent-subtle);
border-color: var(--text-muted);
}
footer {
margin-top: 4em;
padding: 2em 0;
border-top: 1px solid var(--border-color);
display: grid;
grid-template-columns: 1fr auto 1fr;
gap: 2em;
align-items: center;
}
.footer-search {
justify-self: start;
}
.footer-search input {
width: 200px;
}
.footer-copyright {
text-align: center;
color: var(--text-secondary);
}
.footer-links {
justify-self: end;
display: flex;
gap: 1em;
}
.footer-links a {
border: none;
color: var(--text-secondary);
}
.footer-links a:hover {
color: var(--text-primary);
}
@media (max-width: 768px) {
footer {
grid-template-columns: 1fr;
text-align: center;
gap: 1em;
}
.footer-search, .footer-links {
justify-self: center;
}
.footer-search input {
width: 100%;
max-width: 300px;
}
}