site/style.css

162 lines
2.3 KiB
CSS
Raw Normal View History

2019-09-16 23:24:44 +00:00
/* {font-size:13pt;font-weight:normal;} */
2019-09-14 16:58:11 +00:00
2020-05-06 06:49:44 +00:00
@media (min-width: 64em) {
.row {
display: flex;
flex-wrap: nowrap;
flex-direction: row-reverse;
}
.col { flex-grow: 1; }
2020-03-09 15:12:29 +00:00
}
.grid {
2020-05-06 06:49:44 +00:00
border-collapse: collapse;
2019-09-16 23:24:44 +00:00
}
2020-03-09 15:12:29 +00:00
.col {
2020-05-06 06:49:44 +00:00
border: 6px double #fb5;
padding: 1em;
2019-09-16 23:24:44 +00:00
}
2020-05-06 05:16:03 +00:00
.user-list {
2020-05-06 06:49:44 +00:00
display: flex;
flex-flow: row wrap;
justify-content: space-evenly;
list-style-type: none;
padding: 0;
2020-05-06 05:16:03 +00:00
}
.user-list li {
2020-05-06 06:49:44 +00:00
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
flex: 10em;
2019-09-16 23:24:44 +00:00
}
2020-05-06 05:16:03 +00:00
.user-list::after {
2020-05-06 06:49:44 +00:00
content: "";
2020-05-06 05:16:03 +00:00
}
2019-09-14 16:58:11 +00:00
body {
2020-05-06 06:49:44 +00:00
margin: auto;
padding: 1em;
max-width: 64em;
font-family: "courier new", monospace;
color: #fb5;
background: #111;
word-wrap: break-word;
2019-09-16 23:24:44 +00:00
}
a {
2020-05-06 06:49:44 +00:00
text-decoration: none;
color: #f70;
font-weight: bold;
padding-right: 0.25em;
2019-09-16 23:24:44 +00:00
}
2020-03-09 01:42:32 +00:00
a:hover {color: #f20;}
hr {
2020-05-06 06:49:44 +00:00
border-color: #fb5;
}
.text-center {
text-align: center
}
2019-09-16 23:24:44 +00:00
.advisory {
2020-05-06 06:49:44 +00:00
background: #fc4;
color: #222;
font-weight: bold;
padding: 1em;
border-radius: 0.25em;
2019-09-14 16:58:11 +00:00
}
2019-09-16 23:24:44 +00:00
h1 {
2020-05-06 06:49:44 +00:00
text-transform: uppercase;
color: #fb5;
font-family: monospace;
2019-09-14 16:58:11 +00:00
}
2020-05-07 05:15:21 +00:00
/* THEGOODS */
#fancyboi::before {
content: "$ ";
}
@media (prefers-reduced-motion: no-preference) {
@keyframes flash {
50% { opacity: 0; }
}
@keyframes reveal {
from { width: 2em; } /* Width of ::before */
to { width: 100%; }
}
#fancyboi {
overflow: hidden;
white-space: nowrap;
animation: reveal 4s linear;
2020-05-07 05:37:55 +00:00
text-overflow: "█";
2020-05-07 05:15:21 +00:00
}
#fancyboi::after {
2020-05-07 05:37:55 +00:00
content: "█";
2020-05-07 05:15:21 +00:00
animation: flash 0.5s step-end infinite;
}
}
/* SDOOGEHT */
.sourceCode {
2020-03-20 05:14:11 +00:00
color:#008000;
}
2020-03-20 05:44:52 +00:00
code > span.fl {
color: #008000;
}
/* Style the navbar */
#navbar {
2020-05-06 06:49:44 +00:00
overflow: hidden;
background-color: #fb5;
color: #222;
z-index: 99;
position: relative;
top: 0;
left: 0;
width: 100%;
border-radius: 0.25em;
2020-03-09 01:42:32 +00:00
}
#navbar a:hover {
2020-05-06 06:49:44 +00:00
background-color: #f93;
}
/* Navbar links */
#navbar a {
2020-05-06 06:49:44 +00:00
float: left;
display: block;
color: black;
text-align: center;
padding: 14px;
text-decoration: none;
}
/* Page content */
.content {
2020-05-06 06:49:44 +00:00
padding-top: 5px;
}
2019-09-16 23:24:44 +00:00
input[type="text"],
textarea {
2020-05-06 06:49:44 +00:00
background-color: #333;
color: darkorange;
2019-09-14 18:29:05 +00:00
}
div.alert-warning {
2020-05-06 06:49:44 +00:00
background-color: darkred;
2019-09-14 18:29:05 +00:00
}
div.alert-success {
2020-05-06 06:49:44 +00:00
background-color: darkgreen;
2019-09-14 18:29:05 +00:00
}
2022-02-11 11:12:09 +00:00
blockquote {
border-left: 2px solid #fb5;
background-color: rgba(255, 187, 85, 5%);
2022-02-11 11:12:09 +00:00
padding: 0.5em;
}
2019-10-04 06:26:19 +00:00
/* Mobile */
2019-10-04 16:04:12 +00:00
@media (max-width: 768px) {
2020-05-06 06:49:44 +00:00
td {
display: block;
}
2019-10-04 06:26:19 +00:00
}