vodoraslo.xyz/new-site/public/style.css
2023-02-04 22:26:25 +02:00

119 lines
No EOL
1.2 KiB
CSS

body {
font-family: sans-serif;
background: #141414;
/* color: rgb(143, 185, 58) ; */
color: rgb(232, 228, 228);
}
main {
max-width: 800px;
margin: auto;
}
img {
max-width: 100%;
}
header h1 {
text-align: center;
}
footer {
text-align: center;
clear: both;
}
/* For TAGLIST.HTML */
.taglist {
text-align: center;
clear: both;
}
/* For NEXTPREV.HTML */
#nextprev {
/* The container for both the previous and next articles. */
}
#prevart {
float: left;
text-align: left;
}
#nextart {
float: right;
text-align: right;
}
#nextart,
#prevart {
max-width: 33%;
}
a {
text-decoration: none;
color: cyan
}
/* Globally */
/* Each state */
a:visited {
text-decoration: none;
color: cyan;
}
a:hover {
text-decoration: none;
color: cyan;
}
a:focus {
text-decoration: none;
color: yellow;
}
a:hover,
a:active {
text-decoration: none;
color: yellow
}
strong {
color: rgb(206, 153, 55);
}
h1 {
color: chocolate;
}
h2 {
color: sandybrown;
}
h3 {
color: tan;
}
h4 {
color: #FFE09C;
}
h5 {
color: #FFF4B0;
}
h6 {
color: #FFF4B0;
}
pre {
background: #111222;
border: 1px solid rgb(231, 177, 26);
border-radius: 20px;
padding: 1em;
white-space: pre-wrap;
overflow-wrap: break-word;
max-width: 800px;
margin: auto;
}