74 lines
1.3 KiB
CSS
74 lines
1.3 KiB
CSS
.phone {
|
|
margin: 0 auto;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 3rem;
|
|
background-color: #f7941f;
|
|
border-radius: 20px;
|
|
padding: 5px 10px;
|
|
width: fit-content;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.phone-fixed {
|
|
position: fixed;
|
|
right: 20px;
|
|
bottom: 20px;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 3rem;
|
|
background-color: #f7941f;
|
|
border-radius: 20px;
|
|
padding: 5px 10px;
|
|
width: fit-content;
|
|
font-weight: 400;
|
|
}
|
|
|
|
|
|
.onlineorder {
|
|
margin: 5px auto;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 3rem;
|
|
background-color: #ED561A;
|
|
border-radius: 20px;
|
|
padding: 5px 10px;
|
|
width: fit-content;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.onlineorder-fixed {
|
|
position: fixed;
|
|
right: 20px;
|
|
bottom: 84px;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 3rem;
|
|
background-color: #ED561A;
|
|
border-radius: 20px;
|
|
padding: 5px 10px;
|
|
width: fit-content;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.onlineorder:hover, .onlineorder-fixed:hover {
|
|
background-color: #d12600;
|
|
}
|
|
|
|
.phone-icon {
|
|
margin-right: 7px;
|
|
}
|
|
|
|
.cart-icon {
|
|
margin-right: 7px;
|
|
}
|
|
|
|
.phone-link:hover {
|
|
text-decoration: none;
|
|
} |