Advertisement
RyanJEarnshaw

Untitled

Sep 28th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. hr {
  2. margin: 10px auto;
  3. width: 80%;
  4. float: middle;
  5. }
  6.  
  7.  
  8. #tables {
  9. position: relative;
  10. width: 100%;
  11. }
  12.  
  13. .table {
  14. display: inline-block;
  15. margin: auto;
  16. float: middle;
  17. width: 45%;
  18. }
  19.  
  20. .table1 { background-color: rgba(255,0,0,0.5); }
  21. .table2 { background-color: rgba(255,255,0,0.5); }
  22.  
  23. .table .heading, .table .captains {
  24. width: 100%;
  25. margin-bottom: 2%;
  26. }
  27. .heading {
  28. font-family: 'Raleway', sans-serif;
  29. font-weight: 100;
  30. font-size: 3vmin;
  31. }
  32. @import url('https://fonts.googleapis.com/css?family=Raleway:100,200,300,400');
  33. @import url('http://fonts.googleapis.com/css?family=Roboto');
  34. @import url('https://fonts.googleapis.com/css?family=Lobster+Two');
  35. @import url('http://weloveiconfonts.com/api/?family=entypo');
  36. @import url('https://fonts.googleapis.com/css?family=Amatic+SC:400,700');
  37. @import url('https://fonts.googleapis.com/css?family=Gloria+Hallelujah');
  38. @import url('https://fonts.googleapis.com/css?family=Satisfy');
  39. @import url('https://fonts.googleapis.com/css?family=Tillana');
  40. @import url('https://fonts.googleapis.com/css?family=Handlee');
  41.  
  42. .captains {
  43. font-family: 'Gloria Hallelujah', sans-serif;
  44. font-size: 1.5vmin;
  45. padding-top: 2%;
  46. display: inline-block;
  47. position: relative;
  48. }
  49. .captain {
  50. float:left;
  51. display: inline-block;
  52. width: 50%;
  53. }
  54. .captainimage {
  55. background-color: white;
  56. display: inline-block;
  57. position: relative;
  58. border: 4px solid purple;
  59. width: 10vw;
  60. height: 10vw;
  61. overflow: hidden;
  62. border-radius: 50%;
  63. }
  64. .captainimage img {
  65. width: auto;
  66. height: 100%;
  67. }
  68.  
  69. .members {
  70. width: 100%;
  71. }
  72. .member {
  73. font-family: 'Raleway', sans-serif;
  74. font-size: 1.4vmin;
  75. width: 30%;
  76. background-color: white;
  77. display: inline-block;
  78. position: relative;
  79. float: middle;
  80. margin-bottom: 10%;
  81. }
  82. .member img{
  83. width: 90%;
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement