forked from etoiledebethleem/website
32 lines
475 B
SCSS
32 lines
475 B
SCSS
.button {
|
|
background-color: $accent;
|
|
color: white;
|
|
padding: 1rem 2rem;
|
|
min-width: 10rem;
|
|
font-size: 1.2rem;
|
|
border: 0;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
|
|
.burger {
|
|
width: 100px;
|
|
height: 100px;
|
|
border: 1px solid red;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-direction: column;
|
|
.bar {
|
|
width: 100%;
|
|
border-top: 6px solid rgba(1, 1, 1, 0.9);
|
|
}
|
|
.bar1 {
|
|
|
|
}
|
|
.bar2 {
|
|
|
|
}
|
|
.bar3 {
|
|
|
|
}
|
|
}
|