Files
chookchat/client/style.css

106 lines
1.6 KiB
CSS
Raw Normal View History

2026-07-20 11:48:27 +10:00
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital@0;1&display=swap');
body {
font-family: "JetBrains Mono", monospace;
font-size: 12pt;
color: lime;
background-color: black;
line-height: 1.1;
2026-07-21 07:08:49 +10:00
height: 100vh;
margin: 0;
2026-07-20 11:48:27 +10:00
}
hr {
border: none;
height: 2px;
background-color: lime;
}
button, input, textarea {
appearance: none;
font-family: "JetBrains Mono", monospace;
font-size: 12pt;
color: lime;
background-color: black;
border: 1px solid lime;
2026-07-20 18:47:45 +10:00
cursor: pointer;
}
button:hover {
background-color: lime;
color: black;
2026-07-20 11:48:27 +10:00
}
textarea {
width: 100%;
box-sizing: border-box;
}
.postbox, #posts {
max-width: 700px;
margin: 0 auto;
}
img {
max-height: 200px;
max-width: 100%;
height: auto;
width: auto;
}
.postinfo {
background-color: #313131;
}
.postbox, #posts {
padding: 0 16px;
box-sizing: border-box;
}
2026-07-20 19:02:04 +10:00
.post-buttons {
display: flex;
gap: 5px;
}
2026-07-21 17:31:43 +10:00
a {
color: lime;
text-decoration: underline;
}
2026-07-20 19:02:04 +10:00
2026-07-21 07:08:49 +10:00
nav {
background: rgb(25, 25, 25);
display: flex;
padding: 16px;
margin-bottom: 1em;
#brand h2 {
margin: 0;
}
a {
color: lime;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
ul {
list-style: none;
display: flex;
align-items: center;
margin: 0;
li {
margin-left: 1em;
}
}
}
2026-07-20 11:48:27 +10:00
@media (max-width: 600px) {
input, textarea, button {
font-size: 16px;
}
}