Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
vrobles/default.css
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
708 lines (603 sloc)
9.67 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html, body | |
{ | |
height: 100%; | |
} | |
body | |
{ | |
margin: 0px; | |
padding: 0px; | |
font-family: 'Open Sans', sans-serif; | |
font-size: 10pt; | |
color: #000000; | |
} | |
h1, h2, h3 | |
{ | |
margin: 0; | |
padding: 0; | |
} | |
p, ol, ul | |
{ | |
margin-top: 0px; | |
} | |
p | |
{ | |
line-height: 200%; | |
} | |
strong | |
{ | |
} | |
a | |
{ | |
color: #0000FF; | |
} | |
a:hover | |
{ | |
text-decoration: none; | |
} | |
a img | |
{ | |
border: none; | |
} | |
.image | |
{ | |
display: inline-block; | |
} | |
.image-hover | |
{ | |
opacity: 1; | |
display: inline-block; | |
transition: .5s ease; | |
backface-visibility: hidden; | |
} | |
.content:hover .image-hover | |
{ | |
opacity: .5; | |
} | |
.image-middle | |
{ | |
float: left; | |
width: 384px; | |
margin-right: 24px; | |
transition: 0.5s ease; | |
position: relative; | |
opacity: 0; | |
top: 50%; | |
left: 50%; | |
transform: translate(-50%, -406%); | |
-ms-transform: translate(-50%, -50%) | |
} | |
.image-text { | |
background-color:#00008B; | |
color: white; | |
font-size: 40px; | |
padding: 0px 16px; | |
} | |
.content:hover .image-middle | |
{ | |
opacity: 1; | |
} | |
.image img | |
{ | |
display: block; | |
width: 100%; | |
} | |
.image-full | |
{ | |
display: block; | |
width: 100%; | |
margin: 0 0 2em 0; | |
} | |
.image-left | |
{ | |
float: left; | |
margin: 0 2em 2em 0; | |
} | |
.image-centered | |
{ | |
display: block; | |
margin: 0 0 2em 0; | |
} | |
.image-centered img | |
{ | |
margin: 0 auto; | |
width: auto; | |
} | |
img.border | |
{ | |
} | |
img.alignleft | |
{ | |
float: left; | |
} | |
img.alignright | |
{ | |
float: right; | |
} | |
img.aligncenter | |
{ | |
margin: 0px auto; | |
} | |
hr | |
{ | |
display: none; | |
} | |
.button-style | |
{ | |
display: inline-block; | |
margin-top: 20px; | |
padding: 10px 20px; | |
background: #6495ED; | |
border-radius: 5px; | |
box-shadow: 0px 0px 0px 2px rgba(255,255,255,0.1); | |
border: 1px solid #B0C4DE; | |
line-height: normal; | |
text-align: center; | |
text-decoration: none; | |
text-transform: uppercase; | |
text-shadow: 0px 1px 0px rgba(0,0,0,.2); | |
font-size: 1em; | |
font-weight: 400; | |
color: #FFF !important; | |
} | |
.button-style a | |
{ | |
text-decoration: none; | |
color: #FFF !important; | |
} | |
ul.style3 | |
{ | |
margin: 0; | |
padding: 0; | |
overflow: hidden; | |
list-style: none; | |
color: #6c6c6c | |
} | |
ul.style3 li | |
{ | |
padding: 0px 0px 5px 0px; | |
margin: 0 0 1em 0; | |
} | |
ul.style3 p | |
{ | |
margin: 0; | |
} | |
ul.style3 a | |
{ | |
display: block; | |
text-decoration: none; | |
color: #6c6c6c; | |
} | |
ul.style3 a:hover | |
{ | |
text-decoration: underline; | |
} | |
ul.style3 h3 | |
{ | |
padding: 8px 0em 5px 0em; | |
text-transform: uppercase; | |
font-size: 1.1em; | |
font-weight: 700; | |
color: #FFFFFF; | |
} | |
ul.style3-alt h3 | |
{ | |
color: #FFFFFF; | |
} | |
ul.style3 .first | |
{ | |
padding-top: 0px; | |
background: none; | |
} | |
ul.style3 .date | |
{ | |
float: left; | |
position: relative; | |
width: 60px; | |
height: 54px; | |
margin: 0em 1.5em 0em 0em; | |
padding: 8px 0em 0em 0em; | |
background:#B0C4DE; | |
border-radius: 5px; | |
box-shadow: 0px 0px 0px 5px rgba(255,255,255,0.1); | |
border: 1px solid #6495ED; | |
line-height: normal; | |
text-align: center; | |
text-transform: uppercase; | |
text-shadow: 0px 1px 0px rgba(0,0,0,.2); | |
font-size: 1em; | |
font-weight: 400; | |
color: #FFF; | |
} | |
ul.style3 .date:after | |
{ | |
content: ''; | |
display: block; | |
position: absolute; | |
left: 0; | |
top: 0; | |
width: 100%; | |
height: 100%; | |
border-radius: 6px; | |
} | |
ul.style3 .date b | |
{ | |
margin: 0; | |
padding: 0; | |
display: block; | |
margin-top: -5px; | |
font-size: 1.8em; | |
font-weight: 700; | |
color: #FFFFFF; | |
} | |
ul.style3 .date a | |
{ | |
color: #FFFFFF !important; | |
} | |
ul.style3 .date a:hover | |
{ | |
text-decoration: none; | |
} | |
ul.style5 | |
{ | |
margin: 0; | |
padding: 0; | |
list-style: none; | |
} | |
ul.style5 li | |
{ | |
clear: both; | |
border-top: 1px solid #00008B; | |
} | |
ul.style5 span | |
{ | |
padding: 1em 0em; | |
line-height: 1.75em; | |
} | |
ul.style5 .address | |
{ | |
float: left; | |
width: 80px; | |
display: inline-block; | |
font-weight: 600; | |
} | |
ul.style5 .address-01 | |
{ | |
float: left; | |
display: inline-block; | |
} | |
ul.style5 .mail | |
{ | |
float: left; | |
width: 80px; | |
display: inline-block; | |
font-weight: 600; | |
} | |
ul.style5 .mail-01 | |
{ | |
display: inline-block; | |
} | |
ul.style5 .phone | |
{ | |
float: left; | |
width: 80px; | |
display: inline-block; | |
font-weight: 600; | |
} | |
ul.style5 .phone-01 | |
{ | |
float: left; | |
display: inline-block; | |
} | |
ul.style5 .first | |
{ | |
padding-top: 0em !important!; | |
border-top: none; | |
} | |
/** WRAPPER */ | |
#wrapper-bg | |
{ | |
overflow: hidden; | |
background: url(images/bg03.png) repeat; | |
} | |
#wrapper | |
{ | |
margin-top: 15px; | |
padding-bottom: 50px; | |
background: #FFF; | |
box-shadow: 0px 10px 0px rgba(0,0,0,0.03), 0px -10px 0px rgba(0,0,0,0.03); | |
} | |
.container | |
{ | |
width: 1200px; | |
margin: 30px auto; | |
} | |
.clearfix | |
{ | |
clear: both; | |
} | |
/** HEADER */ | |
#header | |
{ | |
overflow: hidden; | |
border-bottom: 1px solid #E7E7E7; | |
} | |
/** LOGO */ | |
#logo | |
{ | |
float: left; | |
width: 300; | |
} | |
#logo h1 a | |
{ | |
display: block; | |
line-height: 100px; | |
text-transform: uppercase; | |
text-decoration: none; | |
font-family: 'Archivo Narrow', sans-serif; | |
font-size: 1.5em; | |
color: #3E3E3E; | |
} | |
#logo span | |
{ | |
color: #00008B; | |
} | |
/** MENU */ | |
#menu | |
{ | |
float: right; | |
width: 900px; | |
} | |
#menu ul | |
{ | |
float: right; | |
margin: 0px; | |
padding: 0px 0px 0px 0px; | |
list-style: none; | |
line-height: normal; | |
} | |
#menu li | |
{ | |
float: left; | |
border-left: 0px solid #E7E7E7; | |
} | |
#menu a | |
{ | |
display: block; | |
padding: 10px 20px; | |
margin: 0em 0em; | |
letter-spacing: 2px; | |
text-decoration: none; | |
text-transform: uppercase; | |
font-family: 'Archivo Narrow', sans-serif; | |
font-size: 1.40em; | |
font-weight: 600; | |
color: #00008B; | |
} | |
#menu .active a | |
{ | |
background: #00008B; | |
border-radius: 3px; | |
box-shadow: 0px 0px 0px 1px rgba(255,255,255,0.1); | |
border: 0px solid #00008B; | |
color: #FFFFFF; | |
} | |
#menu .active a:hover | |
{ | |
background-color: #1E90FF; | |
} | |
#menu .active a:active | |
{ | |
background-color: #00008B; | |
} | |
#menu a:hover | |
{ | |
text-decoration: none; | |
} | |
/** slideshow **/ | |
* {box-sizing:border-box} | |
body {margin: 0px 0px; | |
padding: 0px;font-family: 'Open Sans', sans-serif; | |
font-size: 10pt; | |
color: #000000;} | |
.mySlides {display:none} | |
/* Slideshow container */ | |
.slideshow-container { | |
width: 1100px; | |
height: 400px; | |
position: relative; | |
margin: auto; | |
padding: 0px 0px; | |
} | |
/* Next & previous buttons */ | |
.prev, .next { | |
cursor: pointer; | |
position: absolute; | |
top: 50%; | |
width: auto; | |
padding: 16px; | |
margin-top: -22px; | |
color: white; | |
font-weight: bold; | |
font-size: 18px; | |
transition: 0.6s ease; | |
border-radius: 0 3px 3px 0; | |
} | |
/* Position the "next button" to the right */ | |
.next { | |
right: 0; | |
border-radius: 3px 0 0 3px; | |
} | |
/* On hover, add a black background color with a little bit see-through */ | |
.prev:hover, .next:hover { | |
background-color: rgba(0,0,0,0.8); | |
} | |
/* Caption text */ | |
.textheader{ | |
color: #f2f2f2; | |
font-size: 2.40em; | |
font-family: 'Arial', sans-serif; | |
padding: 8px 12px; | |
position: absolute; | |
margin-top: -25%; | |
width: 100%; | |
text-align: right; | |
} | |
.text { | |
color: #f2f2f2; | |
font-size: 20px; | |
font-family: 'Arial', sans-serif; | |
padding: 0px 12px; | |
position: absolute; | |
margin-top: -20%; | |
margin-left: 65%; | |
width: 35%; | |
line-height: normal; | |
letter-spacing: 0px; | |
text-align: right; | |
} | |
/* Number text (1/3 etc) */ | |
.numbertext { | |
font-family: 'Arial', sans-serif; | |
text-shadow: 0px 0px 9px rgba(0,0,0,1); | |
font-size: 1em; | |
color: #f2f2f2; | |
font-size: 32px; | |
padding: 8px 12px; | |
position: absolute; | |
font-weight: bold; | |
top: 0; | |
} | |
/* The dots/bullets/indicators */ | |
.dot { | |
height: 15px; | |
width: 15px; | |
margin: 0px 4px; | |
background-color: #bbb; | |
border-radius: 50%; | |
display: inline-block; | |
transition: background-color 0.6s ease; | |
} | |
.active, .dot:hover { | |
background-color: #00008B; | |
} | |
/* Fading animation */ | |
.fade { | |
-webkit-animation-name: fade; | |
-webkit-animation-duration: 1.5s; | |
animation-name: fade; | |
animation-duration: 1.5s; | |
} | |
@-webkit-keyframes fade { | |
from {opacity: .6} | |
to {opacity: 1} | |
} | |
@keyframes fade { | |
from {opacity: .6} | |
to {opacity: 1} | |
} | |
/* On smaller screens, decrease text size */ | |
@media only screen and (max-width: 300px) { | |
.prev, .next,.text {font-size: 11px} | |
} | |
/** PAGE */ | |
#page | |
{ | |
} | |
/** CONTENT */ | |
#content | |
{ | |
margin-top:30px | |
} | |
/** SIDEBAR */ | |
#sidebar | |
{ | |
} | |
/* Footer */ | |
#footer-content | |
{ | |
overflow: hidden; | |
padding: 70px 0px 50px 0px; | |
color: #F0F8FF; | |
} | |
#footer-content a | |
{ | |
color: #F0F8FF; | |
} | |
#footer-content h2 | |
{ | |
margin-bottom: 30px; | |
text-transform: uppercase; | |
color: #F0F8FF; | |
} | |
#footer-content #fbox1 | |
{ | |
float: left; | |
width: 384px; | |
margin-right: 24px; | |
} | |
#footer-content #fbox2 | |
{ | |
float: left; | |
width: 446px; | |
padding: 0px 20px; | |
} | |
#footer-content #fbox3 | |
{ | |
float: right; | |
width: 282px; | |
} | |
#footer | |
{ | |
overflow: hidden; | |
padding: 30px 0px; | |
box-shadow: 0px -10px 0px rgba(0,0,0,0.03); | |
} | |
#footer p | |
{ | |
text-align: center; | |
color: #767676; | |
} | |
#footer a | |
{ | |
color: #5f5f5f; | |
} | |
#banner | |
{ | |
padding: 30px 0px; | |
} | |
/* Three Column Content */ | |
#three-column | |
{ | |
overflow: hidden; | |
padding-top: 50px; | |
padding-bottom: 10px; | |
} | |
#three-column header | |
{ | |
letter-spacing: -1px; | |
text-transform: uppercase; | |
margin-bottom: 2em; | |
font-size: 1.5em; | |
} | |
#three-column .tbox1 h2, #three-column .tbox2 h2, #three-column .tbox3 h2 | |
{ | |
margin-bottom: 2em; | |
text-transform: uppercase; | |
color: #515151; | |
} | |
#three-column .tbox1 | |
{ | |
float: left; | |
width: 384px; | |
margin-right: 24px; | |
} | |
#three-column .tbox2 | |
{ | |
float: left; | |
width: 384px; | |
} | |
#three-column .tbox3 | |
{ | |
float: right; | |
width: 384px; | |
} |