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
+38
View File
@@ -0,0 +1,38 @@
.calDownload {
color: #e7e5e5;
background-color: #2d63c8;
font-size: 19px;
border: 1px solid #2d63c8;
padding: 15px 50px;
cursor: pointer;
}
.calDownload:hover {
color: #2d63c8;
background-color: #e7e5e5;
}
.ogCal {
color: #e7e5e5;
background-color: #c82d31;
font-size: 20px;
border: 1px solid #2d63c8;
padding: 10px 45px;
letter-spacing: 1px;
cursor: pointer;
}
.ogCal:hover {
color: #c82d31;
background-color: #e7e5e5;
}
h1 {
text-align: center;
color: #ffffff;
font-weight: 120;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
+4
View File
@@ -0,0 +1,4 @@
body {
/* color: rgb(148, 0, 0); */
color: rgb(252, 252, 252);
}
+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;
}