

You can access my css below ~
Credits aren’t required since this is the most basic layout one can think of. Still, I encourage you to get a little creative with it and modify it as you wish! Css is relatively easy to read once you actually start to recognize which does what.
:root {
–width: 340px;
–font-main: ‘Times New Roman’;
–font-secondary: ‘Times New Roman’;
–font-scale: 16px;
–text-align: justify;
–background-color: #ffffff;
–heading-color: #000;
–text-color: #000;
–link-color: #2E2E2E;
–visited-color: #2E2E2E;
–code-background-color: #ffffff;
–code-color: #2E2E2E;
–blockquote-color: #ffffff;
}
body {
font-family: var(–font-secondary);
font-size: var(–font-scale);
margin: auto;
padding: 20px;
max-width: var(–width);
text-align: center;
background-color: var(–background-color);
word-wrap: break-word;
overflow-wrap: break-word;
line-height: 1.5;
color: var(–text-color);
}
h1, h2, h3, h4, h5, h6 {
font-family: var(–font-main);
color: var(–heading-color);
font-size: var(–font-scale);
font-weight: 400;
}
a {
background-image: url(https://i.postimg.cc/SR2X1PwZ/3FE9680B-603E-40B9-BB8D-85902F0853FB.gif);
background-size: cover;
font-family: “Georgia”, sans-serif;
color: transparent;
-moz-background-clip: text;
-webkit-background-clip: text;
text-decoration: none;
cursor: pointer;
filter:
drop-shadow(0px 1px #00000020);
}
}
nav a {
margin-right: 8px;
}
strong, b {
color: var(–heading-color);
}
button {
margin: 0;
cursor: pointer;
}
main {
line-height: 1.6;
}
table {
width: 100%;
}
hr {
border: 0;
border-top: 1px dashed;
}
img {
max-width: 63%;
display: block;
object-fit: cover;
margin-left: auto;
margin-right: auto;
text-align:center;
width:75%;
border: 0.10rem solid #333;
border-radius: 1px 1px 16px ;
}
font-family: monospace;
padding: 3px;
background-color: var(--code-background-color);
color: var(--code-color);
border-radius: 3px;
}
blockquote {
border-left: 1px solid #999;
color: var(–code-color);
padding-left: 20px;
font-style: italic;
}
footer {
padding: 25px 0;
text-align: center;
}
.inline {
width: auto !important;
}
.highlight, .code {
padding: 1px 15px;
background-color: var(–code-background-color);
color: var(–code-color);
border-radius: 3px;
margin-block-start: 1em;
margin-block-end: 1em;
overflow-x: auto;
}
/* blog post list */
ul.blog-posts {
list-style-type: none;
padding: unset;
}
ul.blog-posts li {
display: flex;
}
ul.blog-posts li span {
flex: 0 0 130px;
}
ul.blog-posts li a:visited {
color: var(–visited-color);
}
txto