styles.css 3.2 KB

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