vodoraslo.xyz/new-site/public/style.css

128 lines
1.4 KiB
CSS
Raw Normal View History

2022-12-17 07:30:26 +01:00
body {
2022-12-27 13:30:02 +01:00
font-family: sans-serif;
background: #141414;
2022-12-17 17:15:37 +01:00
/* color: rgb(143, 185, 58) ; */
2022-12-27 13:30:02 +01:00
color: rgb(232, 228, 228);
2022-12-17 07:30:26 +01:00
}
main {
2022-12-27 13:30:02 +01:00
max-width: 800px;
margin: auto;
2022-12-17 07:30:26 +01:00
}
img {
2022-12-27 13:30:02 +01:00
max-width: 100%;
2022-12-17 07:30:26 +01:00
}
header h1 {
2022-12-27 13:30:02 +01:00
text-align: center;
2022-12-17 07:30:26 +01:00
}
footer {
2022-12-27 13:30:02 +01:00
text-align: center;
clear: both;
2022-12-17 07:30:26 +01:00
}
/* For TAGLIST.HTML */
.taglist {
2022-12-27 13:30:02 +01:00
text-align: center;
clear: both;
2022-12-17 07:30:26 +01:00
}
/* For NEXTPREV.HTML */
#nextprev {
/* The container for both the previous and next articles. */
margin-top: 15px;
2022-12-17 07:30:26 +01:00
}
2022-12-27 13:30:02 +01:00
2022-12-17 07:30:26 +01:00
#prevart {
2022-12-27 13:30:02 +01:00
float: left;
text-align: left;
2022-12-17 07:30:26 +01:00
}
2022-12-27 13:30:02 +01:00
2022-12-17 07:30:26 +01:00
#nextart {
2022-12-27 13:30:02 +01:00
float: right;
text-align: right;
2022-12-17 07:30:26 +01:00
}
2022-12-27 13:30:02 +01:00
#nextart,
#prevart {
max-width: 33%;
2022-12-17 07:30:26 +01:00
}
2022-12-17 17:15:37 +01:00
2022-12-27 13:30:02 +01:00
a {
text-decoration: none;
color: cyan
}
/* Globally */
2022-12-17 17:15:37 +01:00
/* Each state */
2022-12-27 13:30:02 +01:00
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 {
2023-04-02 08:48:10 +02:00
color: rgb(164, 135, 97)
2022-12-27 13:30:02 +01:00
}
h4 {
color: #FFE09C;
}
h5 {
color: #FFF4B0;
}
h6 {
color: #FFF4B0;
2023-02-04 21:26:25 +01:00
}
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;
2023-03-31 20:06:39 +02:00
}
.spanForHeader{
color: rgba(0, 255, 255, 0);
}
.spanForHeader:hover{
color: cyan;
2022-12-27 13:30:02 +01:00
}