styles.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. /*COLORS*/
  2. /*
  3. TURQUOISE: #1EAEDB
  4. */
  5. @font-face {
  6. font-family: calibreRegular;
  7. src: url('../fonts/CalibreWeb-Regular.woff2') format("woff2");
  8. font-style: normal;
  9. font-weight: 300;
  10. }
  11. @font-face {
  12. font-family: ralewayRegular;
  13. src: url('../fonts/Raleway-Regular.otf');
  14. }
  15. @font-face {
  16. font-family: ralewayBold;
  17. src: url('../fonts/Raleway-Bold.otf');
  18. }
  19. @font-face {
  20. font-family: ralewayMedium;
  21. src: url('../fonts/Raleway-Medium.otf');
  22. }
  23. @font-face {
  24. font-family: angelface;
  25. src: url('../fonts/Angelface.otf');
  26. }
  27. [rv-cloak] {
  28. opacity: 0;
  29. transition: opacity 200ms ease;
  30. }
  31. section[rv-transition] {
  32. opacity: 0;
  33. transition: opacity 400ms ease;
  34. }
  35. .hide {
  36. display: none;
  37. }
  38. .show {
  39. opacity: 1!important;
  40. }
  41. body {
  42. -webkit-font-smoothing: antialiased;
  43. -moz-osx-font-smoothing: grayscale;
  44. font-family: ralewayRegular;
  45. }
  46. p {
  47. font-family: "Calibre", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  48. font-weight: 300;
  49. font-size: 1.5rem;
  50. }
  51. section {
  52. transition: ease 1s display;
  53. }
  54. .video {
  55. margin-top: 65px;
  56. background-image: url('../images/video-bg.jpg');
  57. background-size: 100%;
  58. background-repeat: no-repeat;
  59. }
  60. .video-txt {
  61. padding-bottom: 20%;
  62. padding-top: 5%;
  63. }
  64. .container {
  65. width: 80%;
  66. max-width: none;
  67. }
  68. .section>.container {
  69. padding: 30px 0px;
  70. text-align: justify;
  71. }
  72. .section>.container h4 {
  73. text-transform: uppercase;
  74. font-size: 30px;
  75. font-family: ralewayMedium;
  76. letter-spacing: 1px;
  77. margin-bottom: 40px;
  78. }
  79. .section>.container h4:before {
  80. content: '';
  81. width: 50px;
  82. border-bottom: 2px solid black;
  83. position: absolute;
  84. line-height: 30px;
  85. height: 45px;
  86. margin-left: 3px;
  87. }
  88. .section.inverted {
  89. color: #FFF;
  90. }
  91. .section.inverted>.container h4:before {
  92. content: '';
  93. width: 50px;
  94. border-bottom: 2px solid white;
  95. position: absolute;
  96. line-height: 30px;
  97. height: 45px;
  98. margin-left: 3px;
  99. }
  100. .footer {
  101. padding-top: 30px;
  102. background-color: #333;
  103. }
  104. #map {
  105. width: 100%;
  106. height: 400px;
  107. }
  108. .courses {
  109. background-image: url('../images/formacion-bg.jpg');
  110. background-repeat: no-repeat;
  111. background-size: 100%;
  112. color: white;
  113. }
  114. .courses-list {
  115. list-style: none;
  116. }
  117. .courses-list li {
  118. text-transform: uppercase;
  119. letter-spacing: 1px;
  120. font-family: ralewayMedium;
  121. margin-bottom: 5px;
  122. }
  123. ::selection {
  124. color: white;
  125. background-color: #262626;
  126. }
  127. .main {
  128. margin-top: 80px;
  129. }
  130. .navbar {
  131. position: fixed;
  132. top: 0;
  133. left: 0;
  134. display: block;
  135. width: 100%;
  136. height: 6.5rem;
  137. background: #fff;
  138. z-index: 99;
  139. border-bottom: 1px solid #000;
  140. }
  141. .navbar-container {
  142. text-align: right;
  143. }
  144. /*.navbar-list{
  145. list-style: none;
  146. margin-bottom: 0;
  147. text-align: right;
  148. }
  149. ul.navbar-list > li {
  150. display: inline-block;;
  151. white-space: nowrap;
  152. padding-left: 40px;
  153. text-align: left;
  154. }
  155. ul.navbar-list > li > a {
  156. display: inline-block ;
  157. text-transform: uppercase;
  158. font-size: 12px;
  159. letter-spacing: .2rem;
  160. text-decoration: none;
  161. line-height: 6.5rem;
  162. color: #222;
  163. transition: all 0.5s;
  164. border-bottom: 1px solid transparent;
  165. }
  166. ul.navbar-list > li > a:hover {
  167. color: #898989;
  168. border-bottom: 1px solid #222;
  169. cursor: pointer;
  170. }
  171. ul.navbar-list > li > a > object {
  172. width: 3em;
  173. vertical-align: middle;
  174. }
  175. ul.navbar-list > li > a.selected {
  176. color: #222;
  177. border-bottom: 1px solid #222;
  178. font-family: ralewayBold;
  179. }*/
  180. .fade-enter-active,
  181. .fade-leave-active {
  182. transition: opacity .5s
  183. }
  184. .fade-enter,
  185. .fade-leave-to {
  186. opacity: 0
  187. }
  188. .mision,
  189. .vision {
  190. text-align: justify
  191. }
  192. .mision h5 {
  193. text-align: right;
  194. }