styles.css 2.6 KB

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