addressbook/public/assets/styles/main.css

39 lines
492 B
CSS
Raw Normal View History

2022-10-21 14:31:48 +02:00
body {
background: #1f1f1f;
color: #cdcdcd;
}
/* unvisited link */
a:link {
color: #ff8844;
text-decoration: none;
}
/* visited link */
a:visited {
color: #ff8844;
text-decoration: none;
}
/* mouse over link */
a:hover {
color: #ff8844;
text-decoration: none;
}
/* selected link */
a:active {
color: #ff8844;
text-decoration: none;
font-weight: bold;
2022-10-24 20:24:19 +02:00
}
table, th, td {
border: 1px solid;
}
label {
display: block;
padding: 1ex;
}