A tumblelog CMS built on AJAX, PHP and MySQL.

fullpage.css 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /* Hide the advanced tab */
  2. #advanced_tab {
  3. display: none;
  4. }
  5. #metatitle, #metakeywords, #metadescription, #metaauthor, #metacopyright {
  6. width: 280px;
  7. }
  8. #doctype, #docencoding {
  9. width: 200px;
  10. }
  11. #langcode {
  12. width: 30px;
  13. }
  14. #bgimage {
  15. width: 220px;
  16. }
  17. #fontface {
  18. width: 240px;
  19. }
  20. #leftmargin, #rightmargin, #topmargin, #bottommargin {
  21. width: 50px;
  22. }
  23. .panel_wrapper div.current {
  24. height: 400px;
  25. }
  26. #stylesheet, #style {
  27. width: 240px;
  28. }
  29. /* Head list classes */
  30. .headlistwrapper {
  31. width: 100%;
  32. }
  33. .addbutton, .removebutton, .moveupbutton, .movedownbutton {
  34. border-top: 1px solid;
  35. border-left: 1px solid;
  36. border-bottom: 1px solid;
  37. border-right: 1px solid;
  38. border-color: #F0F0EE;
  39. cursor: default;
  40. display: block;
  41. width: 20px;
  42. height: 20px;
  43. }
  44. .addbutton:hover, .removebutton:hover, .moveupbutton:hover, .movedownbutton:hover {
  45. border: 1px solid #0A246A;
  46. background-color: #B6BDD2;
  47. }
  48. .addbutton {
  49. background-image: url('../images/add.gif');
  50. float: left;
  51. margin-right: 3px;
  52. }
  53. .removebutton {
  54. background-image: url('../images/remove.gif');
  55. float: left;
  56. }
  57. .moveupbutton {
  58. background-image: url('../images/move_up.gif');
  59. float: left;
  60. margin-right: 3px;
  61. }
  62. .movedownbutton {
  63. background-image: url('../images/move_down.gif');
  64. float: left;
  65. }
  66. .selected {
  67. border: 1px solid #0A246A;
  68. background-color: #B6BDD2;
  69. }
  70. .toolbar {
  71. width: 100%;
  72. }
  73. #headlist {
  74. width: 100%;
  75. margin-top: 3px;
  76. font-size: 11px;
  77. }
  78. #info, #title_element, #meta_element, #script_element, #style_element, #base_element, #link_element, #comment_element, #unknown_element {
  79. display: none;
  80. }
  81. #addmenu {
  82. position: absolute;
  83. border: 1px solid gray;
  84. display: none;
  85. z-index: 100;
  86. background-color: white;
  87. }
  88. #addmenu a {
  89. display: block;
  90. width: 100%;
  91. line-height: 20px;
  92. text-decoration: none;
  93. background-color: white;
  94. }
  95. #addmenu a:hover {
  96. background-color: #B6BDD2;
  97. color: black;
  98. }
  99. #addmenu span {
  100. padding-left: 10px;
  101. padding-right: 10px;
  102. }
  103. #updateElementPanel {
  104. display: none;
  105. }
  106. #script_element .panel_wrapper div.current {
  107. height: 108px;
  108. }
  109. #style_element .panel_wrapper div.current {
  110. height: 108px;
  111. }
  112. #link_element .panel_wrapper div.current {
  113. height: 140px;
  114. }
  115. #element_script_value {
  116. width: 100%;
  117. height: 100px;
  118. }
  119. #element_comment_value {
  120. width: 100%;
  121. height: 120px;
  122. }
  123. #element_style_value {
  124. width: 100%;
  125. height: 100px;
  126. }
  127. #element_title, #element_script_src, #element_meta_name, #element_meta_content, #element_base_href, #element_link_href, #element_link_title {
  128. width: 250px;
  129. }
  130. .updateElementButton {
  131. margin-top: 3px;
  132. }
  133. /* MSIE specific styles */
  134. * html .addbutton, * html .removebutton, * html .moveupbutton, * html .movedownbutton {
  135. width: 22px;
  136. height: 22px;
  137. }