migrated to express.js

This commit is contained in:
Itamar Oren
2023-02-22 14:09:40 -05:00
parent 331047a433
commit dfdcb6ac43
6 changed files with 226 additions and 69 deletions
+31
View File
@@ -0,0 +1,31 @@
body {
margin: 0;
background-color: rgb(110, 110, 110)
}
.topnav {
overflow: hidden;
background-color: #333;
text-align: center;
align-items: center;
height: 40px;
}
.topnav a {
/* float: left; */
color: #f2f2f2;
text-align: center;
padding: 20px 20px;
text-decoration: none;
font-size: 20px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #aa0404;
color: white;
}