styles.css 3.2 KB

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