Advertisement
Guest User

Untitled

a guest
Nov 4th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. p {
  2. font-family: Verdana, Geneva, sans-serif;
  3. font-weight: bold;
  4. }
  5. #search-box {
  6. overflow: hidden;
  7. width: 300px;
  8. vertical-align: middle;
  9. white-space: nowrap;
  10. }
  11. #search-box #keywords {
  12. width: 300px;
  13. height: 50px;
  14. background: #f0f9ff;
  15. border: none;
  16. font-size: 10pt;
  17. float: left;
  18. color: #000;
  19. padding-left: 15px;
  20. }
  21. #search-box #keywords::-webkit-input-placeholder {
  22. color: #000;
  23. }
  24. #search-box #keywords:-moz-placeholder {
  25. /* Firefox 18- */
  26.  
  27. color: #000;
  28. }
  29. #search-box #keywords::-moz-placeholder {
  30. /* Firefox 19+ */
  31.  
  32. color: #000;
  33. }
  34. #search-box #keywords:-ms-input-placeholder {
  35. color: #000;
  36. }
  37. #search-box .button2 {
  38. border: none;
  39. background: #f0f9ff;
  40. height: 54px;
  41. width: 100px;
  42. color: #000;
  43. opacity: 0;
  44. font-size: 10pt;
  45. -webkit-transition: all .55s ease;
  46. -moz-transition: all .55s ease;
  47. -ms-transition: all .55s ease;
  48. -o-transition: all .55s ease;
  49. transition: all .55s ease;
  50. padding-right: 2px;
  51. padding-left: 2px;
  52. }
  53. #search-box:hover .button2,
  54. #search-box:active .button2,
  55. #search-box:focus .button2 {
  56. outline: none;
  57. opacity: 1;
  58. margin-left: -67px;
  59. }
  60. #search-box:hover .button2:hover {
  61. background: #cccfff;
  62. }
  63. #fa_share_text,
  64. #fa_fb,
  65. #fa_twitter,
  66. #fa_gp,
  67. #fa_mail,
  68. #fa_rss,
  69. #fa_textarea,
  70. #fa_magnifier {
  71. display: none !important;
  72. }
  73. img {
  74. border-style: solid;
  75. border-width: 2px;
  76. border-color: #000;
  77. border-radius: 5px;
  78. margin-bottom: 3px;
  79. }
  80. #logo-desc p {
  81. color: #45290f;
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement