styles.css 3.0 KB

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