infobox.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /**
  2. * @name infobox.css
  3. * @author Tobias Reich
  4. * @copyright 2014 by Tobias Reich
  5. */
  6. #infobox_overlay {
  7. z-index: 3;
  8. position: fixed;
  9. width: 100%;
  10. height: 100%;
  11. top: 0px;
  12. left: 0px;
  13. background-color: rgba(0,0,0,.8);
  14. }
  15. #infobox {
  16. z-index: 4;
  17. position: fixed;
  18. right: 0px;
  19. width: 350px;
  20. height: 100%;
  21. background-color: rgba(20,20,20,0.98);
  22. box-shadow: -1px 0px 2px rgba(0,0,0,.8);
  23. display: none;
  24. transform: translateX(370px);
  25. transition: transform .3s cubic-bezier(0.51,.92,.24,1.15);
  26. }
  27. #infobox.active {
  28. transform: translateX(50px);
  29. }
  30. /* Misc ------------------------------------------------*/
  31. #infobox .wrapper {
  32. float: left;
  33. height: 100%;
  34. width: 300px;
  35. overflow: scroll;
  36. -webkit-overflow-scrolling: touch;
  37. }
  38. #infobox .edit {
  39. display: inline;
  40. margin-left: 3px;
  41. width: 20px;
  42. height: 5px;
  43. cursor: pointer;
  44. }
  45. #infobox .bumper {
  46. float: left;
  47. width: 100%;
  48. height: 50px;
  49. }
  50. /* Header ------------------------------------------------*/
  51. #infobox .header {
  52. float: left;
  53. height: 49px;
  54. width: 100%;
  55. background-image: linear-gradient(to bottom, #2A2A2A, #131313);
  56. border-bottom: 1px solid #000;
  57. }
  58. #infobox .header h1 {
  59. position: absolute;
  60. margin: 15px 30% 15px calc(30% - 25px);
  61. width: 40%;
  62. color: #fff;
  63. font-size: 16px;
  64. font-weight: bold;
  65. text-align: center;
  66. text-shadow: 0px -1px 0px rgba(0, 0, 0, .8);
  67. }
  68. #infobox .header a {
  69. float: right;
  70. padding: 15px 65px 15px 15px;
  71. color: #fff;
  72. font-size: 20px;
  73. font-weight: bold;
  74. text-shadow: 0px -1px 0px rgba(0, 0, 0, .8);
  75. opacity: .5;
  76. cursor: pointer;
  77. }
  78. #infobox .header a:hover {
  79. opacity: 1;
  80. }
  81. /* Seperator ------------------------------------------------*/
  82. #infobox .separator {
  83. float: left;
  84. width: 100%;
  85. border-top: 1px solid rgba(255,255,255,.04);
  86. box-shadow: 0px -1px 0px #000;
  87. }
  88. #infobox .separator h1 {
  89. margin: 20px 0px 5px 20px;
  90. color: #fff;
  91. font-size: 14px;
  92. font-weight: bold;
  93. text-shadow: 0px -1px 0px rgba(0, 0, 0, .8);
  94. }
  95. /* Table ------------------------------------------------*/
  96. #infobox table {
  97. float: left;
  98. margin: 10px 0px 15px 20px;
  99. }
  100. #infobox table tr td {
  101. padding: 5px 0px;
  102. color: #fff;
  103. font-size: 14px;
  104. line-height: 19px;
  105. -webkit-user-select: text;
  106. -moz-user-select: text;
  107. user-select: text;
  108. }
  109. #infobox table tr td:first-child {
  110. width: 110px;
  111. }
  112. #infobox table tr td:last-child {
  113. padding-right: 10px;
  114. }
  115. /* Tags ------------------------------------------------*/
  116. #infobox #tags {
  117. width: calc(100% - 40px);
  118. margin: 16px 20px 12px 20px;
  119. color: #fff;
  120. display: inline-block;
  121. }
  122. #infobox #tags .empty {
  123. font-size: 14px;
  124. margin-bottom: 8px;
  125. }
  126. #infobox #tags .edit {
  127. display: inline-block;
  128. }
  129. #infobox #tags .empty .edit {
  130. display: inline;
  131. }
  132. #infobox .tag {
  133. float: left;
  134. padding: 4px 7px;
  135. margin: 0px 6px 8px 0px;
  136. background-color: rgba(0,0,0,.5);
  137. border: 2px solid rgba(255,255,255,.3);
  138. border-radius: 100px;
  139. font-size: 12px;
  140. transition: border .3s;
  141. }
  142. #infobox .tag:hover {
  143. border: 2px solid #aaa;
  144. }
  145. #infobox .tag span {
  146. float: right;
  147. width: 0px;
  148. padding: 0px;
  149. margin: 0px 0px -2px 0px;
  150. color: red;
  151. font-size: 11px;
  152. cursor: pointer;
  153. overflow: hidden;
  154. transform: scale(0);
  155. transition: width .3s, margin .3s, transform .3s;
  156. }
  157. #infobox .tag:hover span {
  158. width: 10px;
  159. margin: 0px 0px -2px 6px;
  160. transform: scale(1);
  161. }