55 lines
690 B
CSS
55 lines
690 B
CSS
|
|
button, input, textarea {
|
|
color: black;
|
|
}
|
|
|
|
input[type="text"], input[type="email"], input[type="button"], textarea, button {
|
|
border-color: black;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: lightgray;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6, p, li, th, td, label {
|
|
color: black;
|
|
}
|
|
|
|
a:link, .button-link {
|
|
color: blue;
|
|
}
|
|
|
|
a:visited {
|
|
color: purple;
|
|
}
|
|
|
|
input, button, textarea {
|
|
background-color: white;
|
|
}
|
|
|
|
a:hover, .button-link:hover {
|
|
background-color: inherit;
|
|
color: red;
|
|
}
|
|
|
|
th, td {
|
|
border: 1px solid black;
|
|
}
|
|
|
|
ul.navbar {
|
|
background-color: #c8c8d8;
|
|
}
|
|
|
|
ul.navbar button:hover {
|
|
background-color: #b8b8c8;
|
|
}
|
|
|
|
html, body {
|
|
background-color: #f0f0ff;
|
|
}
|
|
|
|
#root-head {
|
|
background-color: #e0e0ee;
|
|
}
|
|
|