changing css arround to better support code blocks.

This commit is contained in:
Rushmore75 2022-11-03 12:48:00 -06:00
parent 11d59ffa1b
commit 8d53e0ea44

View File

@ -1,25 +1,58 @@
body { body {
font-family: sans-serif ; font-family: sans-serif;
background: #110000 ; background: rgb(71, 71, 71);
color: #ccc ; color: black;
} }
main { main {
max-width: 800px ; max-width: 60%;
margin: auto ; margin: auto;
}
img {
max-width: 100% ;
} }
header h1 { header h1 {
text-align: center ; text-align: center;
color: white;
} }
a:link {
color: rgb(126, 249, 255);
}
a:visited {
color: white;
}
article {
background-color: burlywood;
outline: cadetblue solid 5px;
padding: 3%;
border-radius: 10px;
}
pre {
/*
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.
*/
background-color: rgb(59, 59, 59) !important;
padding: 10px;
border-radius: 8px;
outline: cadetblue solid 3px;
}
code {
font-size: large;
}
img {
max-width: 100%;
}
footer { footer {
text-align: center ; padding-top: 1%;
clear: both ; text-align: center;
clear: both;
} }
/* For TAGLIST.HTML */ /* For TAGLIST.HTML */