-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhome.css
168 lines (144 loc) · 2.87 KB
/
home.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/*Parallax (image moves with scrolling) */
.parallax{
position: inherit;
align-self: center;
align-items: center;
background : url(gallery/arm.JPG) ;
background-repeat: no-repeat;
background-attachment: fixed;
margin: 1% 0% 0% 10px;
width: 100%;
background-position: center;
}
/*Adjusts the size of the parallax Image needs to be centered in the page*/
.parallax-inner{
padding-top: 15%;
padding-bottom: 15%;
padding-left: 750px;
}
/*icon image style;*/
.icon{
width: 30px;
cursor: pointer;
}
/*moving background;*/
.parallax-inner p{
position: absolute;
color: #ffffff;
font-family: "Arapey", Sans-serif;
padding-left: 2em;
font-size: 40px;
text-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
transform: translate(-50%, -50%);
}
/*The headers style;*/
h1{
margin-left: 40px;
display: inline;
font-family: "Georgia", Sans-serif;
color: #0a264c;
font-size: 200%;
}
/*dr image style;*/
.dr img{
float: right;
width: 100px;
margin-left: 100px; }
/*dr images scale increase when hovering;*/
.dr img:hover{
transition: 1s;
filter: brightness(110%);
transform: scale(1.3);
cursor: pointer;
}
/*The div containing drs names;*/
.dr{
border-radius: 25px;
padding-left: 50px;
padding-top: 50px;
padding-right: 50px;
padding-bottom: 50px;
background-color: #ffffff;
margin-left: 50px;
margin-right: 50px;
margin-top: 100px;
color:#004295;
font-family: "Poppins", Sans-serif;
font-weight: 300;
height: 150px;
}
/*The div scale increase when hover;*/
.dr:hover{
transition: 1s;
transform: scale(1.05);
}
/*the clinic image;*/
#clinicImage{
width: 25%;
border-radius: 5%;
float: right;
margin-right: 100px ;
margin-top: 40px;
cursor: pointer;
}
/*the clinic image scale increase when hover;*/
#clinicImage:hover{
transition: 1s;
transform: scale(1.1);
}
/*The "welcome to the clinic" text;*/
.about{
color:#004295;
font-family: "Poppins", Sans-serif;
font-weight: 400px;
margin-left: 30px;
width: 800px;
}
/*Button style;*/
button{
background-color: rgb(176, 196, 235);
font-family: "Poppins", Sans-serif;
font-weight: 400px;
color:#004295;
margin-left: 200px;
width: 200px;
height: 50px;
cursor: pointer;
}
/*Table;*/
.container{
margin-left: 450px;
}
/*Table;*/
.btn-info:hover
{color:#fff;
background-color:#31b0d5;
border-color:#269abc}
/*Table;*/
.table-bordered td
{border:1px solid rgb(83, 96, 214);
background-color: rgb(215, 227, 241);
color: #004295;
}
/*Table;*/
.table-bordered tr
{border:1px solid rgb(83, 96, 214)}
/*Table;*/
th{
color:#004295;
font-family: "Poppins", Sans-serif;
font-weight: 400px;
margin-left: 100%;
width: 800px;
}
/*first dr to show;*/
#first{
margin-top:50px ;
}
iframe{
/*Youtube video style;*/
align-self: center;
align-items: center;
margin: 1% 0% 0% 450px;
width: 40%;
}