Advertisement
Guest User

Untitled

a guest
May 4th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. .inputfile {
  2. width: 0.1px;
  3. height: 0.1px;
  4. opacity: 0;
  5. overflow: hidden;
  6. position: absolute;
  7. z-index: -1;
  8. }
  9. .inputfile + label {
  10. font-size: 1.25em;
  11. font-weight: 700;
  12. color: white;
  13. background-color: #8e9291;
  14. display: inline-block;
  15. padding: 5px;
  16. border-radius:5px;
  17.  
  18. transition: background-color 0.5s ease;
  19. }
  20.  
  21. .inputfile:focus + label,
  22. .inputfile + label:hover {
  23. background-color: #dd7500;
  24. }
  25.  
  26. .inputfile + label {
  27. cursor: pointer; /* "hand" cursor */
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement