27 lines
351 B
CSS
27 lines
351 B
CSS
.habits h1 {
|
|
font-size: 2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.habits table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.habits table th,
|
|
.habits table td {
|
|
border: 1px solid #ccc;
|
|
padding: 8px;
|
|
text-align: left;
|
|
}
|
|
|
|
.habits a {
|
|
color: #007bff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.habits a:hover {
|
|
text-decoration: underline;
|
|
}
|