14 lines
242 B
CSS
14 lines
242 B
CSS
.nav > #login {
|
|
background-color: rgb(var(--primary-rgb));
|
|
border-color: rgb(var(--secondary-rgb));
|
|
flex-grow: 4;
|
|
width: 90%;
|
|
border-right-width: 0px;
|
|
font-size: 140%;
|
|
}
|
|
|
|
.nav > #login:hover {
|
|
flex-grow: 5;
|
|
width: 100%;
|
|
}
|
|
|