FormUpload.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .buttons {
  2. width: 180px;
  3. height: 40px;
  4. text-decoration: none;
  5. padding-top: 9px;
  6. color: #c9b6cf;
  7. text-align: center;
  8. line-height: 20px;
  9. display: block;
  10. margin: 200px auto 15px;
  11. font: normal 17px arial;
  12. cursor: pointer;
  13. }
  14. .buttons:not(.active) {
  15. box-shadow: inset 0 1px 1px rgba(111, 55, 125, 0.8), inset 0 -1px 0px rgba(63, 59, 113, 0.2),
  16. 0 9px 16px 0 rgba(0, 0, 0, 0.3), 0 4px 3px 0 rgba(0, 0, 0, 0.3), 0 0 0 1px #150a1e;
  17. background-image: linear-gradient(#3b2751, #271739);
  18. text-shadow: 0 0 21px rgba(223, 206, 228, 0.5), 0 -1px 0 #311d47;
  19. }
  20. .buttons:not(.active):hover,
  21. .buttons:not(.active):focus {
  22. transition: color 200ms linear, text-shadow 500ms linear;
  23. color: #fff;
  24. text-shadow: 0 0 21px rgba(223, 206, 228, 0.5), 0 0 10px rgba(223, 206, 228, 0.4), 0 0 2px #2a153c;
  25. }
  26. .buttons:not(:hover) {
  27. transition: 0.6s;
  28. }
  29. .back a {
  30. text-decoration: none;
  31. }
  32. .back {
  33. display: block;
  34. width: 100px;
  35. height: 20px;
  36. text-decoration: none;
  37. color: #c9b6cf;
  38. text-align: center;
  39. margin: auto;
  40. cursor: pointer;
  41. }