lugo/static/style.css

79 lines
1.0 KiB
CSS
Raw Normal View History

2022-04-14 20:07:48 +00:00
body {
font-family: sans-serif;
background: rgb(71, 71, 71);
color: black;
2022-04-14 20:07:48 +00:00
}
main {
max-width: 60%;
margin: auto;
2022-04-14 20:07:48 +00:00
}
header h1 {
text-align: center;
color: white;
2022-04-14 20:07:48 +00:00
}
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;
2022-04-14 20:07:48 +00:00
}
code {
font-size: large;
}
img {
max-width: 100%;
}
2022-07-11 15:06:43 +00:00
footer {
padding-top: 1%;
text-align: center;
clear: both;
2022-07-11 15:06:43 +00:00
}
2022-07-11 20:33:24 +00:00
/* For TAGLIST.HTML */
2022-07-11 15:06:43 +00:00
.taglist {
text-align: center ;
2022-07-11 15:31:08 +00:00
clear: both ;
2022-07-11 15:06:43 +00:00
}
/* For NEXTPREV.HTML */
2022-07-11 20:33:24 +00:00
#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% ;
}