Basic manual structure created.

This commit is contained in:
Joshua Ashton
2024-06-25 19:19:06 -06:00
parent 826884d22e
commit b2aa49819e
8 changed files with 58 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
h1 {
color: #333;
font-family: Arial, sans-serif;
font-size: 4rem;
}
h2 {
color: #333;
font-family: Arial, sans-serif;
font-size: 3rem;
}
h3 {
color: #333;
font-family: Arial, sans-serif;
font-size: 2.5rem;
}
h4 {
color: #333;
font-family: Arial, sans-serif;
font-size: 2rem;
}
p {
color: #333;
font-family: Arial, sans-serif;
font-size: 1rem;
}
.code {
font-family: monospace;
background-color: #f4f4f4;
padding: 8px;
border-radius: 4px;
border: 1px solid #ccc;
display: inline-block;
}