15 lines
323 B
CSS
15 lines
323 B
CSS
/*****************************
|
|
* BUTTON
|
|
*****************************/
|
|
|
|
div.button {
|
|
font-family: var(--secondary-font);
|
|
border-bottom: 3px solid var(--secondary-colour);
|
|
width: fit-content;
|
|
padding-bottom: 3px;
|
|
font-weight: bold;
|
|
|
|
&:hover {
|
|
border-bottom: 3px solid white;
|
|
}
|
|
}
|