Guest User

Untitled

a guest
Mar 6th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. .portrait {
  2. position: relative;
  3. width: 497px;
  4. height: 569px;
  5. font-family: 'Roboto', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  6. }
  7.  
  8. .portrait img {
  9. opacity: 0.6;
  10. transition: .5s ease;
  11. -moz-border-radius: 10px;
  12. -webkit-border-radius: 10px;
  13. border-radius: 10px;
  14. }
  15.  
  16. .portrait:hover img {
  17. opacity: 1;
  18. }
  19.  
  20. .portrait .reward {
  21. transition: .5s ease;
  22. opacity: 0.8;
  23. position: absolute;
  24. top: 20%;
  25. left: 50%;
  26. width: 80%;
  27. padding: 20px;
  28. transform: translate(-50%, -50%);
  29. -ms-transform: translate(-50%, -50%);
  30. -moz-border-radius: 10px;
  31. -webkit-border-radius: 10px;
  32. border-radius: 10px;
  33. background-color: #fff;
  34. font-family: 'Roboto', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  35. font-size: 48px;
  36. text-align: center;
  37. }
  38.  
  39. .portrait:hover .reward {
  40. opacity: 0;
  41. }
  42.  
  43. .portrait .reward span {
  44. color: orange;
  45. font-weight: bold;
  46. }
  47.  
  48. .portrait .name {
  49. transition: .5s ease;
  50. position: absolute;
  51. top: 55%;
  52. left: 50%;
  53. transform: translate(-50%, -50%);
  54. -ms-transform: translate(-50%, -50%);
  55. font-size: 64px;
  56. color: white;
  57. }
  58.  
  59. .portrait:hover .name {
  60. top: 80%;
  61. font-size: 32px;
  62. }
Add Comment
Please, Sign In to add comment