-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.css
60 lines (55 loc) · 970 Bytes
/
default.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
body {
font-family: 'Open Sans';
background: rgb(160, 209, 193);
}
h1 {
color: #fff;
font-family: 'Open Sans';
font-weight: 300;
font-size: 5em;
}
h2 {
color: #070633;
font-weight: 300;
padding-bottom: 20px;
}
.navbar {
margin-bottom: 0;
}
.splash {
min-height:600px;
background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('img/dawn-nature-sunset-woman.jpg') no-repeat fixed;
background-position: 0 -200px;
background-size: cover;
text-align: right;
padding-top: 50px;
padding-right: 5%;
}
.splash p {
color: #fff;
font-size: 1.2em;
}
.flex-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: stretch;
}
.flex-item {
flex: 0 0 33%;
padding: 25px;
min-width:300px;
}
.section {
padding: 40px;
text-align: center;
}
.pricing {
background: rgb(140, 65, 119);
}
@media screen and (max-width: 600px) {
.splash {
min-height:400px;
padding-top:0px;
}
}