-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
188 lines (174 loc) · 3.26 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
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
body{
font-family: "Montserrat";
}
#title{
background-color: #ff4c68;
color: #fff;
}
h1{
font-family:'Montserrat-Thin';
font-size: 3.5rem;
line-height: 1.5;
}
.h3-class
{
width:125%;
}
h3{
font-family: fantasy ;
}
h2{
font-size: 2rem;
font-family:Georgia, 'Times New Roman', Times, serif;
line-height: 1.5;
}
.h2-class{
font-family: fantasy;
}
.container-fluid
{
padding: 3% 15% 6%;
/* 6% of extra bottom padding given * 3 is top 15 is left rigth and 6 is bottom*/
}
/* navigation */
.navbar{
padding:0 0 2.1rem;
}
.navbar-brand{
font-family:"Ubuntu";
font-size: 2.5rem;
font-weight: bold;
}
.nav-iteam{
padding: 0 18px;
/* it gives padding to contacts ... */
}
.nav-link{
font-size: 1.2rem;
font-family: "Montserrat-Bold";
}
/* Download Button */
.download-button
{
margin: 5% 3% 5% 0;
}
/* image width */
.title-image
{
width: 22%;
/* this function rotates the images to the specified angle; */
transform: rotate(22deg);
position: absolute;
right: 25%;
/* since the position is absolute so we can change its position form its nearst neighbouring ancestor rigth left whatever */
}
/* adding padding to the features section */
#features
{
background-color: #fff;
padding: 7% 15%;
position: relative;
/* z-index:1; */
/* position element come second dont need to sepicify z-index as above specified */
}
.feature-box{
text-align: center;
padding: 5%;
}
.icon{
color: #ef8172;
margin: 1rem;
}
.icon:hover{
color: #ff4c68;
}
/* testimonials css */
#testimonials{
padding: 7% 15%;
background-color: #ef8172;
text-align: center;
color: #fff;
}
.dog-image{
width: 10%;
border-radius: 100%;
margin: 20px;
}
#press{
background-color: #ef8172;
text-align: center;
padding-bottom: 3%;
}
.press-logo{
width: 10%;
margin: 20px 20px 50px;
}
.carousel-item{
padding:7% 15% ;
}
div.carousel-inner {
height: 500px !important;
/* this is important as carousel height may vary according to the content of the inner corusel so make it const irrespective of content */
}
.testimonial-image{
border-radius: 100%;
}
.dog-image{
height: 200px;
width: 200px;
}
#pricing{
padding: 100px;
text-align: center;
}
.pricing-table{
padding: 3% 2%;
}
/* here we are making media query in order to responsive website
on and for image and text */
@media(max-width:1000px)
{
#title{
text-align: center;
}
.title-image{
position: static;
/* any screen lesser than 1000px will have atatic images */
transform: rotate(0);
width: 50%;
}
}
#cta{
background-color:#ff4c68;
color: #fff;
padding: 7% 15%;
/* padding: 7% 15%; */
text-align: center;
}
/* .cta{
text-align: center;
padding-bottom:50px;
}*/
.h3-cta{
/* font-family: fantasy;
font-size: 2.5rem;
color: #fff;
width: 800px;
padding-left:250px; */
/* line-height: 1.5rem; */
font-family: fantasy;
font-size:3.5rem ;
line-height:1.5 ;
}
/* .dnld-btn{
padding-top:10px ;
margin-top: 20px;
margin-left: 10px;
} */
.space{
margin: 5px;
}
#footer{
text-align: center;
padding: 7% 15%;
}