infobox.css 3.9 KB

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