Advertisement
pklove

Blood Makes Noise, Board Remodel Stylesheet

Jan 9th, 2015
619
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. /*BOARD LIST*/
  2. .boardbox {
  3. background-color:#303030;
  4. width:300px;
  5. height:90px;
  6. margin-left:30px;
  7. margin-top:30px;
  8. margin-bottom:10px;
  9. margin-right:0px;
  10. padding:15px;
  11. padding-top:13px;
  12. padding-bottom:18px;
  13. }
  14. .boardinfo {
  15. height:85px;
  16. max-height:85px;
  17. overflow:auto;
  18. font-size:10px;
  19. font-family:verdana;
  20. text-align:justify;
  21. color:#b6b6b6;
  22. }
  23. .boardtitle {
  24. font-family:georgia;
  25. font-size:25px;
  26. font-style:italic;
  27. color:#dbdbdb;
  28. position:absolute;
  29. text-transform:capitalize!important;
  30. }
  31. .lastpost {
  32. font-family:verdana;
  33. font-size:10px;
  34. letter-spacing:.5px;
  35. text-transform:uppercase;
  36. }
  37. .lastpostinfo {
  38. font-family:verdana;
  39. font-size:10px;
  40. letter-spacing:.5px;
  41. text-transform:uppercase;
  42. color:#b6b6b6;
  43. }
  44. .lastpostavatar {
  45. border:5px solid #404040;
  46. background-color:5px solid #404040;
  47. border-radius:100px;
  48. }
  49. .boardstats {
  50. background-color:#303030;
  51. width:290px;
  52. height:93px;
  53. margin-left:20px;
  54. margin-top:30px;
  55. margin-bottom:10px;
  56. margin-right:0px;
  57. padding:15px;
  58. padding-bottom:20px;
  59. }
  60. .subboardhover {
  61. position: relative;
  62. overflow: hidden;
  63. width: 300px;
  64. height: 90px;
  65. }
  66. .subboardinfo {
  67. text-align:center;
  68. font-family:courier new;
  69. font-size:11px;
  70. letter-spacing:1px;
  71. text-transform:uppercase;
  72. position: absolute;
  73. background-color: #404040;
  74. color:#ccc;
  75. width: 290px;
  76. margin-bottom:0px;
  77. height: 110px;
  78. bottom: -83px;
  79. overflow: hidden;
  80. transition: all 0.35s ease-in-out 2s;
  81. -webkit-transition: all 0.35s ease-in-out 2s;
  82. -moz-transition: all 0.35s ease-in-out 2s;
  83. -o-transition: all 0.35s ease-in-out 2s;
  84. -ms-transition: all 0.35s ease-in-out 2s;
  85. -webkit-transition-delay: 0s;
  86. transition-delay: 0s;
  87. }
  88.  
  89. .subboardhover:hover .subboardinfo {
  90. bottom: 0px;
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement