-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
146 lines (122 loc) · 2.64 KB
/
main.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
@import url('https://fonts.googleapis.com/css?family=Lora:400,700');
/*=============================================================================*/
/* Global Tags */
.fa-envelope-open{
color: black;
}
html, body
{
width: 100%;
height: 100%;
margin: 0;
}
h1, h2, p, a {
font-family: 'Lora', serif;
}
blockquote {
background: #5E4955;
border-left: 10px solid #5E4955;
margin: 1.5em 10px;
padding: 0.5em 10px;
color: black;
font-size: 24px;
}
blockquote:before {
color: #ccc;
content: open-quote;
font-size: 4em;
line-height: 0.1em;
margin-right: 0.25em;
vertical-align: -0.4em;
}
blockquote p {
display: inline;
color: black;
}
/*=============================================================================*/
/* Navigation Bar */
nav {
background-color: #5E4955;
text-align: center;
position: fixed;
font-size: 16px;
text-decoration: none;
color: white;
width: 100%;
height: 30px;
letter-spacing: 1px;
word-spacing: 1em;
font-weight: 300;
padding-bottom: 10px;
padding-top: 1.3em;
margin: auto;
z-index: 5;
-webkit-box-shadow: 0px 3px 16px -4px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 3px 16px -4px rgba(0,0,0,0.75);
box-shadow: 0px 3px 16px -4px rgba(0,0,0,0.75);
}
nav a {
text-decoration: none;
color: #ffffff
}
@media only screen and (max-width: 600px) {
nav {
height: 20px;
font-size: 12px;
position: fixed;
}
}
/*==================================================================*/
/* Contact Us Call to Action */
.contact-us {
background-color: white;
border: 1px solid black;
-moz-border-radius: 28px;
-webkit-border-radius: 28px;
border-radius: 28px;
font-size: 17px;
text-decoration: none;
color: #000000;
padding: 16px 31px;
right: 50px;
bottom: 30px;
text-align: center;
transition: 0.5s;
position: fixed;
}
.contact-us a:hover {
background-color: #C6DDF0;
border: 1px solid #C6DDF0;
}
.contact-us a {
text-decoration: none;
color: #ffffff
}
.contact-us:hover {
background-color: #C6DDF0;
border: 1px solid #C6DDF0;
}
/*==================================================================*/
/* Wrapper for alternate pages */
.alt-wrapper * {
max-width: 80%;
padding-top:20px;
margin: auto;
height: 100%;
background-color: #ffffff49;
color: black;
}
.alt-title h1 {
text-align: left;
color: #2A2B2A;
font-size: 54px;
}
.alt-subtitle p, h2 {
color: black;
font-size: 22px;
line-height: 2em;
}
.alt-wrapper iframe {
width: 100%;
height: inherit;
}