lugo/static/style.css

105 lines
1.3 KiB
CSS
Raw Normal View History

2024-03-07 00:47:25 +00:00
.copy:hover {
color: #344a70;
}
2024-02-07 23:08:16 +00:00
::-webkit-scrollbar {
width: 0;
}
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;
2024-02-07 23:08:16 +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;
2022-04-14 20:07:48 +00:00
}
2024-02-07 23:08:16 +00:00
article {
background-color: burlywood;
outline: cadetblue solid 5px;
padding: 3%;
border-radius: 10px;
2024-02-07 23:08:16 +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;
padding: 10px;
border-radius: 8px;
outline: cadetblue solid 3px;
}
code {
font-size: large;
2022-04-14 20:07:48 +00:00
}
2022-07-11 15:06:43 +00:00
img {
max-width: 100%;
2024-02-07 23:08:16 +00:00
}
footer {
padding-top: 1%;
text-align: center;
clear: both;
2022-07-11 15:06:43 +00:00
}
2024-02-07 23:08:16 +00:00
h1,h2,h3,h4,h5,h6 {
margin: 0;
text-align: center;
2022-07-11 15:06:43 +00:00
}
2024-03-07 00:47:25 +00:00
article h1 {
margin-bottom: 1rem;
}
2024-02-07 23:08:16 +00:00
a {
color: #3e765d;
2022-07-11 20:33:24 +00:00
}
2024-02-07 23:08:16 +00:00
a:hover {
color: #344a70;
text-decoration-line: none;
}
2024-02-07 23:08:16 +00:00
header a {
color: inherit;
text-decoration-line: none;
2024-03-07 00:47:25 +00:00
font-weight: bold;
}
2024-02-07 23:08:16 +00:00
header a:hover {
font-weight: bold;
color: inherit
}
main {
max-width: 80%;
margin: auto;
}
@media screen and (max-width: 900px) {
main {
max-width: 100%;
margin: auto;
}
2024-02-07 23:08:16 +00:00
}