-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
82 lines (69 loc) · 1.23 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
body {
padding: 0;
margin: 0;
background: #f2f6e9 !important;
}
/*--- Navigation bar ---*/
.navbar {
background: #6ab446;
}
.nav-link,
.navbar-brand {
color: #fff;
cursor: pointer;
}
.nav-link:hover,
.navbar-brand:hover {
color: #3f6b29;
}
.nav-link {
margin-right: 1em !important;
}
.nav-link:hover {
color: #3f6b29;
}
.navbar-collapse {
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
/*--- Images cards section ---*/
.features {
margin: 4em auto;
padding: 1em;
position: relative;
/*--- Contact form ---*/
}
.features img {
-webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
margin-bottom: 16px;
}
.features .btn {
background-color: #6ab446;
border: 1px solid #6ab446;
color: #fff;
margin-top: 20px;
}
.features .btn:hover {
background-color: #548f38;
border: 1px solid #548f38;
}
.feature-title {
color: #333;
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 20px;
text-transform: uppercase;
}
/*--- Footer ---*/
.page-footer {
background-color: #222;
color: #ccc;
padding: 60px 0 30px;
}
.footer-copyright {
color: #666;
padding: 40px 0;
}
/*# sourceMappingURL=styles.css.map */