forked from Anishkagupta04/RAPIDOC-HEALTHCARE-WEBSITE-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doctor.css
112 lines (111 loc) · 2.06 KB
/
doctor.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
}
body{
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #000;
}
.slide-content{
margin: 0 40px;
overflow: hidden;
background-color: #001c1e;
border-radius: 25px;
}
.slide-container{
max-width: 1120px;
width: 100%;
background-color: #001c1e;
padding: 40px 0;
border-radius: 20px;
}
.card{
border-radius: 25px;
background-color: #FFf;
}
.image-content,.card-content{
display: flex;
flex-direction: column;
align-items: center;
padding: 10px 14px;
}
.image-content{
position: relative;
row-gap: 5px;
padding: 25px 0;
}
.overlay{
border-radius: 25px 25px 0 25px;
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: #3fbcc0a4;
}
.overlay::before,.overlay::after{
content: '';
right: 0;
bottom: -40px;
position: absolute;
height: 40px;
width: 40px;
background-color: #3fbcc0a4;
}
.overlay::after{
border-radius: 0 25px 0 0;
background-color: #fff;
}
.card-image{
position: relative;
height: 150px;
width: 150px;
border-radius: 50%;
background: #fff;
padding: 3px;
}
.card-image .card-img{
height: 100%;
width: 100%;
object-fit: cover;
border-radius: 50%;
border: 4px solid #4070F4;
}
.name{
font-size: 18px;
font-weight: 500;
columns: #333;
}
.description{
font-size: 14px;
color: #707070;
text-align: center;
}
.button{
border: none;
font-size: 16px;
color: #fff;
padding: 8px 16px;
background-color: #007074d5;
border-radius: 8px;
margin: 14px;
cursor: pointer;
transition: all 0.3s ease;
}
.button:hover{
background: #265df2;
}
.swiper-navBtn{
color: white;
}
.swiper-navBtn:hover{
color: #007074d5;
}
.swiper-pagination-bullet{
opacity: 0;
}