-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (86 loc) · 1.35 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
@import url("https://fonts.googleapis.com/css?family=Allura");
html, body {
height: 100%;
width: 100%;
}
.navbar {
background-color: #a2d9db;
padding: 1% 0;
font-size: 20px;
}
.navbar-brand {
min-height: 55px;
padding: 15px 15px 5px;
font-family: 'Allura', cursive;
font-size: 40px;
}
.navbar-default .navbar-nav li a {
color: ##d8a2b5;
}
.navbar-default .navbar-nav li a:hover, .navbar-default .navbar-nav li a.active {
color: #FFFFFF;
}
#home {
background: url('img/bump.jpg') no-repeat center fixed;
position: relative;
display: table;
width: 100%;
height: 100%;
background-size: cover;
}
.landing-text {
display: table-cell;
text-align: center;
vertical-align: middle;
}
.landing-text h1 {
font-weight: 700;
font-size: 500%;
}
.padding {
padding: 80px 0;
}
.padding img {
width: 100%;
}
footer {
width: 100%;
background-color: #a2d9db;
padding: 5% 5% 10% 5%;
color: #FFF;
}
.fa {
padding: 15px;
font-size: 25px;
color: #FFF;
}
.fa:hover {
color: #D5D5D5;
text-decoration: none;
}
.icon {
max-width: 300px;
padding-top: 5%;
}
p.about-us {
font-size: 15px;
}
p.lead {
text-align: center;
}
p {
text-align: justify;
}
@media (max-width: 768px) {
.landing-text h1 {
font-size: 300%;
}
.fa {
font-size: 20px;
padding: 10px;
}
.icon {
padding-top: 5%;
max-width: 160px;
}
}