Advertisement
RyanJEarnshaw

Untitled

Sep 21st, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. #persontable, #teamstable {
  2. display: inline-block;
  3. transition: 0.4s ease;
  4. width: 45%;
  5. height: auto;
  6. text-align: center;
  7. float: middle;
  8. margin: auto;
  9. margin: 2% 2% 0;
  10.  
  11. border: 1px solid #FF4646;
  12. background-color: #FF4646;
  13. }
  14.  
  15. .item {
  16. transition: 0.4s ease;
  17. width: 100%;
  18. display: flex;
  19. float: left;
  20. border: 1px solid #FF4646;
  21. background-color: rgba(255,100,100,1);
  22. }
  23.  
  24.  
  25. .topitem{
  26. background-color: rgba(255,1,1,0.4);
  27. }
  28. /*Top Image*/
  29. .topitem .image .circle {
  30. margin: 10px 0px;
  31. width: 15vh;
  32. height: 15vh;
  33. }
  34. .image {
  35. margin: 5px 0px;
  36. }
  37.  
  38. .circle {
  39. width: 7vh;
  40. height: 7vh;
  41. border-radius: 50%;
  42. color: #fff;
  43. text-align: center;
  44. background-color: #989a8f;;
  45. overflow: hidden;
  46. margin: auto;
  47. }
  48. .circle img {
  49. width: auto;
  50. height: inherit;
  51. color: #fff;
  52. text-align: center;
  53. background-color: #989a8f;
  54. }
  55.  
  56. .name, .image, .points {
  57. vertical-align:middle;
  58. float: left;
  59. width: 32%;
  60. display: flex;
  61. align-items: center;
  62. justify-content: center;
  63. }
  64. .position, .trophy {
  65. vertical-align:middle;
  66. float: left;
  67. width: 4%;
  68. display: flex;
  69. align-items: center;
  70. justify-content: center;
  71. background-color: #FF4646;
  72. }
  73.  
  74. .item:hover {
  75. background-color: #FFF842;
  76. font-weight: bold;
  77. box-shadow: #7F7C21 -1px 1px, #7F7C21 -2px 2px, #7F7C21 -3px 3px, #7F7C21 -4px 4px, #7F7C21 -5px 5px, #7F7C21 -6px 6px;
  78. transform: translate3d(6px, -6px, 0);
  79. transition-delay: 0s;
  80. transition-duration: 0.4s;
  81. transition-property: all;
  82. transition-timing-function: line;
  83. }
  84.  
  85. .topcontainer {
  86. display: block;
  87. transition: 0.4s ease;
  88. width: 100%;
  89. height: 27vh;
  90. }
  91. .topcontainer .image {
  92. vertical-align:middle;
  93. float: left;
  94. width: 100%;
  95. }
  96.  
  97. .topcontainer .name{
  98. font-size: 60px;
  99. vertical-align:middle;
  100. float: middle;
  101. width: 100%;
  102. }
  103. .trophy .trophyimage {
  104. display: flex;
  105. display: inline-block;
  106. }
  107. .topitem .position, .topitem .trophy {
  108. width: 30%;
  109. }
  110. .trophyimage img, .trophyimage {
  111. vertical-align:middle;
  112. float: middle;
  113. width: 82%;
  114. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement