| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- /*COLORS*/
- /*
- TURQUOISE: #1EAEDB
- */
- @font-face {
- font-family: ralewayRegular;
- src: url('../fonts/Raleway-Regular.otf');
- }
- @font-face {
- font-family: ralewayBold;
- src: url('../fonts/Raleway-Bold.otf');
- }
- @font-face {
- font-family: ralewayMedium;
- src: url('../fonts/Raleway-Medium.otf');
- }
- body {
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- font-family: ralewayRegular;
- }
- .video {
- margin-top: 65px;
- background-image: url('../images/video-bg.jpg');
- background-size: 100%;
- background-repeat: no-repeat;
- }
- .container {
- width: 90%;
- max-width: none;
- }
- .video-txt {
- margin-top: 10%;
- }
- .section > .container {
- margin-top: 20px;
- text-align: justify;
- }
- .section > .container h4 {
- text-transform: uppercase;
- font-size: 30px;
- font-family: ralewayMedium;
- letter-spacing: 1px;
- margin-bottom: 40px;
- }
- .section > .container h4:before {
- content: '';
- width: 50px;
- border-bottom: 2px solid black;
- position: absolute;
- line-height: 30px;
- height: 45px;
- margin-left: 3px;
- }
- .cursos-list {
- list-style: none;
- }
- .cursos-list li {
- text-transform: uppercase;
- letter-spacing: 1px;
- font-family: ralewayMedium;
- margin-bottom: 5px;
- }
- ::selection {
- color: white;
- background-color: #262626;
- }
- .main {
- margin-top: 80px;
- }
- .navbar {
- position: fixed;
- top: 0;
- left: 0;
- display: block;
- width: 100%;
- height: 6.5rem;
- background: #fff;
- z-index: 99;
- border-bottom: 1px solid #000;
- }
- .navbar-container {
- width: 90%;
- }
- .navbar-list{
- list-style: none;
- margin-bottom: 0;
- text-align: right;
- }
- ul.navbar-list > li {
- display: inline-block;;
- white-space: nowrap;
- padding-left: 40px;
- text-align: left;
- }
- ul.navbar-list > li > a {
- display: inline-block ;
- text-transform: uppercase;
- font-size: 12px;
- letter-spacing: .2rem;
- text-decoration: none;
- line-height: 6.5rem;
- color: #222;
- transition: all 0.5s;
- }
- ul.navbar-list > li > a:hover {
- color: #898989;
- border-bottom: 1px solid #222;
- }
- ul.navbar-list > li > a > object {
- width: 3em;
- vertical-align: middle;
- }
|