forked from jasminekaur02/DentalBuddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
113 lines (100 loc) · 1.81 KB
/
styles.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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
header{
width: 100%;
height: 100vh;
/*background-image :url('images/');*/
}
.mainheader{
width: 100%;
height: 100px;
display: flex;
justify-content: space-between;
align-items: center;
}
.mainheader .logo img{
width: 250px;
height: 70px ;
padding-left: 60px;
}
.mainheader nav{
width: 450px;
display: flex;
justify-content: space-around;
align-items:center;
}
.mainheader nav a{
text-decoration: none ;
color: black;
text-transform: uppercase;
}
.menubtn{
margin-right: 60px;
}
.mainheader button{
padding: 10px 45px;
text-align: center;
font-size:14px;
color: #fff;
border: none;
background-image: ;
border-radius: 10px;
padding-left: 50px;
}
main{
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
main .right-sec{
padding-right: 70px;
}
main .left-sec{
padding-left: 100px;
}
.left-sec h2{
font-size: 20px;
text-transform: capitalize;
font-weight: lighter;
color: #242424;
margin-top: 100px;
}
.left-sec h1{
font-size: 55px;
text-transform: capitalize;
font-weight: 700;
margin: 15px 0;
}
.left-sec p{
margin-bottom: 20px;
}
.left-sec button{
padding: 15px 45px;
text-align: center;
font-size: 14px;
color: #fff;
border: none;
background-image: linear-gradient(to right,#649bff,#0070fa,#649bff);
border-radius:10px;
}
.backgroundImg{
position: absolute;
left:0;
top:0;
width: 100%;
height: 100vh;
z-index: -1;
object-fit:cover;
}
@media screen and (min-width:768px) {
body{
padding: 0% 10%;
}
.right-sec{
display: flex;
}
}