styles.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. }
  27. .container {
  28. width: 90%;
  29. max-width: none;
  30. }
  31. .video-txt {
  32. margin-top: 10%;
  33. }
  34. ::selection {
  35. color: white;
  36. background-color: #262626;
  37. }
  38. .main {
  39. margin-top: 80px;
  40. }
  41. .navbar {
  42. position: fixed;
  43. top: 0;
  44. left: 0;
  45. display: block;
  46. width: 100%;
  47. height: 6.5rem;
  48. background: #fff;
  49. z-index: 99;
  50. border-top: 1px solid #eee;
  51. border-bottom: 1px solid #eee;
  52. }
  53. .navbar-container {
  54. width: 90%;
  55. }
  56. .navbar-list{
  57. list-style: none;
  58. margin-bottom: 0;
  59. text-align: right;
  60. }
  61. ul.navbar-list > li {
  62. display: inline-block;;
  63. white-space: nowrap;
  64. padding-left: 40px;
  65. text-align: left;
  66. }
  67. ul.navbar-list > li > a {
  68. display: inline-block ;
  69. text-transform: uppercase;
  70. font-size: 12px;
  71. letter-spacing: .2rem;
  72. text-decoration: none;
  73. line-height: 6.5rem;
  74. color: #222;
  75. transition: all 0.5s;
  76. }
  77. ul.navbar-list > li > a:hover {
  78. color: #898989;
  79. border-bottom: 1px solid #222;
  80. }
  81. ul.navbar-list > li > a > object {
  82. width: 3em;
  83. vertical-align: middle;
  84. }