styling anchor tags
This commit is contained in:
parent
2b7c73c35e
commit
e486e0bcc1
|
@ -39,7 +39,9 @@ main {
|
|||
background-color: var(--background-color);
|
||||
height: 100%;
|
||||
width: 60vw;
|
||||
overflow: scroll;
|
||||
overflow: auto;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #ffcab0 rgba(0, 0, 0, 0.1);
|
||||
grid-column: 2/3;
|
||||
grid-row: 2/3;
|
||||
}
|
||||
|
@ -88,6 +90,21 @@ section {
|
|||
width: 55vw;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #6e5773;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color: #9a47cb;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #4f323b;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.status {
|
||||
height: 120px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue