Advertisement
poisonthangs_x

Blog Base

Jun 17th, 2018
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.62 KB | None | 0 0
  1. /* to style the buttons and things like that, I use a chrome extension coder thingy called CSS Styles. If you use chrome you can get it in the extensions. Just search for it. It's called: CSS Styles. Ask questions!! */ -Ivy
  2.  
  3.  
  4. <style type="text/css">
  5. body
  6. {
  7. background-repeat:repeat;
  8. background-position:top center;
  9. background-attachment:fixed;
  10. background-image:url('');
  11. overflow-x:hidden;
  12. background-size:contain;
  13. font-family: 'Pacifico', cursive;
  14. font-family: 'Anton', sans-serif;
  15. font-family: 'Great Vibes', cursive;
  16. background-position: 100%;
  17. }
  18.  
  19. /*BLOG TITLE*/
  20. .blogsubject
  21. {
  22. font-size: 30px !important;
  23. color: #E9ABAB!important;
  24. letter-spacing: 1px !important;
  25. line-height: 35px !important;
  26. font-weight: lighter !important;
  27. text-transform: lowercase !important;
  28. text-align: center !important;
  29. text-decoration: none !important;
  30. display: block !important;
  31. background-color: #A95454;
  32.  
  33. }
  34.  
  35. /*MAIN PART OF BLOG*/
  36.  
  37. .main {
  38. width: 900px!important; /*make this match with blog post*/
  39. background-color: none!important;
  40. margin-left: 25%;
  41. margin-top: 7%;
  42. }
  43.  
  44. .blog .blog { background-color:transparent!important; border:0px!important;}
  45.  
  46. /*BLOG POSTS*/
  47. .blog
  48. {
  49. width: 900px !important; /*make this match*/
  50. border: 0px solid black!important;
  51. background-color: #E7B9DE!important;
  52. }
  53.  
  54.  
  55. /*RIGHT BLOG COMMENTS*/
  56.  
  57. .blogcomments {
  58. background-color: #09A1F0;
  59. margin-left: -50px!important;
  60. color: #ffffff;
  61. font-size: 18px;
  62. text-align: center;
  63. }
  64.  
  65.  
  66. /*LEFT BLOG PROFILE PIC*/
  67. .blogcommentsprofile {
  68. background-color:#A87677!important;
  69. margin-left: -50px!important;
  70. }
  71.  
  72.  
  73. /*GOLBAL TEXT STYLING*/
  74. div, span.text, span.text p, table, td, tr {text-transform: none; text-decoration: none; font-style: normal; font-weight: normal; font-family: Lato; color: #2700B5; font-size: 1.80vh;}
  75.  
  76.  
  77. /*SCROLLBAR*/
  78. ::-webkit-scrollbar
  79. {width: 4px; height: 2px; background: #9D9E9E; }
  80. ::-webkit-scrollbar-thumb
  81. {background-color: #9D9E9E; width: 8px; padding:5px; width: 3px; height: 2px;}
  82.  
  83.  
  84. #putyournamehere {------>Show Number of blog posts<-----------}
  85. .txt_label, .txt_label a, .txt_label b, .txt_label font {font:8px georgia!important; color:#000!important;}
  86.  
  87.  
  88.  
  89. .putyournamehere {--->headings and styles<----}
  90.  
  91. h1 {}
  92.  
  93. h2 {}
  94.  
  95. h3 {}
  96.  
  97. h4 {}
  98.  
  99. h5 {}
  100.  
  101.  
  102. i {}
  103. b {}
  104. u {}
  105. s {}
  106. strong {}
  107. tt {}
  108. em {}
  109. big {}
  110. small {}
  111.  
  112. blockquote {}
  113.  
  114.  
  115. /*POST and CANCLE COMMENT BUTTONS*/
  116. input.form_button {
  117. background-color: #2e1d2e;
  118. color: #ffffff;
  119. }
  120.  
  121.  
  122. /*CHANGE COMMENT BOX BACKGROUND COLOR*/
  123. td.txt_label table {
  124. background-color: #6e246e;
  125. }
  126.  
  127.  
  128. /*CHANGE NAME ON THE PROFILE PIC*/
  129. td.blogCommentsProfile a {
  130. color: #fff5ff;
  131. }
  132.  
  133.  
  134. /*CHANGE THE COMMENT TEXT*/
  135. p.blogCommentsContent {
  136. text-decoration: none;
  137. }
  138.  
  139.  
  140. /*CHANGE VIEW ALL BLOGS LINK*/
  141. #ctl00_cpMain_SingleBlog_btnBackToBlogList2 {
  142. text-transform: lowercase;
  143. }
  144.  
  145.  
  146. .putyournamehere {--------->BLOG HIDE CODES<----------}
  147. .profile { display:none!important; } u, {visibility:hidden!important;}
  148. .main u, .main font {visibility: visible!important;} element.style {visibility:hidden !important;}
  149. .nav, .spacer, .blogTimeStamp, .commentspacer, hr {display: none!important;}
  150. .latestBlogEntry br {display:none!important;} .latestBlogEntry td {height:0px!important;}
  151. .latestBlogEntry .btext {display:block!important;}
  152. body > div:nth-child(1) > table:nth-child(1) {display:none;} div.cmtcell {float:left;}
  153. body > div:nth-child(2) > table:nth-child(1) {display: none!important;}
  154. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement