Advertisement
RyanJEarnshaw

Untitled

Sep 28th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. #tables {
  2. position: relative;
  3. width: 100%;
  4. }
  5.  
  6. .table {
  7. display: inline-block;
  8. margin: auto;
  9. float: middle;
  10. width: 45%;
  11. }
  12.  
  13. .table1 { background-color: rgba(255,0,0,0.5); }
  14. .table2 { background-color: rgba(255,255,0,0.5); }
  15.  
  16. .table .heading, .table .captains {
  17. width: 100%;
  18. margin-bottom: 2%;
  19. }
  20. .heading {
  21. font-family: 'Roboto', sans-serif;
  22. font-size: 3vmin;
  23. }
  24. .captains {
  25. font-family: 'Raleway', sans-serif;
  26. font-size: 2vmin;
  27. padding-top: 2%;
  28. background-color: rgba(255,0,0,0.5);
  29. display: inline-block;
  30. position: relative;
  31. }
  32. .captain {
  33. float:left;
  34. display: inline-block;
  35. width: 50%;
  36. }
  37. .captainimage {
  38. background-color: white;
  39. display: inline-block;
  40. position: relative;
  41. width: 10vw;
  42. height: 10vw;
  43. overflow: hidden;
  44. border-radius: 50%;
  45. }
  46. .captainimage img {
  47. width: auto;
  48. height: 100%;
  49. }
  50.  
  51. .members {
  52. width: 100%;
  53. }
  54. .member {
  55. font-family: 'Roboto', sans-serif;
  56. font-size: 1.4vmin;
  57. width: 30%;
  58. background-color: white;
  59. display: inline-block;
  60. position: relative;
  61. float: middle;
  62. margin-bottom: 10%;
  63. }
  64. .member img{
  65. width: 90%;
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement