-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
167 lines (130 loc) · 2.39 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
body{
background-color: #ff4c68;
font-family: 'Montserrat';
}
#title{
color: #fff;
}
h1{
font-family: "Montserrat";
font-size: 3rem;
line-height: 1.5;
}
/*Also applied for text in testimonials*/
h2{
font-family: "Montserrat";
font-size: 2rem;
line-height: 1.5;
color:#000;
}
.container-fluid{
padding: 3% 15%;
}
/* Navigation Bar */
.navbar{
padding-bottom: 4.5rem;
}
.navbar-brand{
font-family: "Ubuntu";
font-weight: bold;
font-size: 2.5rem;
}
.nav-item{
padding: 0 18px;
}
.nav-link{
font-size: 1.2rem;
font-family: 'Montserrat';
}
/* Download Buttons */
.download-button{
margin: 5% 5% 3% 0;
}
/* Title image */
.title-image{
width: 60%;
transform: rotate(25deg); /* Equal to rotateZ(45deg) */
}
/* Features */
#features{
padding: 5% 10%;
background-color: #fff;
}
.icon-features{
text-align: center;
padding: 4.5%;
}
/* icons for features */
.feature-icons{
color: #ef8172;
margin-bottom: 1rem;
}
.feature-icons:hover{
color:#ff4cE2;
}
/*Texts in features*/
h3{
font-family: "Montserrat";
font-weight: bold;
}
p{
font-weight: lighter;
}
/* testimonials */
#testimonials{
text-align: center;
background-color: #ef8172;
color:#fff;
}
.testimonial-image{
width: 10%;
margin: 20px;
border-radius: 100%; /* makes image circular */
}
#press{
text-align: center;
background-color: #ef8172;
padding-bottom: 3%;
}
.press-images{
width: 15%;
margin: 20px 20px 50px;
}
.carousel-item{
padding: 7% 15%;
}
/* Pricing Section */
#pricing{
padding : 100px;
background-color: #fff;
}
.pricing-cards{
padding : 3% 2%;
text-align: center;
}
/* SALL TO ACTION Section */
#cta{
background-color: #ff4c68;
padding:5% 3%;
text-align: center;
}
/* FOOTER SECTION */
#footer{
padding:5% 3%;
background-color: #fff;
text-align: center;
}
.footer-icons{
margin-top: 2%;
margin-bottom: 2%;
margin-right: 10px;
}
/* Adjusting to different widths of mobile and tablet using media query in css*/
@media (max-width : 1040px){
#title{
text-align: center;
}
.title-image{
transform: rotate(0);
}
}