Skip to content

Instantly share code, notes, and snippets.

@tiagodealmeida
Last active September 30, 2016 19:30
Show Gist options
  • Save tiagodealmeida/1057199e09f427c7d40fdb6a4c62f50f to your computer and use it in GitHub Desktop.
Save tiagodealmeida/1057199e09f427c7d40fdb6a4c62f50f to your computer and use it in GitHub Desktop.
CSS for task 1.8
/*** Home Page ***/
#homeContent {
font-family: Fester, 'Economica', Futura, Helvetica, Arial, sans-serif;
letter-spacing: 1px;
color: #34495e;
}
.p {
color: #34495e;
}
a {
color: #34495e;
}
body {
background-color: WhiteSmoke;
}
#readmore {
color: #34495e;
background-color: WhiteSmoke;
}
/*** Home Page ***/ /*** Carousel ***/
.carousel-caption {
font-family: Fester, 'Economica', Futura, Helvetica, Arial, sans-serif;
letter-spacing: 1px;
color: WhiteSmoke;
margin-bottom: 50px;
}
.carousel-indicators li {
background-color: WhiteSmoke;
background-color: rgba(70,70,70,.25);
border:1px solid red;
margin-bottom: 50px;
}
.carousel-indicators .active {
background-color: #34495e;
margin-bottom: 50px;
}
.carousel {
margin-left: -15px;
margin-right: -15px;
}
/**** Contact Page ****/
.myname {
position: relative;
padding: auto;
}
h1 {
letter-spacing: 2px;
}
.email h3 {
letter-spacing: 2px;
}
span:hover {
color: #ff0000;
}
span {
transition: color 3s;
-webkit-transition: color 600ms;
}
.package {
font-family: Fester, 'Gentium Book Basic', Georgia, "Times New Roman", serif;
font-size: 1.2em;
font-weight: 100;
letter-spacing: 0.05em;
padding-top: 50px;
padding-left: 100px;
}
/*** Background Image ***/ /*** Contact Page ***/
#background {
position: fixed;
top: -1%;
left: -30%;
width: 200%;
height: 200%;
z-index: -1;
}
#background img {
position: relative;
bottom: 610px;
left: 400px;
margin: auto;
min-width: 63%;
min-height: 45%;
opacity: 0.8;
}
/*** Navigation Bar ***/
.nav ul li {
display: inline-block;
}
.nav {
background-color: black;
position: fixed;
width: 100%;
top: 0;
padding: 0 5px 0px 5px;
height: 40px;
z-index: 1;
}
.nav ul li a {
font-family: Fester, 'Gentium Book Basic', Georgia, "Times New Roman", serif;
font-size: 1.2em;
font-weight: 100;
color: WhiteSmoke;
text-transform: uppercase;
text-decoration: none;
letter-spacing: 0.05em;
margin-right: 50px;
}
ul {
float: right;
margin-top: 10px;
}
.nav a {
font-family: Fester, 'Gentium Book Basic', Georgia, "Times New Roman", serif;
font-size: 1.2em;
font-weight: 100;
color: WhiteSmoke;
text-transform: uppercase;
text-decoration: none;
letter-spacing: 0.05em;
margin-left: 30px;
}
.nav a:hover {
color: #ff0000;
text-decoration: underline;
}
li {
transition: color 3s;
-webkit-transition: color 600ms;
}
a {
transition: color 3s;
-webkit-transition: color 600ms;
}
a {
padding-bottom: 30px;
}
#carousel-example-generic {
padding-top: 40px;
}
/**** FAQ page ****/
.panel-body {
font-family: Fester, 'Gentium Book Basic', Georgia, "Times New Roman", serif;
font-size: 1.2em;
font-weight: 100;
color: #34495e
}
.panel-heading {
background-color: red;
}
.panel-title {
font-family: Fester, 'Gentium Book Basic', Georgia, "Times New Roman", serif;
font-size: 1.2em;
font-weight: 100;
color: #34495e;
background-color: WhiteSmoke;
}
.container {
padding-top: 60px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment