styles.css 3.3 KB

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