35 lines
514 B
CSS
35 lines
514 B
CSS
.theredphone__title {
|
|
height: 40%;
|
|
|
|
background: #d6130c;
|
|
|
|
display: grid;
|
|
place-items: center;
|
|
|
|
border-bottom-left-radius:50%;
|
|
border-bottom-right-radius:50%;
|
|
}
|
|
|
|
.theredphone__links {
|
|
height: 60%;
|
|
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
}
|
|
|
|
.theredphone__link {
|
|
font-size: 2rem;
|
|
|
|
padding-top: 2rem;
|
|
padding-bottom: 2rem;
|
|
padding-left: 1rem;
|
|
padding-right: 1rem;
|
|
|
|
border: 1px solid red;
|
|
border-radius: 25%;
|
|
color: black;
|
|
text-decoration: none;
|
|
background-color: red;
|
|
}
|