Node JS version

This commit is contained in:
Aravind142857
2023-06-09 20:08:47 -05:00
parent 8983f0dd80
commit a8b8883b11
894 changed files with 152408 additions and 73 deletions

4
public/css/error.css Normal file
View File

@@ -0,0 +1,4 @@
h1 {
font-size: x-large;
font-family: "Euphemia UCAS";
}

42
public/css/index.css Normal file
View File

@@ -0,0 +1,42 @@
ul {
display: flex;
list-style: none;
}
li {
padding-left: 10px;
}
#root {
color: black;
font-family: chalkduster;
}
#button {
width: 100px;
height: 30px;
background: lightgreen;
font-size: large;
font-family: Futura;
}
.glink {
font-family: "Avenir Next"
}
#error {
display: none;
color: red;
font-family: "Big Caslon"
}
#error.visible {
display: block;
}
input.invalid {
border-color: red;
border-style: solid;
border-width: medium;
}
input.valid {
border-color: green;
border-style: solid;
border-width: medium
}
.mandatory {
color: red;
}