Guest User

Untitled

a guest
Nov 15th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <div id="gym" class="main_container">
  2. <div id="gym_activity_title_hours_pic" class="activity_title_hours_pic">
  3. <!-- <div id="gym_title_hours" class="activity_title_hours"> -->
  4. <div id="gym_title" class="activity_title">
  5. The Gym
  6. </div>
  7. <div id="gym_hours" class="activity_hours">
  8. 5 Hours
  9. </div>
  10. <!-- </div> -->
  11. <div id="gym_pic" class="activity_pic">
  12. <img src="./images/gym.jpg" class="pic"/>
  13. </div>
  14. </div>
  15. </div>
  16.  
  17. .main_container {
  18. width: 40%;
  19. height: 40%;
  20. display: inline;
  21. margin-left: auto;
  22. margin-right: auto;
  23. overflow: hidden;
  24. }
  25.  
  26. .activity_title_hours_pic {
  27. display: inline;
  28. }
  29.  
  30. .activity_title_hours {
  31. float: left;
  32. width: 50%;
  33. }
  34.  
  35. .activity_title {
  36. /* float: left; */
  37. float: left;
  38. width: 50%;
  39. }
  40.  
  41. .activity_hours {
  42. /* float: left; */
  43. float: left;
  44. width: 50%;
  45. }
  46.  
  47. .activity_pic {
  48. float:right;
  49. width: 50%;
  50. }
  51. .pic {
  52. box-sizing: border-box;
  53. margin-top: 1%;
  54. height: 10%;
  55. width: 10%;
  56. margin-left: auto;
  57. margin-right: auto;
  58. border-radius: 6px;
  59. background-repeat:no-repeat;
  60. background-size:cover;
  61. }
Add Comment
Please, Sign In to add comment