hugo-bearcub/assets/original.css

181 lines
2.2 KiB
CSS
Raw Permalink Normal View History

2023-02-01 15:06:05 -03:00
body {
font-family: Verdana, sans-serif;
margin: auto;
padding: 20px;
max-width: 720px;
text-align: left;
background-color: #1d1f27;
word-wrap: break-word;
overflow-wrap: break-word;
line-height: 1.5;
color: #c9d1d9;
}
h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
color: #eee;
}
a {
color: #8cc2dd;
}
.title {
text-decoration: none;
border: 0;
}
2023-04-25 16:07:22 -03:00
.title h1 {
font-size: 24px;
margin: 19.92px 0 19.92px 0;
}
2023-02-01 15:06:05 -03:00
.title span {
font-weight: 400;
}
nav a {
margin-right: 10px;
}
textarea {
background-color: #252525;
color: #ddd;
width: 100%;
font-size: 16px;
}
input {
background-color: #252525;
color: #ddd;
font-size: 16px;
}
content {
line-height: 1.6;
}
table {
width: 100%;
}
2023-02-13 17:59:27 -03:00
table,
th,
td {
border: 1px solid;
border-collapse: collapse;
border-color: #c9d1d9;
padding: 5px;
}
2023-02-01 15:06:05 -03:00
img {
max-width: 100%;
2024-12-17 12:28:38 -05:00
height: auto;
2023-02-01 15:06:05 -03:00
}
code {
padding: 2px 5px;
2023-02-27 16:10:40 -03:00
color: #f8f8f2;
background-color: #282a36;
2023-02-01 15:06:05 -03:00
}
pre code {
display: block;
padding: 20px;
white-space: pre-wrap;
font-size: 14px;
overflow-x: auto;
text-wrap: nowrap;
2023-02-01 15:06:05 -03:00
}
blockquote {
border-left: 1px solid #999;
color: #ccc;
padding-left: 20px;
font-style: italic;
}
footer {
padding: 25px;
text-align: center;
}
.helptext {
color: #aaa;
font-size: small;
}
.errorlist {
color: #eba613;
font-size: small;
}
/* blog posts */
ul.blog-posts {
list-style-type: none;
padding: unset;
}
ul.blog-posts li {
display: flex;
2023-02-27 16:21:51 -03:00
margin-bottom: 10px;
2023-02-01 15:06:05 -03:00
}
ul.blog-posts li span {
flex: 0 0 130px;
}
ul.blog-posts li a:visited {
color: #8b6fcb;
}
a.blog-tags {
line-height: 2;
2024-03-04 16:35:15 -03:00
margin-right: 12px;
2023-02-01 15:06:05 -03:00
}
2023-02-09 17:02:15 -03:00
h3.blog-filter {
margin-bottom: 0;
}
2023-02-01 15:06:05 -03:00
.disabled {
color: currentColor;
cursor: not-allowed;
2023-02-27 16:22:09 -03:00
opacity: 0.7;
2023-02-01 15:06:05 -03:00
}
2023-07-12 14:17:10 +02:00
2023-10-17 23:34:17 -03:00
p.byline {
font-style: italic;
}
2023-09-29 19:57:55 -03:00
/* "Skip to main content" link */
.skip-link {
2023-07-12 14:17:10 +02:00
position: absolute;
top: 5;
transform: translateY(-600%);
transition: transform 0.5s;
2023-09-29 19:57:55 -03:00
background-color: #1d1f27;
2023-07-12 14:17:10 +02:00
padding: 6px;
}
2023-09-29 19:57:55 -03:00
.skip-link:focus {
2023-07-12 14:17:10 +02:00
transform: translateY(0%);
2023-09-29 19:57:55 -03:00
}
2023-10-25 19:24:34 -03:00
figure {
margin-inline-start: 0em;
margin-inline-end: 0em;
}
figcaption > p {
margin-block-start: 0px;
text-align: center;
font-style: italic;
color: #ccc;
}