styles.css 2.6 KB

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