website/style.css

107 lines
1.5 KiB
CSS
Raw Normal View History

2022-05-06 08:00:20 +00:00
body {
2022-09-30 09:43:11 +00:00
font-family: DejaVu Sans Mono, monospace;
2022-05-06 08:00:20 +00:00
margin:20px auto;
max-width:800px;
line-height:1.5em;
font-size:1.1em;
background-color:#282c34;
color:#bbc2cf;
padding:0 10px;
hyphens:auto;
}
header {
display:flex;
justify-content:space-between;
align-items:center;
white-space:nowrap;
flex-wrap: wrap;
2022-05-06 08:00:20 +00:00
}
nav {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-end;
gap: 1rem;
}
2022-05-06 08:00:20 +00:00
nav li {
display:inline-block no;
margin-right:20px;
}
.navlogo {
width:50px;
height:50px;
}
a {
color:#ff6c6b;
2022-05-06 08:00:20 +00:00
text-decoration:none;
}
a:hover {
color:#ff6c6b;
text-decoration:underline;
2022-05-06 08:00:20 +00:00
}
h1, h2, h3 {
display:inline;
2022-05-06 08:00:20 +00:00
line-height:1.2;
color:#51afef;
2022-05-06 08:00:20 +00:00
font-size:1.3em;
}
h2 {
font-size:1.2em;
}
h3 {
font-size:1.1em;
}
.h:hover a[aria-hidden] {
display:inline;
color:#ff6c6b;
size:75%;
}
.h a[aria-hidden] {
display:none;
}
2022-05-06 08:00:20 +00:00
pre {
tab-size:4;
}
.red {
color:#ff6c6b;
}
.green {
color:#98be65;
}
input[type=submit] {
padding:5px 15px;
background:#51afef;
border:0 none;
-webkit-border-radius:10px;
2022-10-25 04:38:02 +00:00
color: #282c34;
border-radius:10px;
}
2022-10-25 04:38:02 +00:00
input[type=checkbox] {
2022-10-25 04:40:52 +00:00
color: #282c34;
background-color: #bbc2cf;
2022-10-25 04:38:02 +00:00
}
ul[userlist] {
list-style:none;
}
ul[userlist] li[online]::before {
content:"\2022";
color:#ff6c6b;
font-weight:bold;
display:inline-block;
width:1.0em;
margin-left:-1.0em;
}
ul[userlist] li[online$=true]::before {
color:#98be65;
}
2022-09-06 13:59:50 +00:00
textarea {
background-color: #282c34;
color: #bbc2cf;
}
input {
background-color: #282c34;
color: #bbc2cf;
}