kurs-app/CSS/Element/button.css

53 lines
868 B
CSS

.buttons-container{
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
}
.btn{
padding: 5px 10px;
font-weight: var(--font-weight-semibold);
font-size: var(--font-size-text);
text-decoration: none;
color: var(--brand-white);
display: flex;
flex-direction: row;
align-items: center;
cursor: pointer;
}
.btn-primary {
background: var(--brand-primary);
border-radius: 3px;
}
.btn-user {
border-radius: 9999px;
color: var(--brand-primary);
background-color: var(--brand-white);
display: flex;
flex-direction: row;
justify-content: center;
justify-items: center;
align-items: center;
width: fit-content;
aspect-ratio: 1/1;
}
.btn-form{
padding: 10px 20px;
}
.btn-login{
background-color: transparent;
}
.btn-user > span {
font-size: 28px;
}
.btn-logout{
background-color: red;
}