-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
204 lines (185 loc) · 4.42 KB
/
Copy pathmain.css
File metadata and controls
204 lines (185 loc) · 4.42 KB
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
*{
margin:0;
padding:0;
}
.mobile-menu {
display:block;
width:100%;
background: #0f76c0/*e0b88f/*c99393/*e5d1a4/*dcc591/*EFD3A3*/;
line-height: 1.6em;
font-weight: 400;
width:100%;
text-align:center;
position: relative;
margin:0 auto;
}
/*Strip the ul of padding and list styling*/
.mobile-menu ul {
list-style-type:none;
margin: 0 auto;
padding-left:0;
text-align:center;
width:100%;
position: absolute;
background: #0f76c0;
}
/*Create a horizontal list with spacing*/
.mobile-menu li {
display:inline-block;
/*float: left;
margin-right: 1px;*/
}
/*Style for menu links*/
.mobile-menu li a {
display:block;
min-width:140px;
text-align: center;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #fff;
text-transform:uppercase;
background: #0f76c0;
text-decoration: none;
margin-left:-5px;
padding: 10px 0;
-webkit-transition: all 0.4s ease 0s;
-moz-transition: all 0.4s ease 0s;
-ms-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
}
/*Hover state for top level links*/
.mobile-menu li:hover a {
color: #4db3ff;
background-color:#ccddee;
}
/*Style for dropdown links*/
.mobile-menu li:hover ul a {
background: #f3f3f3;
color: #2f3036;
height: 40px;
line-height: 40px;
}
/*Hover state for dropdown links*/
.mobile-menu li:hover .mobile-menu ul a:hover {
color: #4db3ff;
}
/*Hide dropdown links until they are needed*/
.mobile-menu li ul {
display: none;
}
/*Make dropdown links vertical*/
.mobile-menu li ul li {
display: block;
float: none;
}
/*Prevent text wrapping*/
.mobile-menu li ul li a {
width: auto;
min-width: 100px;
padding: 0 20px;
}
/*Style 'show menu' label button and hide it by default*/
.mobile-menu .show-menu {
text-decoration: none;
color: #fff;
background: #0f76c0;
text-align: center;
padding: 10px 15px;
display: none;
cursor: pointer;
text-transform: uppercase;
}
.mobile-menu .show-menu span{
padding-left: 35px;
}
/*Hide checkbox*/
.mobile-menu input[type=checkbox]{
display: none;
}
/*Show menu when invisible checkbox is checked*/
.mobile-menu input[type=checkbox]:checked ~ #menu{
display: block;
}
/*Responsive Styles*/
@media screen and (max-width : 800px){
#linebar {
height: 25px;
width: 35px;
}
.mobile-menu .lines {
border-bottom: 15px double #f8f8f8;
border-top: 5px solid #f8f8f8;
content:"";
padding-right:15px;
float: right;
}
/*Make dropdown links appear inline*/
.mobile-menu ul {
position: static;
display: none;
}
/*Create vertical spacing*/
.mobile-menu li {
margin-bottom: 1px;
}
/*Make all menu links full width*/
.mobile-menu ul li, .mobile-menu li a {
width: 100%;
}
/*Display 'show menu' link*/
.mobile-menu .show-menu {
display:block;
}
.footer {
/*padding: 10px 25px;
background: #0f76c0;
color: white;
transition: all 0.3s linear;
*/
width: 100%;
height: 3.778rem;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
}
#body {
font-family: Helvetica, Arial, sans-serif;
font-size:1.2em;
padding-bottom:60px;
}
#footer {
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: 1em;
background-color: #efefef;
text-align: center;
}
.fa {
padding: 6px;
font-size: 30px;
width: 24px;
text-align: center;
text-decoration: none;
}
.fa:hover {
opacity: 0.7;
}
/* Facebook */
.fa-facebook {
background: #3B5998;
color: white;
}
/* Twitter */
.fa-twitter {
background: #55ACEE;
color: white;
}