styles.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /*COLORS*/
  2. /*
  3. TURQUOISE: #1EAEDB
  4. */
  5. @font-face {
  6. font-family: ralewayRegular;
  7. src: url('../fonts/Raleway-Regular.otf');
  8. }
  9. @font-face {
  10. font-family: ralewayBold;
  11. src: url('../fonts/Raleway-Bold.otf');
  12. }
  13. @font-face {
  14. font-family: ralewayMedium;
  15. src: url('../fonts/Raleway-Medium.otf');
  16. }
  17. body {
  18. -webkit-font-smoothing: antialiased;
  19. -moz-osx-font-smoothing: grayscale;
  20. font-family: ralewayRegular;
  21. }
  22. .video {
  23. margin-top: 65px;
  24. background-image: url('../images/video-bg.jpg');
  25. background-size: 100%;
  26. background-repeat: no-repeat;
  27. }
  28. .container {
  29. width: 90%;
  30. max-width: none;
  31. }
  32. .video-txt {
  33. margin-top: 10%;
  34. }
  35. .section > .container {
  36. text-align: justify;
  37. }
  38. .section > .container h4 {
  39. margin-top: 30px;
  40. text-transform: uppercase;
  41. font-size: 30px;
  42. font-family: ralewayMedium;
  43. letter-spacing: 1px;
  44. margin-bottom: 40px;
  45. }
  46. .section > .container h4:before {
  47. content: '';
  48. width: 50px;
  49. border-bottom: 2px solid black;
  50. position: absolute;
  51. line-height: 30px;
  52. height: 45px;
  53. margin-left: 3px;
  54. }
  55. .section.inverted {
  56. color: #FFF;
  57. }
  58. .section.inverted > .container h4:before {
  59. content: '';
  60. width: 50px;
  61. border-bottom: 2px solid white;
  62. position: absolute;
  63. line-height: 30px;
  64. height: 45px;
  65. margin-left: 3px;
  66. }
  67. .courses {
  68. background-image: url('../images/formacion-bg.jpg');
  69. background-repeat: no-repeat;
  70. background-size: 100%;
  71. color: white;
  72. }
  73. .courses-list {
  74. list-style: none;
  75. }
  76. .courses-list li {
  77. text-transform: uppercase;
  78. letter-spacing: 1px;
  79. font-family: ralewayMedium;
  80. margin-bottom: 5px;
  81. }
  82. ::selection {
  83. color: white;
  84. background-color: #262626;
  85. }
  86. .main {
  87. margin-top: 80px;
  88. }
  89. .navbar {
  90. position: fixed;
  91. top: 0;
  92. left: 0;
  93. display: block;
  94. width: 100%;
  95. height: 6.5rem;
  96. background: #fff;
  97. z-index: 99;
  98. border-bottom: 1px solid #000;
  99. }
  100. .navbar-container {
  101. width: 90%;
  102. }
  103. .navbar-list{
  104. list-style: none;
  105. margin-bottom: 0;
  106. text-align: right;
  107. }
  108. ul.navbar-list > li {
  109. display: inline-block;;
  110. white-space: nowrap;
  111. padding-left: 40px;
  112. text-align: left;
  113. }
  114. ul.navbar-list > li > a {
  115. display: inline-block ;
  116. text-transform: uppercase;
  117. font-size: 12px;
  118. letter-spacing: .2rem;
  119. text-decoration: none;
  120. line-height: 6.5rem;
  121. color: #222;
  122. transition: all 0.5s;
  123. }
  124. ul.navbar-list > li > a:hover {
  125. color: #898989;
  126. border-bottom: 1px solid #222;
  127. }
  128. ul.navbar-list > li > a > object {
  129. width: 3em;
  130. vertical-align: middle;
  131. }