New Theme, new title

This commit is contained in:
Gaia Sergent 2024-07-01 20:28:11 -04:00
parent 18ca300e04
commit f3515545e5
10 changed files with 22 additions and 12 deletions

View file

@ -2,6 +2,7 @@
<html> <html>
<head> <head>
<link rel="stylesheet" href="../style.css"> <link rel="stylesheet" href="../style.css">
<title>Blog-Log</title>
</head> </head>
<body> <body>

View file

@ -3,6 +3,7 @@
<head> <head>
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style.css">
<title>Blog-Log</title>
</head> </head>
<body> <body>
@ -10,7 +11,6 @@
<h1 class="title"> <h1 class="title">
Blog-Log Blog-Log
</h1> </h1>
<hr>
</div> </div>
<h2>What is a Blog-Log?</h2> <h2>What is a Blog-Log?</h2>
<p class="bllog-body"> <p class="bllog-body">

View file

@ -3,6 +3,7 @@
<head> <head>
<link rel="stylesheet" href="../style.css"> <link rel="stylesheet" href="../style.css">
<title>Blog-Log</title>
</head> </head>
<body> <body>

View file

@ -2,6 +2,7 @@
<html> <html>
<head> <head>
<link rel="stylesheet" href="../style.css"> <link rel="stylesheet" href="../style.css">
<title>Blog-Log</title>
</head> </head>
<body> <body>

View file

@ -2,6 +2,7 @@
<html> <html>
<head> <head>
<link rel="stylesheet" href="../style.css"> <link rel="stylesheet" href="../style.css">
<title>Blog-Log</title>
</head> </head>
<body> <body>

View file

@ -2,6 +2,7 @@
<html> <html>
<head> <head>
<link rel="stylesheet" href="../style.css"> <link rel="stylesheet" href="../style.css">
<title>Blog-Log</title>
</head> </head>
<body> <body>

View file

@ -3,6 +3,7 @@
<head> <head>
<link rel="stylesheet" href="../style.css"> <link rel="stylesheet" href="../style.css">
<title>Blog-Log</title>
</head> </head>
<body> <body>

View file

@ -2,6 +2,7 @@
<html> <html>
<head> <head>
<link rel="stylesheet" href="../style.css"> <link rel="stylesheet" href="../style.css">
<title>Blog-Log</title>
</head> </head>
<body> <body>

View file

@ -2,6 +2,7 @@
<html> <html>
<head> <head>
<link rel="stylesheet" href="../style.css"> <link rel="stylesheet" href="../style.css">
<title>Blog-Log</title>
</head> </head>
<body> <body>

View file

@ -7,14 +7,16 @@
font-family: "Oswald-Light"; font-family: "Oswald-Light";
src: url('fonts/Oswald-Light.ttf'); src: url('fonts/Oswald-Light.ttf');
} }
:root {
--text-color:#460017;
}
a { a {
text-decoration: none; text-decoration: none;
} }
.bllog-container > a { .bllog-container > a {
text-decoration: none; text-decoration: none;
color: white; color: var(--text-color);
font-weight: bolder; font-weight: bolder;
} }
@ -27,7 +29,7 @@ a {
.blog-title { .blog-title {
font-family: "Bagnard"; font-family: "Bagnard";
font-size: 1.7em; font-size: 1.7em;
color:white; color:var(--text-color);
} }
a:hover > h3 { a:hover > h3 {
@ -39,7 +41,7 @@ a:hover > p {
} }
.anticopyright { .anticopyright {
color: white; color: var(--text-color);
} }
.navbar { .navbar {
@ -61,25 +63,25 @@ h1 {
} }
body { body {
background-color: #4d0027; background-color: #ffa7bd;
font-family: "Oswald-Light"; font-family: "Oswald-Light";
} }
h1 { h1 {
color: white; color:var(--text-color);
font-family: "Bagnard"; font-family: "Bagnard";
} }
.quote { .quote {
font-size: 2rem; font-size: 2rem;
color: white; color:var(--text-color);
font-style: italic; font-style: italic;
margin: 0; margin: 0;
margin-top: 0.7rem; margin-top: 0.7rem;
} }
.bllog-body { .bllog-body {
color: white; color: #4d0027;
font-size: 1.5rem; font-size: 1.5rem;
} }
@ -92,7 +94,7 @@ h1 {
margin-right: 0.5rem; margin-right: 0.5rem;
margin-bottom: 0.1rem; margin-bottom: 0.1rem;
border: 0.125rem solid; border: 0.125rem solid;
border-color: white; border-color: var(--text-color);
} }
.bllog-container > p { .bllog-container > p {
@ -101,7 +103,7 @@ h1 {
} }
h3 { h3 {
color: white; color:var(--text-color);
font-family: "Bagnard"; font-family: "Bagnard";
font-size: 2em; font-size: 2em;
} }
@ -112,7 +114,7 @@ h3 {
} }
h2 { h2 {
color: white; color:var(--text-color);
font-family: "Bagnard"; font-family: "Bagnard";
font-size: 3em; font-size: 3em;
} }