78 lines
1.8 KiB
SCSS
78 lines
1.8 KiB
SCSS
.Add_Button{
|
|
button {
|
|
border: 2px solid var(--primary);
|
|
background-color: var(--primary);
|
|
border-radius: 0.5vw;
|
|
height: 40px;
|
|
width: 70px;
|
|
font-size: 1vw ;
|
|
display: flex; justify-content: center; align-items: center;
|
|
box-shadow: 2px 2px 7px 0 var(--primary);
|
|
}
|
|
button span {
|
|
display: flex;
|
|
align-items: center;
|
|
color: var(--bg);
|
|
font-weight: normal;
|
|
font-size: 14px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color:var(--primary);
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 700px) {
|
|
.Add_Button{
|
|
button{
|
|
font-size: 2vw !important;
|
|
}
|
|
}
|
|
}
|
|
@media screen and (max-width: 470px) {
|
|
.Add_Button{
|
|
button{
|
|
font-size: 3vw !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.Add_Button_notification{
|
|
button {
|
|
border: 2px solid var(--primary);
|
|
background-color: var(--primary);
|
|
border-radius: 0.5vw;
|
|
height: 40px;
|
|
width: 180px;
|
|
font-size: 1vw ;
|
|
display: flex; justify-content: center; align-items: center;
|
|
box-shadow: 2px 2px 7px 0 var(--primary);
|
|
}
|
|
button span {
|
|
display: flex;
|
|
align-items: center;
|
|
color: var(--bg);
|
|
font-weight: normal;
|
|
font-size: 14px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color:var(--primary);
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 700px) {
|
|
.Add_Button_notification{
|
|
button{
|
|
font-size: 2vw !important;
|
|
}
|
|
}
|
|
}
|
|
@media screen and (max-width: 470px) {
|
|
.Add_Button_notification{
|
|
button{
|
|
font-size: 3vw !important;
|
|
}
|
|
}
|
|
}
|