cobalt.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. #cobalt * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. #cobalt, #cobalt-out {
  6. background-color: #000;
  7. background-color: rgba(0,0,0,0.7);
  8. border-radius: 20px;
  9. box-shadow: rgba(255, 255, 255, 0.5) 1px 1px 5px;
  10. -moz-border-radius: 20px;
  11. -webkit-border-radius: 20px;
  12. -webkit-box-shadow: rgba(255, 255, 255, 0.5) 1px 1px 5px;
  13. position: fixed;
  14. top: 38%;
  15. left: 50%;
  16. margin: -85px 0 0 -165px;
  17. width: 330px;
  18. padding: 5px 0;
  19. font-size: 12px;
  20. font-family: 'Lucida Grande', sans-serif;
  21. line-height: 16px;
  22. z-index: 1000;
  23. }
  24. #cobalt-out {
  25. background-color: rgba(0,0,0,0.8);
  26. padding: 10px;
  27. color: #FFF;
  28. }
  29. #cobalt .cell {
  30. position: relative;
  31. background-color: #FFF;
  32. background-color: rgba(255,255,255,0.5);
  33. border-radius: 10px;
  34. -moz-border-radius: 10px;
  35. -webkit-border-radius: 10px;
  36. float: left;
  37. margin: 5px 0 5px 10px;
  38. width: 150px;
  39. height: 150px;
  40. font-family: 'Lucida Grande', sans-serif;
  41. }
  42. #cobalt .cell input {
  43. text-shadow: 1px 1px 5px #FFF;
  44. margin: -4px 0 0 -4px;
  45. padding: 4px;
  46. width: 134px;
  47. height: 134px;
  48. border: 0;
  49. color: #000;
  50. color: rgba(0,0,0,0.8);
  51. background-color: transparent;
  52. background-color: rgba(0,0,0,0);
  53. font-size: 32px;
  54. }
  55. #cobalt .inner {
  56. overflow: hidden;
  57. width: 130px;
  58. height: 130px;
  59. margin: 10px;
  60. }
  61. #cobalt .cell label {
  62. display: none;
  63. position: absolute;
  64. bottom: 10px;
  65. left: 10px;
  66. width: 120px;
  67. padding: 3px;
  68. text-align: center;
  69. color: #FFF;
  70. background-color: #000;
  71. background-color: rgba(0,0,0,0.5);
  72. border-radius: 5px;
  73. -moz-border-radius: 5px;
  74. -webkit-border-radius: 5px;
  75. }
  76. #cobalt .cell .cobalt-item-url_data {
  77. background: url(bookmark.png) center center no-repeat;
  78. }
  79. #cobalt .cell .cobalt-item-node {
  80. background: url(node.png) center center no-repeat;
  81. }
  82. #cobalt .cell .cobalt-item-user {
  83. background: url(user.png) center center no-repeat;
  84. }
  85. #cobalt .cell .cobalt-item-vocabulary, #cobalt .cell .cobalt-item-term {
  86. background: url(voc.png) center center no-repeat;
  87. }
  88. #cobalt .cobalt-paging {
  89. display: none;
  90. margin: 0;
  91. padding: 0 20px;
  92. clear: both;
  93. text-align: center;
  94. line-height: 0;
  95. }
  96. #cobalt .cobalt-paging li {
  97. display: inline-block;
  98. list-style: none;
  99. margin: 6px 0 0;
  100. padding: 0;
  101. opacity: .5;
  102. background: url(whitedot.png) top left no-repeat;
  103. width: 10px;
  104. height: 10px;
  105. }
  106. #cobalt .cobalt-paging li.current {
  107. opacity: 1.0;
  108. }
  109. #cobalt .cobalt-autocomplete, #cobalt .cobalt-actions {
  110. display: none;
  111. clear: both;
  112. margin: 0 10px;
  113. padding: 10px 0 5px;
  114. color: #FFF;
  115. }
  116. #cobalt .cobalt-autocomplete li, #cobalt .cobalt-actions li {
  117. display: block;
  118. list-style: none;
  119. padding: 5px 10px;
  120. background-image: none;
  121. }
  122. #cobalt .cobalt-autocomplete li small {
  123. color: #333;
  124. color: rgba(256,256,256,0.8);
  125. }
  126. #cobalt .right .cobalt-action-default {
  127. background: url(default_action.png) center center no-repeat;
  128. }
  129. #cobalt .cobalt-autocomplete li.active, #cobalt .cobalt-actions li.active {
  130. background-color: #FFF;
  131. background-color: rgba(0,0,0,0.5);
  132. border-radius: 10px;
  133. -moz-border-radius: 10px;
  134. -webkit-border-radius: 10px;
  135. }
  136. #cobalt-out .cobalt-update-link {
  137. text-transform: uppercase;
  138. color: #FFF;
  139. }