fixed links css, styles next/prev/tag

This commit is contained in:
Rushmore75 2022-11-04 23:21:19 -06:00 committed by Oliver Atkinson
parent 449a0f6564
commit fa96017069

View File

@ -7,94 +7,97 @@
} }
body { body {
font-family: sans-serif; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: medium;
background: rgb(71, 71, 71); background: rgb(71, 71, 71);
color: black; color: black;
} }
main { main {
max-width: 60%; max-width: 75%;
margin: auto; margin: auto;
} }
header h1 { header h1 {
text-align: center; text-align: center;
color: white; color: white;
} }
a:link { a:link {
color: rgb(126, 249, 255);
}
a:visited {
color: white; color: white;
} }
a:visited{
color: rgb(174, 174, 174);
}
article a:link {
color: rgb(0, 0, 0);
}
article a:visited {
color: rgb(64, 64, 64);
}
article { article {
background-color: burlywood; background-color: burlywood;
outline: cadetblue solid 5px; outline: cadetblue solid 5px;
padding: 3%; padding: 3%;
border-radius: 10px; border-radius: 10px;
} }
hr {
border-top: 2px solid cadetblue;
border-radius: 4px;
}
pre { pre {
/* /*
This has to be flagged important because somewhere in hugo a style This has to be flagged important because somewhere in hugo a style
is being directly applied to pre blocks. Ill have to find it later. is being directly applied to pre blocks. Ill have to find it later.
*/ */
background-color: rgb(59, 59, 59) !important; background-color: rgb(59, 59, 59) !important;
padding: 10px; padding-top: 0px;
padding-bottom: 0px;
padding-left: 10px;
padding-right: 10px;
border-radius: 8px; border-radius: 8px;
outline: cadetblue solid 3px; outline: cadetblue solid 3px;
} }
code { code {
font-size: large; font-size: large;
color: white;
/*
we need to re-define these
for times when a single backtick is used
*/
background-color: rgb(59, 59, 59);
padding-left: 3px;
padding-right: 3px;
padding-top: 1px;
border-radius: 4px;
} }
img { img {
max-width: 100%; max-width: 100%;
} }
footer { footer {
padding-top: 1%; padding-top: 2%;
text-align: center; text-align: center;
clear: both; clear: both;
} }
h1,h2,h3,h4,h5,h6 { footer a:any-link {
margin: 0; color: white;
text-align: center;
} }
article h1 { /* For NEXTPREV.HTML */
margin-bottom: 1rem; #nextprev {
/* The container for both the previous and next articles. */
color: black;
} }
a { #nextprev a:any-link {
color: #3e765d; color: black;
} }
a:hover { #nextart {
color: #344a70; float: left ;
text-decoration-line: none; text-align: left ;
} }
#prevart {
header a { float: right ;
color: inherit; text-align: right ;
text-decoration-line: none;
font-weight: bold;
}
header a:hover {
font-weight: bold;
color: inherit
}
main {
max-width: 80%;
margin: auto;
} }
@media screen and (max-width: 900px) { @media screen and (max-width: 900px) {
@ -102,4 +105,10 @@ main {
max-width: 100%; max-width: 100%;
margin: auto; margin: auto;
} }
/* For TAGLIST.HTML */
.taglist {
text-align: center;
clear: both;
color: rgb(64, 64, 64);
} }