-
Notifications
You must be signed in to change notification settings - Fork 0
/
doctor.css
90 lines (90 loc) · 1.79 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
body,html{
background-color: #fff;
overflow-x: hidden !important;
margin: 0px !important;
padding: 0px !important;
}
*{
text-decoration: none !important;
}
.nav{
position: fixed;
z-index: 1000;
top: 0;
right: 0;
left: 0;
height: 80px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 0 25px 0 25px;
background-color: #fff;
box-shadow: 0 19px 38px rgba(0,0,0,0.10);
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
.nav .links .mainlink{
color: #e0501b;
}
.nav .links a:hover{
color: #007bff;
}
.nav .links .button{
padding: 8.5px 34px;
margin-left: 65px;
display: inline-block;
padding: 10.5px 36px;
font-size: 14px;
color: #000;
-o-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
text-transform: capitalize;
border: 1px solid #e4e6ea;
}
.nav .links .button:hover{
color: #007bff;
}
.landing{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 0 10vw 0 10vw;
height: 10vh;
}
.landingText h1{
font-size: 6vw;
margin: 0 !important;
}
.landingTest h3{
margin: 6px !important;
font-size: 15px;
line-height: 1.8;
color: #77777777;
padding-right: 20px;
}
.landingText .btn{
width: 120px;
margin-top: 30px;
padding: 14px 20px 12px 20px;
background-color: #007bff;
border-radius: 45px;
text-align: center;
}
.landingText .btn a{
font-size: 1.2vw;
color: #fff;
}
.landingText img{
width: 28vw;
}
.about{
height: 600px;
padding: 50px;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
}