lugo/static/style.css

121 lines
1.6 KiB
CSS
Raw Normal View History

2022-04-14 20:07:48 +00:00
body {
2022-11-05 05:21:19 +00:00
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
2023-01-09 19:05:27 +00:00
font-size: large;
background: rgb(71, 71, 71);
color: black;
2022-04-14 20:07:48 +00:00
}
2023-03-16 07:30:11 +00:00
2022-04-14 20:07:48 +00:00
main {
2022-11-05 05:21:19 +00:00
max-width: 75%;
margin: auto;
2022-04-14 20:07:48 +00:00
}
2023-03-16 07:30:11 +00:00
2023-09-28 17:45:27 +00:00
h1, h2, h3, h4 {
text-align: center;
2023-09-28 17:45:27 +00:00
flex: 100%;
2023-01-07 21:09:01 +00:00
}
2023-03-16 07:30:11 +00:00
2023-01-07 21:09:01 +00:00
header h1 {
color: white;
2022-04-14 20:07:48 +00:00
}
2023-03-16 07:30:11 +00:00
2023-01-07 21:09:01 +00:00
header h4 {
/*
The color half-way between the
background color and pure white
*/
color: rgb(163, 163, 163);
}
2023-03-16 07:30:11 +00:00
a:link {
color: white;
}
2023-03-16 07:30:11 +00:00
2022-11-05 05:21:19 +00:00
a:visited{
color: rgb(174, 174, 174);
}
2023-03-16 07:30:11 +00:00
2022-11-05 05:21:19 +00:00
article a:link {
color: rgb(0, 0, 0);
}
2023-03-16 07:30:11 +00:00
2022-11-05 05:21:19 +00:00
article a:visited {
color: rgb(64, 64, 64);
}
2023-03-16 07:30:11 +00:00
article {
background-color: burlywood;
outline: cadetblue solid 5px;
padding: 3%;
border-radius: 10px;
}
2023-03-16 07:30:11 +00:00
2022-11-05 05:21:19 +00:00
hr {
border-top: 2px solid cadetblue;
border-radius: 4px;
}
2023-03-16 07:30:11 +00:00
2023-01-07 21:09:01 +00:00
br {
clear: both;
}
2023-03-16 07:30:11 +00:00
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;
2022-11-05 05:21:19 +00:00
padding-top: 0px;
padding-bottom: 0px;
padding-left: 10px;
padding-right: 10px;
border-radius: 8px;
outline: cadetblue solid 3px;
2022-04-14 20:07:48 +00:00
}
2023-03-16 07:30:11 +00:00
code {
font-size: large;
2022-11-05 05:21:19 +00:00
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;
}
2023-03-16 07:30:11 +00:00
img {
2023-01-07 21:09:01 +00:00
border-radius: 4px;
2023-09-28 17:45:27 +00:00
margin: 0;
2023-01-07 21:09:01 +00:00
}
2023-03-16 07:30:11 +00:00
2023-09-28 17:45:27 +00:00
figcaption {
color: rgb(69, 69, 69);
font-style: italic;
text-align: center;
2023-01-07 21:09:01 +00:00
}
2023-03-16 07:30:11 +00:00
2023-01-07 21:09:01 +00:00
figure {
margin: 2%;
}
2023-03-16 07:30:11 +00:00
2022-07-11 15:06:43 +00:00
footer {
2022-11-05 05:21:19 +00:00
padding-top: 2%;
text-align: center;
clear: both;
2022-07-11 15:06:43 +00:00
}
2023-03-16 07:30:11 +00:00
2022-11-05 05:21:19 +00:00
footer a:any-link {
color: white;
2022-07-11 15:06:43 +00:00
}
2023-09-28 17:45:27 +00:00
@media only screen and (max-width: 600px) {
main {
max-width: 90%;
}
2022-07-11 20:33:24 +00:00
}
2022-11-05 05:21:19 +00:00