Files
ferglie/static/themes/siimple/assets/css/style.css
Fergal Moran 0c4e910b9e MVP Done
2017-05-09 23:31:55 +01:00

192 lines
3.4 KiB
CSS
Executable File

/* ==== Google font ==== */
@import url('http://fonts.googleapis.com/css?family=Lato:400,300,700,900');
body {
background-color: #f2f2f2;
font-family: 'Lato', sans-serif;
font-weight: 300;
font-size: 16px;
color: #555;
line-height: 1.6em;
-webkit-font-smoothing: antialiased;
-webkit-overflow-scrolling: touch;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Lato', sans-serif;
font-weight: 300;
color: #444;
}
h1 {
font-size: 40px;
}
h3 {
font-weight: 400;
}
h4 {
font-weight: 400;
font-size: 20px;
}
p {
margin-bottom: 20px;
font-size: 16px;
}
a {
color: #d6ee18;
word-wrap: break-word;
-webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
-moz-transition: color 0.1s ease-in, background 0.1s ease-in;
-ms-transition: color 0.1s ease-in, background 0.1s ease-in;
-o-transition: color 0.1s ease-in, background 0.1s ease-in;
transition: color 0.1s ease-in, background 0.1s ease-in;
}
a:hover,
a:focus {
color: #b7cb1b;
text-decoration: none;
outline: 0;
}
a:before,
a:after {
-webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
-moz-transition: color 0.1s ease-in, background 0.1s ease-in;
-ms-transition: color 0.1s ease-in, background 0.1s ease-in;
-o-transition: color 0.1s ease-in, background 0.1s ease-in;
transition: color 0.1s ease-in, background 0.1s ease-in;
}
.navbar-inverse .navbar-nav > li > a {
color: #c6d550;
}
.alignleft {
text-align: left;
}
.alignright {
text-align: right;
}
.aligncenter {
text-align: center;
}
.btn-theme {
color: #fff;
background-color: #fd680e;
border-color: #fd680e;
}
.btn-theme:hover {
color: #fff;
background-color: #444;
border-color: #444;
}
form.signup {
margin-top: 30px;
}
form.signup button.btn {
text-transform: uppercase;
font-weight: 700;
}
form.signup input.form-control:focus {
border-color: #fd680e;
}
/* Nav */
a.navbar-brand {
color: #fff !important;
font-weight: 900;
text-transform: uppercase;
}
a.navbar-brand:hover {
color: #ddd !important;
}
/* Header */
#header {
background-color: #444;
background: url(../img/main-bg.jpg) no-repeat center top;
margin-top: -20px;
padding-top: 150px;
background-attachment: relative;
background-position: center center;
min-height: 650px;
width: 100%;
-webkit-background-size: 100%;
-moz-background-size: 100%;
-o-background-size: 100%;
background-size: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#header h1 {
margin-top: 60px;
margin-bottom: 15px;
color: #fff;
font-size: 45px;
font-weight: 900;
letter-spacing: -1px;
}
h2.subtitle {
color: #fff;
font-size: 20px;
}
/* slide */
.carousel-indicators {
position: absolute;
bottom: -40px;
left: 50%;
z-index: 15;
width: 60%;
padding-left: 0;
margin-left: -50%;
text-align: center;
list-style: none;
}
.carousel-indicators li {
display: inline-block;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
cursor: pointer;
background-color: #000 \9;
background-color: #fff;
border: 1px solid #fff;
border-radius: 10px;
}
.carousel-indicators .active {
width: 12px;
height: 12px;
margin: 0;
background-color: #b7cb1b;
}
/* footer */
#footer {
background: #fd680e;
padding: 20px 0 5px;
}
p.copyright {
color: #fff;
text-align: center;
}