123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254 |
- body {
- padding-top: 85px;
- font-family: "Open Sans", sans-serif;
- }
- .margin-top-30 {
- margin-top: 30px;
- }
- h1, h2, h3, h4, h5, h6 {
- font-family: "Raleway", sans-serif;
- color: #406c96;
- }
- .highlight-primary {
- background: #406c96;
- color: #ffffff;
- padding: 5px 25px;
- display: inline;
- line-height: 60px;
- border-radius: 5px;
- }
- a {
- color: #406c96;
- }
- .navbar {
- background-color: #fff;
- min-height: 85px;
- text-transform: uppercase;
- font-family: "Raleway", sans-serif;
- border-bottom: 1px solid #ccc;
- padding-top: 15px;
- text-align: center;
- }
- .navbar-brand {
- padding: 0;
- }
- .navbar span {
- font-size: 10px;
- color: #cccccc;
- text-align: center;
- }
- .navbar-nav > li {
- padding-bottom: 5px;
- }
- .navbar-nav > li > a {
- padding-bottom: 0;
- color: #666666;
- }
- .nav > li > a:hover, .nav > li > a:focus {
- background: none;
- }
- .navbar li:hover {
- background: #f4f4f4;
- cursor: pointer;
- }
- .navbar li li:hover {
- border-left: 4px solid #406c96;
- }
- .navbar li.active {
- background: #406c96;
- color: #ffffff;
- }
- .navbar li.active a {
- color: #ffffff;
- }
- .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
- color: #fff;
- background-color: #406c96;
- }
- section {
- padding: 30px 0;
- overflow: hidden;
- }
- section h1 {
- margin: 30px 0;
- }
- .section-showcase img {
- width: 100%;
- position: relative;
- float: right;
- margin-right: -500px;
- }
- .section-default {
- background: #f7f8f7;
- }
- .section-primary {
- background: #406c96;
- color: #ffffff;
- }
- .list-feature {
- list-style: none;
- line-height: 2em;
- padding: 5px 0;
- font-size: 18px;
- }
- .fa {
- margin-right: 10px;
- color: #406c96;
- font-size: 1.5em;
- }
- .fa-white {
- color: #ffffff;
- }
- .fa-lg {
- font-size: 4em;
- }
- .content-icons {
- text-align: center;
- }
- .content-icons h4 {
- color: #ffffff;
- }
- .content-icons i {
- display: block;
- padding-bottom: 15px;
- }
- .content-devices {
- text-align: center;
- }
- .content-devices img {
- position: relative;
- }
- .content-devices img#laptop {
- z-index: 100;
- margin-left: -95px;
- width: 290px;
- }
- .content-devices img#desktop {
- width: 375px;
- }
- .content-devices img#mobile {
- z-index: 100;
- width: 190px;
- }
- #footer-main {
- background: #406c96;
- color: #ffffff;
- border-top: #333333 8px solid;
- padding: 40px 0;
- }
- #footer-main h4, #footer-main a {
- color: #ffffff;
- }
- #footer-main li {
- list-style: square;
- line-height: 2em;
- }
- .animate {
- transition: 1s ease-in-out;
- /* modo da animacao*/
- animation-fill-mode: forwards;
- /* duracao da animacao */
- animation-duration: 1s;
- }
- img#main.animate {
- transform: translate(-40em, 0)
- }
- img#laptop.animate {
- transform: translate(12em, 0)
- }
- img#mobile.animate {
- transform: translate(-8em, 0)
- }
- @media(min-width:601px) and (max-width:960px) {
- .content-devices img#laptop {
- width: 235px;
- }
- .content-devices img#desktop {
- width: 293px;
- }
- .content-devices img#mobile {
- width: 148px;
- }
- }
- @media(max-width:600px) {
- .content-devices img#laptop {
- display: none;
- }
- .content-devices img#desktop {
- width: 263px;
- }
- .content-devices img#mobile {
- display: none;
- }
- }
- @media(max-width:768px) {
- h1 {
- font-size: 35px;
- text-align: center;
- }
- h2 {
- font-size: 25px ;
- text-align: center;
- display: block !important;
- line-height: 1.5em !important;
- }
- .content-icons i {
- margin-top: 20px;
- }
- }
|