Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. <form class=" sign">
  2. <div class="container first">
  3. <ul class="Header-social list-inline right">
  4. <li>
  5. <li><icon class="icon-contact email-icon icon-color" ></icon></li>
  6. <li id="sign-title"><strong>SIGN UP</strong></li>
  7. </li>
  8. </ul>
  9. </div>
  10. <div class="container second">
  11. <input type="email" class=" email-input" id="email" placeholder="Email address">
  12. <button type="submit" class=" email-btn" id="signUp-btn">JOIN</button>
  13. <div id="warning">
  14. Invalid email address
  15. </div>
  16. </div>
  17. </form>
  18.  
  19. .icon-color{
  20. color:@pink;
  21. font-size: 0.8em;
  22. font-weight: bold;
  23. }
  24.  
  25. #warning{
  26. display:none;
  27. color:@black;
  28. font-size: 8pt;
  29. padding-left:6px;
  30. }
  31.  
  32. .email-error{
  33. background:@gray-menu;
  34. color:@red;
  35. border-top:solid red 1px;
  36. border-bottom:solid red 1px;
  37. border-left:solid red 1px;
  38. text-align: center;
  39. width:140px;
  40. height:25px;
  41. font-size:7pt;
  42. }
  43.  
  44. .email-btn{
  45. background:@pink;
  46. color:white;
  47. border:none;
  48. width:40px;
  49. height:25px;
  50. font-size:8pt;
  51. text-align: center;
  52. position:fixed;
  53. }
  54.  
  55. .email-input{
  56. background:@gray-menu;
  57. color:@black;
  58. text-align:left;
  59. width:140px;
  60. height:25px;
  61. font-size:7pt;
  62. padding:8px;
  63. border:1px solid @gray-menu-border !important;
  64. position:relative;
  65. }
  66.  
  67. .sign{
  68. height:50px;
  69. width:200px;
  70. cursor:pointer;
  71. margin:50px 600px;
  72. cursor: pointer;
  73. color:@pink;
  74. }
  75.  
  76. .first{
  77. height: 25pt ;
  78. font-size: 1em;
  79. color:@pink;
  80. padding:10px;
  81. margin:0px;
  82. }
  83.  
  84.  
  85. .second{
  86. height: 25pt ;
  87. display:none;
  88. font-size: 1em;
  89. margin:0px;
  90. z-index:999999;
  91. }
  92.  
  93. .sign:hover .second{
  94. display:block;
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement