infobox.css 4.0 KB

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