Advertisement
gonunex

wufoo

Oct 19th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.61 KB | None | 0 0
  1. .wufoo .info h2 {
  2.   display: none;
  3. }
  4.  
  5. .wufoo .info {
  6.   border-bottom: none;
  7. }
  8.  
  9. input.text {
  10.     -webkit-border-radius: 5px;
  11.     -moz-border-radius: 5px;
  12.     border-radius: 5px;
  13.     padding: 8px;
  14. }
  15.  
  16. .wufoo label.desc {
  17.     display: none;
  18. }
  19.  
  20. .wufoo input.btTxt {
  21.     color: white;
  22.     padding: 8px 24px;
  23.     border-radius: 4px;
  24.     background: #1EDD88;
  25.     transition: background 0.3s ease;
  26. }
  27.  
  28. .wufoo input.btTxt:hover {
  29.     background: #1BCB7F;
  30.     color: white;
  31. }
  32.  
  33. #container, html.embed {
  34.     background-color: #00000000;
  35. }
  36.  
  37. .wufoo li.focused {
  38.     background-color: #00000000 !important;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement