styles.css 3.6 KB

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