-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
156 lines (126 loc) · 1.98 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
body {
font-family: "Montserrat", sans-serif;
text-align: center;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 900; /* black */
}
/* Headings */
.big-heading {
font-size: 3.5rem;
line-height: 1.5;
}
.section-heading {
font-size: 3rem;
line-height: 1.5;
}
/* Containers */
.container-fluid {
padding: 7% 15%;
}
/* Sections */
.colored-section {
background-color: #ff4c68;
color: #fff;
}
.white-section {
background-color: #fff;
}
/* Navbar */
.navbar {
padding-bottom: 4.5rem;
}
.navbar-brand {
font-family: "Ubuntu", sans-serif;
font-size: 2.5rem;
font-weight: bold;
}
.nav-link {
font-size: 1.2rem;
font-weight: 300;
}
/* Title section */
#title {
text-align: left;
}
#title .container-fluid {
padding: 3% 15% 7%;
}
.title-image {
width: 23%;
right: 23.5%;
transform: rotate(25deg);
position: absolute;
}
/* Download buttons */
.download-button {
margin: 5% 3% 5% 0;
}
/* Features Section */
/* applying a container-fluid div around the
features row seems to take care of the
necessary padding required */
#features {
position: relative;
}
.feature-box {
padding: 5%;
}
#features p {
color: #8f8f8f;
}
#features i {
padding-bottom: 1rem;
color: #ef8172;
}
#features i:hover {
color: #ff4c68;
}
/* Testimonial Section */
#testimonials {
background-color: #ef8172;
}
.testimonial-text {
font-size: 3rem;
line-height: 1.5;
}
#testimonials img {
width: 10%;
border-radius: 50%;
margin: 2.5%;
}
/* Press Section */
#press {
background-color: #ef8172;
padding-bottom: 3%;
}
#press img {
width: 15%;
padding: 20px 20px 50px;
}
/* Pricing section */
.pricing-text {
font-size: 3rem;
line-height: 1.5;
}
.pricing-column {
padding: 2% 3%;
}
.card-footer {
background-color: transparent;
border-top: 0px;
}
/* Footer section */
#footer i {
padding: 2% 1%;
}
@media (max-width: 1024px) {
#title {
text-align: center;
}
.title-image {
position: static;
transform: rotate(0deg);
width: 60%;
}
}