Advertisement
Guest User

Untitled

a guest
Apr 21st, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.30 KB | None | 0 0
  1. div.reply {
  2.     border-radius:5px;
  3.     -webkit-box-shadow: 2px 2px 4px rgba(50, 50, 50, 0.5);
  4.     -moz-box-shadow:    2px 2px 4px rgba(50, 50, 50, 0.5);
  5.     box-shadow:         2px 2px 4px rgba(50, 50, 50, 0.5);
  6. }
  7. input[type=submit],input[type=button] {
  8.     color: rgb(240, 240, 240);
  9.     font-size: 12px;
  10.     padding: 5px;
  11.     text-shadow: 0px -2px 2px rgba(30, 30, 30, 0.8);
  12.     -webkit-border-radius: 4px;
  13.     -moz-border-radius: 4px;
  14.     border-radius: 4px;
  15.     background: rgb(34, 34, 163);
  16.     background: -moz-linear-gradient(90deg, rgb(34, 34, 163) 31%, rgb(99, 103, 255) 90%);
  17.     background: -webkit-linear-gradient(90deg, rgb(34, 34, 163) 31%, rgb(99, 103, 255) 90%);
  18.     background: -o-linear-gradient(90deg, rgb(34, 34, 163) 31%, rgb(99, 103, 255) 90%);
  19.     background: -ms-linear-gradient(90deg, rgb(34, 34, 163) 31%, rgb(99, 103, 255) 90%);
  20.     background: linear-gradient(0deg, rgb(34, 34, 163) 31%, rgb(99, 103, 255) 90%);
  21.     -webkit-box-shadow: 1px 1px 4px rgba(50, 50, 50, 0.75);
  22.     -moz-box-shadow:    1px 1px 4px rgba(50, 50, 50, 0.75);
  23.     box-shadow:         1px 1px 4px rgba(50, 50, 50, 0.75);
  24.     margin:2px; outline:none; border:0px;
  25.     -webkit-transition-duration: 0.2s;
  26.     -moz-transition-duration: 0.2s;
  27. }
  28. input[type=submit]:active,
  29. input[type=button]:active {
  30.     background:rgb(34, 34, 163);
  31. }
  32.  
  33. input[type=submit]:hover,
  34. input[type=button]:hover,
  35. input[type=submit]:focus,
  36. input[type=button]:focus {
  37.     -webkit-box-shadow: 0px 0px 6px rgba(50, 190, 255, 1.0);
  38.     -moz-box-shadow:    0px 0px 6px rgba(50, 190, 255, 1.0);
  39.     box-shadow:         0px 0px 6px rgba(50, 190, 255, 1.0);
  40.     -webkit-transition-duration: 0.2s;
  41.     -moz-transition-duration: 0.2s;
  42. }
  43.  
  44. table.postForm > tbody > tr > td:first-child {
  45.     background:rgb(214, 218, 240);
  46.     border:4px;
  47. }
  48.  
  49. div.postInfo {
  50.     background:rgb(222, 230, 254);
  51.     border:2px;
  52.     border-color:rgb(200,200,200);
  53. }
  54.  
  55. div.reply div.postInfo {
  56.     display:block; width:100%
  57. }
  58.  
  59. div.op div.postInfo {
  60.     display:inline;
  61.     width:auto
  62. }
  63.  
  64. input[type=file] {
  65. }
  66.  
  67. div.board{
  68.     background:rgb(238, 242, 255);
  69. }
  70.  
  71. .boardBanner:before {
  72.     content:url(http://i.imgur.com/1BMpUQr.gif);
  73. }
  74. img.title {
  75.     display:none;
  76. }
  77.  
  78. body {
  79.     background-image:url(http://i.imgur.com/Aa5xSsH.png);
  80.     background-repeat:no-repeat;
  81.     background-size:contain;
  82. }
  83.  
  84. hr {
  85.     visibility:hidden;
  86. }
  87.  
  88. .board > hr {
  89.     visibility:visible;
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement