-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
191 lines (152 loc) · 2.49 KB
/
style.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
189
190
191
#title{
background-color: #ff4c68;
color: #fff;
}
h1{
font-family: 'Montserrat', sans-serif;
font-weight: 900;
size: 3.5rem;
line-height: 1.5;
}
.container-fluid{
padding: 3% 15% 12%;
}
body{
font-family: 'Montserrat', sans-serif;
}
/* Navigation Bar */
.navbar{
padding: 0 0 4.5rem;
}
.navbar-brand{
font-family: 'Ubuntu', sans-serif;
font-size: 2rem;
font-weight: bold;
}
.nav-item{
padding: 0 18px;
}
.nav-link{
font-family: 'Montserrat', sans-serif;
font-weight: 300;
font-size: 1.2rem;
}
/* Download Button */
.download-btn{
margin: 5% 3% 5% 0;
padding: 0.5rem 1rem;
}
/* Download Button Images */
.fab{
padding: 0 10px 0 0;
}
/* Title Image */
.title-image{
width: 60%;
transform: rotate(25deg);
position: absolute;
right: 30%;
}
/* Features section */
#features{
background-color: #fff;
text-align: center;
padding: 7% 15%;
position: relative;
}
.icon{
color: #ef8272;
padding: 10%;
}
.icon:hover{
color: #ff4c68;
}
.feature-box{
padding: 5%;
}
h3{
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 1.3rem;
}
p{
color: #8f8f8f;
}
/* Testimonials section */
#testimonials{
background-color: #ef8272;
text-align: center;
}
h2{
color: #fff;
font-family: 'Montserrat', sans-serif;
font-weight: bold;
}
.testimonial-image{
border-radius: 100%;
width: 10%;
margin: 20px;
}
.carousel-item{
padding: 7% 15%;
}
/* press section */
#press{
padding-bottom: 3%;
background-color: #ef8272;
text-align: center;
}
.presslogo{
width: 15%;
margin: 20px 20px 50px;
}
/* # section */
##{
text-align: center;
padding: 100px;
}
## h2{
color: #000;
font-size: 27px;
padding-bottom: 8px;
}
## p{
font-size: 14px;
}
.#-col{
padding: 3% 2%;
}
/* cta section */
#cta{
padding: 7% 15%;
background-color: #ff4c68;
text-align: center;
color: #fff;
}
#cta h3{
font-family: 'Montserrat';
font-weight: 700;
font-size: 3rem;
line-height: 1.5;
}
/* footer section */
#footer{
text-align: center;
padding: 2% 10%;
}
.footer-icon{
margin: 20px 15px;
}
@media (max-width:1028px) {
#title{
text-align: center;
}
.title-image{
position: static;
transform: rotate(0);
width: 50%;
}
.container-fluid{
padding-bottom: 7%;
}
}