site/style.css

100 lines
1.4 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
2019-09-16 23:24:44 +00:00
table {
border-collapse: collapse;
}
td {
2020-03-09 01:42:32 +00:00
border: 6px double #fb5;
padding: 1em;
2019-09-16 23:24:44 +00:00
}
ol {
margin-left: 1em;
}
2019-09-14 16:58:11 +00:00
body {
2020-03-09 01:42:32 +00:00
margin: auto;
padding: 1em;
max-width: 64em;
2019-09-16 23:24:44 +00:00
font-family: "courier new", monospace;
2020-03-09 01:42:32 +00:00
color: #fb5;
background: #111;
2019-10-04 06:26:19 +00:00
word-wrap: break-word;
2019-09-16 23:24:44 +00:00
}
a {
2020-03-09 01:42:32 +00:00
text-decoration: none;
color: #f70;
2019-09-16 23:24:44 +00:00
font-weight: bold;
padding-right: 0.25em;
}
2020-03-09 01:42:32 +00:00
a:hover {color: #f20;}
hr {
2020-03-09 01:42:32 +00:00
border-color: #fb5;
}
2019-09-16 23:24:44 +00:00
.advisory {
2020-03-09 01:42:32 +00:00
background: #fc4;
color: #222;
2019-09-16 23:24:44 +00:00
font-weight: bold;
2020-03-09 01:42:32 +00:00
padding: 1em;
border-radius: 0.25em;
2019-09-14 16:58:11 +00:00
}
2019-09-16 23:24:44 +00:00
h1 {
text-transform: uppercase;
2020-03-09 01:42:32 +00:00
color: #fb5;
font-family: monospace;
2019-09-14 16:58:11 +00:00
}
.sourceCode {
color:#06287e;
}
/* Style the navbar */
#navbar {
overflow: hidden;
2020-03-09 01:42:32 +00:00
background-color: #fb5;
color: #222;
z-index: 99;
position: relative;
top: 0;
left: 0;
width: 100%;
2020-03-09 01:42:32 +00:00
border-radius: 0.25em;
}
#navbar a:hover {
background-color: #f93;
}
/* Navbar links */
#navbar a {
float: left;
display: block;
color: black;
text-align: center;
padding: 14px;
text-decoration: none;
}
/* Page content */
.content {
padding-top: 5px;
}
2019-09-16 23:24:44 +00:00
input[type="text"],
textarea {
2020-03-09 01:42:32 +00:00
background-color: #333;
color: darkorange;
2019-09-14 18:29:05 +00:00
}
div.alert-warning {
2019-09-16 23:24:44 +00:00
background-color: darkred;
2019-09-14 18:29:05 +00:00
}
div.alert-success {
2019-09-16 23:24: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) {
2019-10-04 06:26:19 +00:00
td {
display: block;
}
}