_header.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /**
  2. * @copyright 2015 by Tobias Reich
  3. */
  4. header {
  5. position: fixed;
  6. height: 49px;
  7. width: 100%;
  8. background: linear-gradient(to bottom, #222222, #1a1a1a);
  9. border-bottom: 1px solid #0f0f0f;
  10. z-index: 1;
  11. transition: transform .3s ease-out;
  12. /* Modes ------------------------------------------------*/
  13. &.hidden { transform: translateY(-60px); }
  14. &.loading { transform: translateY(2px); }
  15. &.error { transform: translateY(40px); }
  16. &.view {
  17. background: none;
  18. border-bottom: none;
  19. &.error { background-color: rgba(10, 10, 10, .99); }
  20. }
  21. /* Title ------------------------------------------------*/
  22. #title {
  23. position: absolute;
  24. margin: 0 30%;
  25. width: 40%;
  26. padding: 15px 0;
  27. color: #fff;
  28. font-size: 16px;
  29. font-weight: bold;
  30. text-align: center;
  31. text-shadow: $shadow;
  32. z-index: 1;
  33. .iconic {
  34. display: none;
  35. margin: 0 0 0 5px;
  36. width: 10px;
  37. fill: white(.5);
  38. filter: drop-shadow($shadow);
  39. transition: fill .2s ease-out;
  40. }
  41. &:hover .iconic { fill: white(1); }
  42. &.editable .iconic { display: inline-block; }
  43. }
  44. /* Toolbars ------------------------------------------------*/
  45. .toolbar {
  46. display: none;
  47. position: absolute;
  48. box-sizing: border-box;
  49. width: 100%;
  50. height: 100%;
  51. padding: 0 10px;
  52. }
  53. /* Button ------------------------------------------------*/
  54. .button {
  55. display: inline-block;
  56. padding: 17px 8px 15px;
  57. width: 15px;
  58. &--left { float: left; }
  59. &--right { float: right; }
  60. .iconic {
  61. fill: white(.5);
  62. filter: drop-shadow($shadow);
  63. transition: fill .2s ease-out;
  64. }
  65. &:hover .iconic { fill: white(1); }
  66. &--star.active .iconic { fill: #f0ef77; }
  67. &--eye.active .iconic { fill: #ff9737; }
  68. &#button_signin { display: none; }
  69. }
  70. /* Button Divider ------------------------------------------------*/
  71. .button_divider {
  72. float: right;
  73. position: relative;
  74. width: 14px;
  75. height: 50px;
  76. }
  77. /* Search ------------------------------------------------*/
  78. #search {
  79. float: right;
  80. width: 80px;
  81. margin: 12px 12px 0 0;
  82. padding: 5px 12px 6px 12px;
  83. background-color: #222;
  84. color: #fff;
  85. border: 0;
  86. outline: none;
  87. border-radius: 50px;
  88. opacity: .6;
  89. transition: opacity .3s ease-out, transform .3s ease-out, box-shadow .3s ease-out, width .2s ease-out;
  90. &:focus { width: 140px; }
  91. &:focus ~ #clearSearch { opacity: 1; }
  92. }
  93. #clearSearch {
  94. position: absolute;
  95. top: 13px;
  96. right: 78px;
  97. padding: 0;
  98. color: #888;
  99. font-size: 20px;
  100. opacity: 0;
  101. transition: opacity .2s ease-out, color .2s ease-out;
  102. &:hover {
  103. color: #fff;
  104. opacity: 1;
  105. }
  106. }
  107. /* Hosted with Lychee ------------------------------------------------*/
  108. #hostedwith {
  109. float: right;
  110. padding: 5px 10px;
  111. margin: 13px 9px;
  112. color: #888;
  113. font-size: 13px;
  114. text-shadow: $shadow;
  115. border-radius: 100px;
  116. display: none;
  117. &:hover { background-color: black(.3); }
  118. }
  119. }