body {
background-color: black;
color: white;
margin: 3%;
line-height: 1.25;
text-align: justify;
font-family: serif;
}
body, div, p, h1, h2, h3, h4, h5, h6, ul, ol {
padding: 2px;
margin: 2px;
}
h1, h2, h3, h4, h5, h6 {
font-family: sans-serif;
}
h1 {
text-align: center;
}
#main {
margin: auto;
columns: 6 70em;
}
#main div {
border: solid 2px cyan;
margin: auto;
}
#footer {
line-height: 1.2;
font-size: 80%;
}
a:link {
color: cyan;
text-decoration: none;
}
a:visited {
color: violet;
text-decoration: none;
}
a:hover {
color: yellow;
text-decoration: none;
}
a:active {
color: lime;
text-decoration: none;
}
#nav ul {
list-style-type: none;
padding: 1em 0;
text-align: center;
/*************************************/
/* border-top: 2px solid black; */
/* border-bottom: 2px solid back; */
/*************************************/
}
#nav ul li {
display: inline;
padding: 0 1.5em;
border: none;
}
#nav ul li a {
font-weight: bold;
}
#majornote {
color: lime;
display: block;
border: 2px dashed lime;
transition: all 0.5s;
}
#myproject {
color: orange;
display: block;
border: 2px dashed orange;
transition: padding 1s, font-size 1s;
}
#campaign {
color: red;
display: block;
border: 2px dashed red;
transition: padding 1s, font-size 1s;
animation-name: shake;
animation-iteration-count: 1;
animation-duration: 3s;
}
#memes {
margin: auto;
/* columns: 255 10em; */
}
.alarm {
color: red;
}
.alert {
color: orange;
}
.good {
color: lime;
}
.annotation {
border: 2px dashed lime;
}
@keyframes shake {
0%, 100% {transform: rotate(0deg);}
10%, 30%, 50%, 70%, 90% {transform: rotate(-3deg);}
20%, 40%, 60%, 80% {transform: rotate(3deg);}
}