RyanJEarnshaw

Untitled

Sep 29th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. #content {
  2. width: 90%;
  3. }
  4.  
  5. hr {
  6. margin: 10px auto;
  7. width: 80%;
  8. float: middle;
  9. }
  10.  
  11.  
  12. /*Building content*/
  13.  
  14. .teamscontainer {
  15. position: relative;
  16. margin: auto;
  17. float: left;
  18. width: 100%;
  19. margin-bottom: 20%;
  20. }
  21. .teams {
  22. display: flex;
  23. position: relative;
  24. margin: auto;
  25. width: 90%;
  26. justify-content: center;
  27. }
  28. .team {
  29. float: left;
  30. width: 15%;
  31. }
  32. .team .image {
  33. background-color: white;
  34. display: inline-block;
  35. position: relative;
  36. border: 4px solid purple;
  37. width: 8vw;
  38. height: 8vw;
  39. overflow: hidden;
  40. border-radius: 50%;
  41. }
  42. .memberscontainer {
  43. position: relative;
  44. transition: 1s ease;
  45. float: left;
  46. height: 0%;
  47. background-color: black;
  48. width: 100%;
  49. }
  50. .memberscontainer .mc2, .memberscontainer .mc3, .memberscontainer .mc4, .memberscontainer .mc5, .memberscontainer .mc6 {
  51. -webkit-transition: 1s;
  52. -moz-transition: 1s;
  53. -ms-transition: 1s;
  54. transition: 1s;
  55. margin-left: 0;
  56. }
  57. .mc1 { background-color: black; }
  58. .mc1.expandedheight { height: 140%; }
  59. .mc1.expandedwidth{ width: 600%; }
  60.  
  61.  
  62. .mc2 { background-color: purple; }
  63. .mc2.expandedheight { height: 140%; }
  64. .mc2.expandedwidth{ width: 600%; margin-left:-100%;}
  65.  
  66.  
  67. .mc3 { background-color: grey; }
  68. .mc3.expandedheight { height: 140%; }
  69. .mc3.expandedwidth{ width: 600%; margin-left:-200%;}
  70.  
  71.  
  72. .mc4 { background-color: plum; }
  73. .mc4.expandedheight { height: 140%; }
  74. .mc4.expandedwidth{ width: 600%; margin-left:-300%;}
  75.  
  76.  
  77. .mc5 { background-color: lightsalmon; }
  78. .mc5.expandedheight { height: 140%; }
  79. .mc5.expandedwidth{ width: 600%; margin-left:-400%;}
  80.  
  81.  
  82. .mc6 { background-color: indianred; }
  83. .mc6.expandedheight { height: 140%; }
  84. .mc6.expandedwidth{ width: 600%; margin-left:-500%; }
  85.  
  86. /*
  87. .team1 .image { border: 4px solid purple; }
  88. .team2 .image { border: 4px solid blue; }
  89. .team3 .image { border: 4px solid grey; }
  90. .team4 .image { border: 4px solid yellow; }
  91. .team5 .image { border: 4px solid red; }
  92. .team6 .image { border: 4px solid orange; }
  93. */
  94.  
  95. .team .image img {
  96. margin-left: -17%; /*delete me for default*/
  97. width: auto;
  98. height: 90%; /*100*/
  99. }
Advertisement
Add Comment
Please, Sign In to add comment