Files
main-training/top_header/top_header.css

73 lines
1.4 KiB
CSS
Raw Normal View History

2023-10-27 15:44:45 +05:30
.doctor_img {
width: 95vw;
margin-left: 30px;
margin-right: 30px;
margin-top: 50px;
}
.title_1{
width: 250px;
margin-left: 100px;
margin-top: -400px;
font-size: 20;
}
h3 {
width: 500px;
color: rgb(181, 181, 181);
font-size: 10;
font-weight: lighter;
}
.book-appointment{
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
width: 75%;
position: absolute;
top: 110%;
left: 50%;
transform: translate(-50%, -50%);
}
h4 {
margin-left: 20px;
padding-top: 10px;
}
.rounded-input {
border: 1px solid #ccc;
border-radius: 10px; /* Adjust this value to change the radius */
padding: 5px;
width: 30%;
height: 35px; /* Set the width of each input field */
margin: 1%; /* Add some margin for spacing */
}
/* Style for the container div */
.input-container {
display: flex; /* Make the children flex items */
justify-content: space-between; /* Space the children equally */
margin-bottom: 10px; /* Add some margin for spacing */
}
/* Style for the "Book Appointment" button */
.book-appointment-button {
background-color: #17C1A3;
border-color: white;
color: white;
border-radius: 10px;
padding: 5px;
width: 30%;
height: 50px;
margin: 1%;
cursor: pointer;
outline: none;
}