Add associate pastor

Transactions
Dan 2018-10-25 22:40:40 -06:00
parent f35904d39a
commit 05d033c96d
3 changed files with 14 additions and 6 deletions

View File

@ -47,8 +47,8 @@ header{
.content{ .content{
margin-top: 50px; margin-top: 50px;
min-height: 100%; min-height: 100%;
margin-bottom: -130px; margin-bottom: -140px;
padding-bottom: 130px; padding-bottom: 140px;
} }
footer{ footer{
@ -73,6 +73,7 @@ footer{
min-height: 100px; min-height: 100px;
} }
@media(max-width: 900px){ @media(max-width: 900px){
.header-button, .hideOnMobile{ .header-button, .hideOnMobile{
display: none; display: none;
@ -81,15 +82,15 @@ footer{
@media(max-width: 800px){ @media(max-width: 800px){
footer{ footer{
height: 360px; height: 380px;
} }
.footer-panel{ .footer-panel{
display: block; display: block;
width: calc(100% - 20px); width: calc(100% - 20px);
} }
.content{ .content{
margin-bottom: -350px; margin-bottom: -380px;
padding-bottom: 350px; padding-bottom: 380px;
} }
} }

View File

@ -26,19 +26,22 @@
<p>Butte, MT 59701</p> <p>Butte, MT 59701</p>
</a> </a>
<p><a href="tel:+1-406-494-5028" class="phone">(406) 494 - 5028</a></p> <p><a href="tel:+1-406-494-5028" class="phone">(406) 494 - 5028</a></p>
<p>Pastor Ron Derksen</p> <p>Pastor Ron Derksen</p>
<p>Associate Pastor Derek Loewen</p>
</div> </div>
<div id="footer-services-content" class="footer-panel"> <div id="footer-services-content" class="footer-panel">
<p>Sunday School: 10AM</p> <p>Sunday School: 10AM</p>
<p>Sunday Worship: 11AM</p> <p>Sunday Worship: 11AM</p>
<p>Sunday Evening: 7PM</p> <p>Sunday Evening: 7PM</p>
<p>Wednesday Evening: 7PM</p> <p>Wednesday Evening: 7PM</p>
<br>
</div> </div>
<div id="footer-website-content" class="footer-panel"> <div id="footer-website-content" class="footer-panel">
<p><i ofbicon class="copyright">copyright</i> Copyright {{copyrightYear}}</p> <p><i ofbicon class="copyright">copyright</i> Copyright {{copyrightYear}}</p>
<p>Old Fashion Baptist</p> <p>Old Fashion Baptist</p>
<p><a routerLink="/home">ofbbutte.com</a></p> <p><a routerLink="/home">ofbbutte.com</a></p>
<p>Powered by God</p> <p>Powered by God</p>
<br>
</div> </div>
</div> </div>
<div class="audio-player-filler" [hidden]="!showAudioPlayer" ></div> <div class="audio-player-filler" [hidden]="!showAudioPlayer" ></div>

View File

@ -12,6 +12,10 @@ html, body{
height: 100%; height: 100%;
} }
body {
height: calc(100% - 50px); /*Less 50 px for height of static header*/
}
.red{ .red{
color: red; color: red;
} }