initial commit

This commit is contained in:
2021-09-02 08:27:03 -03:00
commit 7a18b18c39
72 changed files with 3489 additions and 0 deletions

44
css/menu.css Normal file
View File

@@ -0,0 +1,44 @@
#menu {
position:fixed;
width:100%;
background-color: #002b36;
}
#menu ul {
list-style-type: none;
display: table;
margin: 0 auto;
}
#menu li {
float: left;
}
#menu li a, #menu li form {
display: inline-block;
text-align: center;
padding: 16px;
}
#menu li a:hover {
background-color: #073642;
}
body {
background-color: #073642;
color: white;
margin:0;
}
a {
color: white;
text-decoration: none;
}
a:hover {
font-weight:bold;
}
li.spacer{
display: inline;
width:65vw;
}
.msg{
display:flex;
width: 100%;
border: 1px solid #b58900;
margin: 0 auto;
}