Advertisement
i27mad

اضافة تغيير حجم ونوع الخط والتحكم في لون خلفية المدونه بلوجر

Mar 9th, 2015
673
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.71 KB | None | 0 0
  1. <style>
  2. #cnmustylechanger {height: 180px;}
  3. #stylechanger {
  4. background:#FFFFFF;
  5. border-collapse: collapse;
  6. border-radius: 5px;
  7. box-shadow: 0 0 2px #222222;
  8. display: block;
  9. font: 10px tahoma;
  10. height: 170px;
  11. margin-top: 10px;
  12. text-align: right;
  13. width: 235px;
  14. }
  15. #stylechanger th,
  16. #stylechanger td {
  17. vertical-align:middle;
  18. border:none !important;
  19. padding:2px 5px;
  20. }
  21. #stylechanger th.title {
  22. background-color:#33AFE0;
  23. padding:5px 10px;
  24. margin:0 0 10px;
  25. text-transform:uppercase;
  26. font-size:12px;
  27. font-family: Arial,Sans-Serif;
  28. color: #FFF;
  29. }
  30. #stylechanger select,
  31. #stylechanger input[type="text"] {
  32. width:128px;
  33. padding:2px;
  34. font:bold 11px Arial,Sans-Serif;
  35. display:block;
  36. margin:0 0 0;
  37. height:24px;
  38. outline: 0;
  39. }
  40. #stylechanger select option {
  41. padding:5px 10px;
  42. cursor:pointer;
  43. }
  44. #stylechanger button {
  45. cursor: pointer;
  46. font: 12px tahoma;
  47. padding: 2px 5px 5px;
  48. width: 128px;
  49. }
  50. #stylechanger #bgColorer {
  51. overflow:hidden;
  52. margin:10px 15px 10px 0;
  53. }
  54. #stylechanger #bgColorer span {
  55. display:block;
  56. float:right;
  57. width:20px;
  58. height:20px;
  59. border:1px solid black;
  60. margin:0 5px 0 0;
  61. cursor:pointer;
  62. }
  63. #stylechanger input[type="text"] {
  64. width:118px !important;
  65. padding:4px !important;
  66. height:auto !important;
  67. }
  68. </style>
  69. <center>
  70. <div id="cnmustylechanger">
  71. <table border="0" id="stylechanger">
  72. <tr>
  73. <td colspan="2">
  74. <div id="bgColorer">
  75. <span style="background-color:#523690;" onclick="bgSwitch(this.style.backgroundColor);"></span>
  76. <span style="background-color:#248bcb;" onclick="bgSwitch(this.style.backgroundColor);"></span>
  77.  
  78. <span style="background-color:#fed100;" onclick="bgSwitch(this.style.backgroundColor);"></span>
  79. <span style="background-color:#c91212;" onclick="bgSwitch(this.style.backgroundColor);"></span>
  80. <span style="background-color:#3a9838;" onclick="bgSwitch(this.style.backgroundColor);"></span>
  81. <span style="background-color:#36404a;" onclick="bgSwitch(this.style.backgroundColor);"></span>
  82. <span style="background-color:#ffffff;" onclick="bgSwitch(this.style.backgroundColor);"></span>
  83. </div>
  84. </td>
  85. </tr>
  86. <tr><th>نوع الخط</th>
  87. <td>
  88. <select onchange="fontSwitch(this.value);">
  89. <option selected />--
  90. <option value="&#39;Book Antiqua&#39;,Serif" />Book Antiqua
  91. <option value="&#39;Times New Roman&#39;,Serif" />Times New Roman
  92. <option value="Georgia,Serif" />Georgia
  93. <option value="Arial,Sans-Serif" />Arial
  94. <option value="Tahoma,Verdana,Arial,Sans-Serif" />Tahoma
  95. <option value="&#39;Trebuchet MS&#39;,Arial,Sans-Serif" />Trebuchet
  96. <option value="Verdana,Arial,Sans-Serif" />Verdana
  97. <option value="&#39;Century Gothic&#39;,Tahoma,Verdana,Arial,Sans-Serif" />Century Gothic
  98. <option value="&#39;Comic Sans MS&#39;,Serif" />Comic Sans
  99. </select>
  100. </td>
  101. </tr>
  102. <tr><th>لون الخط</th>
  103. <td><input type="text" id="fontColorer" value="#000000" onkeyup="fontColor(this.value);"/></td>
  104. </tr>
  105. <tr><th>حجم الخط</th>
  106. <td><input type="text" id="fontSizer" value="12" maxlength="3" onkeyup="changeFontSize(this.value);"/></td>
  107. </tr>
  108. <tr><th>إستعادة الإفتراضي</th>
  109. <td><button onclick="resetStyle();">إستعادة</button></td>
  110. </tr>
  111. </table>
  112. </div>
  113. </center>
  114. <script src='https://cnmu.googlecode.com/svn/trunk/2014/theme-style.js' type='text/javascript'/></script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement