symfony-with-user-account/assets/styles/_clickables.scss

30 lines
513 B
SCSS
Raw Normal View History

2024-07-16 10:54:05 +02:00
.clickable{
cursor:pointer;
}
a{
@extend .clickable;
2024-07-16 11:44:30 +02:00
padding: 0.5rem 1rem;
display: inline-block;
2024-07-16 10:54:05 +02:00
color: $primary_color;
2024-07-16 11:44:30 +02:00
text-decoration: none;
2024-07-16 11:57:39 +02:00
border: solid 1px $bg_color;
2024-07-16 10:54:05 +02:00
&:hover{
color: $primary_color_darker;
}
2024-07-16 11:44:30 +02:00
&.active{
background: $bg_active_link;
color: $active_link_text;
}
2024-07-16 10:54:05 +02:00
}
button{
2024-07-16 10:54:05 +02:00
@extend .clickable;
padding: 1rem 2rem;
border: solid 1px $bg_color;
background: $primary_color;
border-radius: 0.25rem;
2024-07-16 10:54:05 +02:00
&:hover{
background: $primary_color_darker;
}
}