add template files and compose file, fix syntax errors in template

This commit is contained in:
boris
2024-11-07 13:10:06 +00:00
parent 9689e155a2
commit f9d57038bf
41 changed files with 8649 additions and 0 deletions

38
css/my-style.css Normal file
View File

@@ -0,0 +1,38 @@
#title {
margin-top: 12px;
background-color: #fff;
color: #000;
}
#menu {
border-top: solid 6px #000;
background-color: #fff;
color: #fff;
height: 400px;
}
#menu a {
background-color: #f00;
color: #fff;
text-decoration: none;
display: block;
}
#menu a:hover {
background-color: #f00;
color: #ddd;
text-decoration:underline;
display: block;
}
#content {
background-color: #fff;
border-top: solid 6px #f00;
}
#footer {
margin-top: 20px;
text-align: center;
background-color: #000;
color: #fff;
}