styles.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. .video-txt {
  29. padding-bottom: 20%;
  30. padding-top: 5%;
  31. }
  32. .container {
  33. width: 90%;
  34. max-width: none;
  35. }
  36. .section {
  37. /*margin-bottom: 30px;*/
  38. }
  39. .section > .container {
  40. padding: 30px 0px;
  41. text-align: justify;
  42. }
  43. .section > .container h4 {
  44. text-transform: uppercase;
  45. font-size: 30px;
  46. font-family: ralewayMedium;
  47. letter-spacing: 1px;
  48. margin-bottom: 40px;
  49. }
  50. .section > .container h4:before {
  51. content: '';
  52. width: 50px;
  53. border-bottom: 2px solid black;
  54. position: absolute;
  55. line-height: 30px;
  56. height: 45px;
  57. margin-left: 3px;
  58. }
  59. .section.inverted {
  60. color: #FFF;
  61. }
  62. .section.inverted > .container h4:before {
  63. content: '';
  64. width: 50px;
  65. border-bottom: 2px solid white;
  66. position: absolute;
  67. line-height: 30px;
  68. height: 45px;
  69. margin-left: 3px;
  70. }
  71. .footer {
  72. padding-top: 30px;
  73. background-color: #333;
  74. }
  75. #map {
  76. width: 100%;
  77. height: 400px;
  78. }
  79. .courses {
  80. background-image: url('../images/formacion-bg.jpg');
  81. background-repeat: no-repeat;
  82. background-size: 100%;
  83. color: white;
  84. }
  85. .courses-list {
  86. list-style: none;
  87. }
  88. .courses-list li {
  89. text-transform: uppercase;
  90. letter-spacing: 1px;
  91. font-family: ralewayMedium;
  92. margin-bottom: 5px;
  93. }
  94. ::selection {
  95. color: white;
  96. background-color: #262626;
  97. }
  98. .main {
  99. margin-top: 80px;
  100. }
  101. .navbar {
  102. position: fixed;
  103. top: 0;
  104. left: 0;
  105. display: block;
  106. width: 100%;
  107. height: 6.5rem;
  108. background: #fff;
  109. z-index: 99;
  110. border-bottom: 1px solid #000;
  111. }
  112. .navbar-container {
  113. width: 90%;
  114. }
  115. .navbar-list{
  116. list-style: none;
  117. margin-bottom: 0;
  118. text-align: right;
  119. }
  120. ul.navbar-list > li {
  121. display: inline-block;;
  122. white-space: nowrap;
  123. padding-left: 40px;
  124. text-align: left;
  125. }
  126. ul.navbar-list > li > a {
  127. display: inline-block ;
  128. text-transform: uppercase;
  129. font-size: 12px;
  130. letter-spacing: .2rem;
  131. text-decoration: none;
  132. line-height: 6.5rem;
  133. color: #222;
  134. transition: all 0.5s;
  135. }
  136. ul.navbar-list > li > a:hover {
  137. color: #898989;
  138. border-bottom: 1px solid #222;
  139. }
  140. ul.navbar-list > li > a > object {
  141. width: 3em;
  142. vertical-align: middle;
  143. }