You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
631 B
CSS

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