Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. .searcharea{
  2. position:absolute;
  3. left:40%;
  4. margin-top:10%;
  5. width: 300px;
  6. vertical-align: middle;
  7. white-space: nowrap;
  8. position: relative;
  9. }
  10. body{
  11. background: #343d46;
  12. }
  13. .area{
  14. margin: 100px auto;
  15. width: 300px;
  16. height: 50px;
  17. }
  18.  
  19. /* Search 1 - bg change*/
  20. .container-1{
  21. width: 300px;
  22. vertical-align: middle;
  23. white-space: nowrap;
  24. position: relative;
  25. }
  26. .container-1 input#search{
  27. width: 300px;
  28. height: 50px;
  29. background: #2b303b;
  30. border: none;
  31. font-size: 10pt;
  32. float: left;
  33. color: #262626;
  34. padding-left: 45px;
  35. -webkit-border-radius: 5px;
  36. -moz-border-radius: 5px;
  37. border-radius: 5px;
  38.  
  39. -webkit-transition: all .55s ease;
  40. -moz-transition: all .55s ease;
  41. -ms-transition: all .55s ease;
  42. -o-transition: all .55s ease;
  43. transition: all .55s ease;
  44. }
  45.  
  46. .container-1 input#search::-webkit-input-placeholder {
  47. color: #65737e;
  48. }
  49. .container-1 input#search:-moz-placeholder { /* Firefox 18- */
  50. color: #65737e;
  51. }
  52. .container-1 input#search::-moz-placeholder { /* Firefox 19+ */
  53. color: #65737e;
  54. }
  55. .container-1 input#search:-ms-input-placeholder {
  56. color: #65737e;
  57. }
  58.  
  59. .container-1 .icon{
  60. position: absolute;
  61. top: 50%;
  62. margin-left: 17px;
  63. margin-top: 17px;
  64. z-index: 1;
  65. color: #4f5b66;
  66. }
  67.  
  68. /* ANIMATION EFFECTS */
  69. .container-1 input#search:focus, .container-1 input#search:active{
  70. outline:none;
  71. background: #ffffff;
  72. }
  73.  
  74. #abc{
  75. width:60%;
  76. height:60%;
  77. opacity:1;
  78. top:10%;
  79. left:10%;
  80. display:none;
  81. position:fixed;
  82. border: 1px;
  83. overflow:auto;
  84. background-color:#FFFFFF;
  85.  
  86. }
  87.  
  88.  
  89. div#popupContact {
  90. position:absolute;
  91. left:50%;
  92. top:17%;
  93. margin-left:-202px;
  94. font-family:'Raleway',sans-serif
  95. }
  96.  
  97. #selectYear{vertical-align:center;}
  98.  
  99. #popup{text-decoration:underline; cursor:pointer;}
  100.  
  101. #xbutton{float:right; display:block; position:relative;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement