Skip to content

Instantly share code, notes, and snippets.

@chickencoder
Created November 15, 2015 18:01
Show Gist options
  • Save chickencoder/d6ff13bf7d14aa7f5f4c to your computer and use it in GitHub Desktop.
Save chickencoder/d6ff13bf7d14aa7f5f4c to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Crossroad Church</title>
<!-- Styles -->
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="bootstrap/css/featurette.css" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
</head>
<body>
<div id="wrapper" class="container-fluid">
<div id="img-bar" class="container-fluid">
<header class="banner container text-center">
<div id="header-box">
<h1 id="title">CROSSROAD</h1>
<h3 id="sub-title">Family Church in Seaton, Devon</h3>
</div>
</header>
</div>
<!-- <div id="img-bar" class="container-fluid"></div> -->
<div class="fluid-container">
<div class="container">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">People, Passion & Purpose.</h2>
<p class="lead">
Crossroad is a family-based, vibrant church in Seaton, Devon that caters for
everyone from nought to ninety.
</p>
<p class="lead">
Our communion service starts at <strong>10.00 am</strong> and finishes at <strong>10.30 am</strong>, and our
family service starts at <strong>10.45am</strong> and finishes at <strong>12 noon</strong> with tea and coffee.
We have Sunday school for children up to year 7 and crèche facilities are
available too.
</p>
<p class="lead">
So why not come along and join us for some lively worship, and some great
bible teaching.
</p>
<br>
<h3>Get in touch</h3>
<p>Please feel free to contact us.</p>
<strong>t: (+44 1297) 20498<strong><br>
<strong>contact@crossroad.org.uk</strong>
<br>
<br>
<h2 class="text-muted"><em>Our new website will be coming soon!</em></h2>
</div>
<br>
<div class="col-md-5">
<h2>Autumn Conference 2015</h2>
<p>We were blessed to have Robert Maasbach meet with us and speak at our Autumn Conference this year. All 3 sessions can be found below in our recent podcasts.</p>
<iframe id="podcasts" src="http://crossroad.org.uk/podcasts/podcasts.php"></iframe>
<hr>
<br>
<h3>Find Us</h3>
<br>
<img id="map" src="http://maps.googleapis.com/maps/api/staticmap?center=Crossroad+Christian+Centre&zoom=16&scale=3&size=400x400&maptype=roadmap&format=png&visual_refresh=true&markers=size:mid%7Ccolor:0xff0000%7Clabel:1%7CCrossroad+Christian+Centre" alt="Google Map of Crossroad Christian Centre">
</div>
</div>
</div>
</div>
</div>
</body>
</html>
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,300);
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: 'Lato';
font-weight: normal;
}
#wrapper {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
header {
padding-top: 5rem;
padding-bottom: 5rem;
}
#header-box {
background: whitesmoke;
display: inline-block;
padding: 2em;
}
#logo {
width: 50px;
height: 50px;
}
#about {
min-height: 10em;
}
/* Title */
h1#title {
font-size: 4.5rem;
font-weight: bolder;
color: #333;
/*text-shadow: 1px 1px 2px rgb(56, 56, 56)*/
}
h3#sub-title {
font-size: 1.75rem;
color: #333;
/*text-shadow: 1px 1px 2px rgb(56, 56, 56)*/
}
.text-muted-light {
color: #d9d9d9;
}
#img-bar {
min-height: 10em;
background: grey;
background-image: url(https://static.pexels.com/photos/16015/pexels-photo.jpg);
background-size: cover;
background-position: center center;
}
@media (max-width: 768px) {
#img-bar {
min-height: 10em;
background: grey;
background-image: url(https://static.pexels.com/photos/16015/pexels-photo.jpg);
background-size: 200%;
background-position: center center;
}
}
@media (max-width: 495px) {
h1#title {
font-size: 2.2em;
}
h3#sub-title {
font-size: 1em;
}
}
.featurette {
margin-top: 2em;
}
#map {
width: 80%;
height: auto;
}
#podcasts {
width: 100%;
height: 15em;
border: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment