123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557 |
- html,body {
- margin: 0px;
- padding: 0px;
- font-family: Roboto, sans-serif;
- }
- h1, h2, h3 {
- margin: 0px;
- padding: 0px;
- font-weight: normal;
- }
- header {
- padding-top: 10px;
- }
- #logo {
- width: 200px;
- margin-left: auto;
- margin-right: auto;
- height: 160px;
- margin-top: -80px;
- margin-bottom: -40px;
- background-color: white;
- }
- #logo img {
- width:200px;
- }
- header nav {
- text-align: center;
- margin-bottom: 10px;
- }
- header nav ul {
- list-style-type: none;
- margin: 0px;
- padding: 0px;
- }
- header nav ul li {
- display: inline;
- padding: 5px 20px 5px 20px;
- }
- header nav ul li a{
- font-family: Oswald, Dosis, Roboto, sans-serif;
- font-size: 16px;
- text-transform: uppercase;
- color: #6D6E71;
- text-decoration: none;
- transition: color 0.6s;
- }
- header nav ul li a:hover{
- color: #B14B10;
- }
- .header-divider {
- width: 90%;
- background-color: #B14B10;
- height: 3px;
- margin-top: 40px;
- margin-left: auto;
- margin-right: auto;
- }
- footer {
- background-color: #47547E;
- height: 100px;
- font-family: Roboto, sans-serif;
- color: white;
- border-top: 3px solid #B14B10;
- position: relative;
- text-align: center;
- }
- .social-media-links {
- width: 60%;
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- }
- .social-media-links ul {
- list-style-type: none;
- text-indent: none;
- padding: 0px;
- }
- .social-media-links ul li{
- display: inline;
- }
- #footer-tagline {
- font-size: 10px;
- text-align: center;
- position: absolute;
- width: 100%;
- bottom: 0px;
- }
- #hero-banner {
- width: 100%;
- display: flex;
- flex-wrap: nowrap;
- position: relative;
- background-image: url('../images/hero_banner.png');
- background-size: cover;
- margin-bottom: 20px;
- }
- #banner-float-image {
- position: relative;
- width: 40%;
- height: 100%;
- margin-left: 5%;
- padding-top: 5%;
- }
- #banner-float-image img{
- width: 100%;
- }
- #banner-text-container {
- padding-top: 5%;
- width: 40%;
- white-space: nowrap;
- font-size: 72px;
- color: white;
- font-family: Oswald, Dosis, Roboto, sans-serif;
- text-shadow: 1px 1px 5px #000000;
- }
- #banner-text-container p {
- margin: 0px;
- padding: 0px;
- }
- .text-emphasis {
- color: #B14B10;
- }
- h1 {
- font-family: Oswald, Dosis, Roboto, sans-serif;
- font-size: 28px;
- text-transform: uppercase;
- color: #B14B10;
- width: 150px;
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- background-color: white;
- margin-top: -30px;
- margin-bottom: 30px;
- }
- hr.section-divider {
- width: 60%;
- height: 2px;
- border: none;
- background-color: #8F8F93;
- }
- #packages {
- margin-left: auto;
- margin-right: auto;
- display: flex;
- flex-wrap: wrap;
- max-width: 768px;
- text-align: center;
- margin-bottom: 50px;
- }
- .package-block {
- border: 1px solid #6D6E71;
- border-bottom-left-radius: 5px;
- border-bottom-right-radius: 5px;
- width: 30%;
- margin: 5px;
- text-align: center;
- flex-grow: 1;
- padding-bottom: 15px;
-
- }
- .package-block h2 {
- font-family: Dosis, Roboto, sans-serif;
- text-transform: uppercase;
- color: #B14B10;
- padding: 10px;
- }
- .package-contents {
- height: 100%;
- margin-bottom: -40px;
- }
- .package-purchase-block {
- height: 40px;
- }
- .package-block button {
- border: 1px solid #B14B10;
- font-family: Roboto, sans-serif;
- border-radius: 4px;
- background-color: inherit;
- color: #B14B10;
- width: 70%;
- text-transform: uppercase;
- padding: 8px;
- -webkit-transition: background-color 0.5s;
- transition: background-color 0.5s;
- }
- .package-block button:hover {
- border: 1px solid #B14B10;
- background-color: #B14B10;
- color: white;
- cursor: pointer;
- }
- .call-to-action {
- border: 1px solid #B14B10;
- font-family: Roboto, sans-serif;
- border-radius: 4px;
- background-color: inherit;
- color: #B14B10;
- width: 70%;
- text-transform: uppercase;
- padding: 8px;
- -webkit-transition: background-color 0.5s;
- transition: background-color 0.5s;
- }
- .call-to-action:hover {
- border: 1px solid #B14B10;
- background-color: #B14B10;
- color: white;
- cursor: pointer;
- }
- .package-block-title {
- background-color: #292929;
- }
- .package-block-price {
- background-color: #45567A;
- padding: 5px;
- }
- .price-arrow-down {
- width: 0;
- height: 0;
- border-left: 123px solid transparent;
- border-right: 123px solid transparent;
- border-top: 20px solid #45567A;
- }
- .pricing {
- font-family: Oswald, Roboto, sans-serif;
- color: white;
- font-size: 2em;
- }
- .features {
- font-family: Dosis, Roboto Thin, Roboto, sans-serif;
- padding: 0 15px 15px 15px;
- margin-top: -15px;
- margin-bottom: 20px;
- font-size: 20px;
- }
- .features ul {
- text-indent: 0;
- padding: 0px;
- }
- .features ul li {
- list-style: none;
- border-bottom: 1px solid #6D6E71;
- padding: 10px;
- }
- #services {
- max-width: 768px;
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- margin-bottom: 50px;
- display: flex;
- flex-flow: column wrap;
- height: 248px;
- }
- .service-block {
- width: 250px;
- font-family: Dosis, Roboto, sans-serif;
- flex-grow: 1;
- background-repeat: no-repeat;
- height: 120px;
- }
- .service-block h2 {
- font-family: Oswald, Dosis, Roboto, sans-serif;
- line-height: 20px;
- }
- .hosting-block {
- text-align: right;
- background-image: url('../images/hosting_icon.png');
- background-position: 100% 50%;
- padding-right: 80px;
- margin-right: 50px;
- }
- .customer-block {
- text-align: right;
- background-image: url('../images/cs_icon.png');
- background-position: 100% 50%;
- padding-right: 80px;
- margin-right: 50px;
- }
- .custom-block {
- text-align: left;
- background-image: url('../images/sites_icon.png');
- background-position: 0 50%;
- padding-left: 80px;
- margin-left: 50px;
- }
- .analytics-block {
- text-align: left;
- background-image: url('../images/seo_icon.png');
- background-position: 0 50%;
- padding-left: 80px;
- margin-left: 50px;
- }
- .clear {
- clear: both;
- }
- #portfolio {
- max-width: 768px;
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- margin-bottom: 50px;
- font-family: Oswald, Roboto, sans-serif;
- font-size: 12px;
- }
- .portfolio-item {
- display: inline-block;
- width: 180px;
- height: 180px;
- padding: 5px;
- border: 1px solid #6D6E71;
- margin-top: 5px;
- margin-left: 5px;
- margin-bottom: 5px;
- margin-right: 5px;
- transition: all 250ms ease-out;
- }
- .portfolio-item:hover {
- box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
- margin-left: 0px;
- margin-right: 10px;
- }
- .portfolio-item img {
- width: 100%;
- border: none;
- }
- #about {
- width: 60%;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 50px;
- text-align: center;
- }
- .employee-head-bubble {
- display: inline-block;
- padding: 20px;
- }
- .employee-head-bubble img {
- width: 125px;
- height: 125px;
- }
- .employee-head-bubble p {
- margin: 0px;
- padding: 0px;
- color: gray;
- font-size: 10px;
- }
- #contact {
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 50px;
- display: flex;
- flex-flow: row;
- max-width: 768px;
- }
- #contact-text {
- padding-left: 20px;
- padding-right: 20px;
- flex-grow: 1;
- }
- #contact-form {
- padding: 20px;
- text-align: right;
- }
- #embedded-map {
- flex-grow: 1;
- }
- .contact-line {
- font-family: Dosis, Roboto, sans-serif;
- font-size: 1.2em;
- }
- .contact-line a {
- color: #6D6E71;
- text-decoration: none;
- }
- .contact-line a:hover {
- color: #B14B10;
- text-decoration: underline;
- cursor: pointer;
- }
- #contact-form input[type=email] {
- border: 1px solid #6D6E71;
- border-radius: 8px;
- margin: 5px;
- padding: 15px;
- width: 80%;
- }
- #contact-form textarea {
- height: 120px;
- border: 0px;
- margin: 5px;
- padding: 15px;
- border: 1px solid #6D6E71;
- border-radius: 8px;
- width: 80%;
- }
- #form-submit {
- border: 1px solid #B14B10;
- font-family: Roboto, sans-serif;
- border-radius: 4px;
- background-color: inherit;
- color: #B14B10;
- text-transform: uppercase;
- padding: 8px;
- -webkit-transition: background-color 0.5s;
- transition: background-color 0.5s;
- width: 120px;
- }
- #form-submit:hover {
- border: 1px solid #B14B10;
- background-color: #B14B10;
- color: white;
- cursor: pointer;
- }
- @media only screen and (max-width: 1024px) {
- #banner-text-container {
- font-size: 3em;
- }
- }
- @media only screen and (max-width: 768px) {
- #banner-text-container {
- font-size: 2em;
- }
- #packages {
- width: 100%;
- flex-flow: column;
- }
- .package-block {
- width: 100%;
- }
- .price-arrow-down {
- display: none;
- }
- #services {
- width: 100%;
- height: auto;
- }
- .service-block {
- background-position: 0 50%;
- text-align: left;
- padding: 0px;
- margin: 0px;
- margin-left: auto;
- margin-right: auto;
- }
- .service-block h2 {
- margin-left: 80px;
- }
- .service-block p {
- margin-left: 80px;
- }
- #contact {
- flex-flow: column;
- }
- #embedded-map {
- width: 80%;
- margin: 0px;
- padding: 0px;
- }
- #contact-text {
- width: 80%;
- margin: 0px;
- padding: 0px;
- }
- }
- @media only screen and (max-width: 400px) {
- #banner-float-image {
- display: none;
- }
- #banner-text-container {
- font-size: 2em;
- width: 100%;
- text-align: center;
- }
- }
|