Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. .glassy {
  2. background: linear-gradient(150deg, rgba(230, 230, 230, 0.2) 30%, rgba(0, 208, 255, 0.25));
  3. border: 1px solid;
  4. border-color: rgba(203, 246, 255, 0.9);
  5. border-radius: .1rem;
  6. padding: 7px;
  7. display: block;
  8. width: 100%;
  9. margin: 7px;
  10. transition-duration: 0.5s;
  11. background-color: transparent;
  12. text-decoration: none;
  13. text-decoration-color: currentcolor;
  14. text-decoration-line: none;
  15. text-decoration-style: solid;
  16. color: rgba(203, 246, 255, 1);
  17. }
  18. .glassy:hover {
  19. background-color: rgba(0, 208, 255, 0.2);
  20. border-color: white;
  21. color: white;
  22. transform: translateY(-3px);
  23. box-shadow: 0px 2px 10px 0px rgba(0,0,20,0.4);
  24. }
  25. .glassy:active {
  26. background-color: rgba(255, 255, 255, 0.7);
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement