site/style.css

144 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
2019-09-16 23:24:44 +00:00
table {
border-collapse: collapse;
}
td {
border: 6px double darkorange;
padding: 10px;
}
ol {
margin-left: 1em;
}
2019-09-14 16:58:11 +00:00
body {
2019-09-16 23:24:44 +00:00
margin: 1em;
font-family: "courier new", monospace;
color: darkorange;
background: #000400;
2019-10-04 06:26:19 +00:00
word-wrap: break-word;
2019-09-16 23:24:44 +00:00
}
a {
background: darkorange;
color: #223;
font-weight: bold;
padding-right: 0.25em;
}
hr {
border-color: darkorange;
}
2019-09-16 23:24:44 +00:00
.advisory {
background: darkorange;
color: #223;
font-weight: bold;
padding-right: 0.25em;
2019-09-14 16:58:11 +00:00
}
2019-09-16 23:24:44 +00:00
h1 {
text-transform: uppercase;
font-weight: bold;
color: #000400;
background: darkorange;
2019-09-14 16:58:11 +00:00
}
.advisory {
2019-09-16 23:24:44 +00:00
-webkit-animation-name: blinker;
-webkit-animation-duration: 8s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
2019-09-14 16:58:11 +00:00
2019-09-16 23:24:44 +00:00
-moz-animation-name: blinker;
-moz-animation-duration: 8s;
-moz-animation-timing-function: linear;
-moz-animation-iteration-count: infinite;
2019-09-14 16:58:11 +00:00
2019-09-16 23:24:44 +00:00
animation-name: blinker;
animation-duration: 8s;
animation-timing-function: linear;
animation-iteration-count: infinite;
2019-09-14 16:58:11 +00:00
}
.sourceCode {
color:#06287e;
}
/* Style the navbar */
#navbar {
overflow: hidden;
background-color: darkorange;
z-index: 99;
position: fixed;
top: 0;
left: 0;
width: 100%;
}
/* Navbar links */
#navbar a {
float: left;
display: block;
color: black;
text-align: center;
padding: 14px;
text-decoration: none;
}
/* Page content */
.content {
padding-top: 30px;
}
2019-09-16 23:24:44 +00:00
input[type="text"],
textarea {
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-09-16 23:24:44 +00:00
@-moz-keyframes blinker {
0% {
opacity: 1;
}
50% {
opacity: 0.75;
}
100% {
opacity: 1;
}
2019-09-14 16:58:11 +00:00
}
2019-09-16 23:24:44 +00:00
@-webkit-keyframes blinker {
0% {
opacity: 1;
}
50% {
opacity: 0.75;
}
100% {
opacity: 1;
}
2019-09-14 16:58:11 +00:00
}
2019-09-16 23:24:44 +00:00
@keyframes blinker {
0% {
opacity: 1;
}
50% {
opacity: 0.75;
}
100% {
opacity: 1;
}
2019-09-14 16:58:11 +00:00
}
2019-10-04 06:26:19 +00:00
/* Mobile */
@media (min-width: 768px) {
td {
display: block;
}
}