site/style.css

145 lines
2.0 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;
}
2020-05-07 03:00:03 +00:00
.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
}
2020-05-07 03:28:27 +00:00
@keyframes cursor {
from { content: "_"; }
to { content: ""; }
}
@media not (prefers-reduced-motion: reduce) {
h1::after {
content: "_";
animation-name: cursor;
animation-iteration-count: infinite;
animation-timing-function: cubic-bezier(1.0,0,0,1.0);
animation-duration: 1s;
}
2020-05-07 02:53:27 +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
}
.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
}
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
}
2020-05-06 06:49:44 +00:00