Advertisement
RyanJEarnshaw

Untitled

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