styles.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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 > .container {
  36. margin-top: 20px;
  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. .cursos-list {
  56. list-style: none;
  57. }
  58. .cursos-list li {
  59. text-transform: uppercase;
  60. letter-spacing: 1px;
  61. font-family: ralewayMedium;
  62. margin-bottom: 5px;
  63. }
  64. ::selection {
  65. color: white;
  66. background-color: #262626;
  67. }
  68. .main {
  69. margin-top: 80px;
  70. }
  71. .navbar {
  72. position: fixed;
  73. top: 0;
  74. left: 0;
  75. display: block;
  76. width: 100%;
  77. height: 6.5rem;
  78. background: #fff;
  79. z-index: 99;
  80. border-bottom: 1px solid #000;
  81. }
  82. .navbar-container {
  83. width: 90%;
  84. }
  85. .navbar-list{
  86. list-style: none;
  87. margin-bottom: 0;
  88. text-align: right;
  89. }
  90. ul.navbar-list > li {
  91. display: inline-block;;
  92. white-space: nowrap;
  93. padding-left: 40px;
  94. text-align: left;
  95. }
  96. ul.navbar-list > li > a {
  97. display: inline-block ;
  98. text-transform: uppercase;
  99. font-size: 12px;
  100. letter-spacing: .2rem;
  101. text-decoration: none;
  102. line-height: 6.5rem;
  103. color: #222;
  104. transition: all 0.5s;
  105. }
  106. ul.navbar-list > li > a:hover {
  107. color: #898989;
  108. border-bottom: 1px solid #222;
  109. }
  110. ul.navbar-list > li > a > object {
  111. width: 3em;
  112. vertical-align: middle;
  113. }