Guest User

Untitled

a guest
Jul 16th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. #whatever
  2. {
  3. position: relative;
  4.  
  5. overflow: hidden;
  6.  
  7. width: 100%;
  8. }
  9.  
  10. #whatever .heading
  11. {
  12. padding-bottom: 25px;
  13. }
  14.  
  15. #whatever .heading ul
  16. {
  17. display: -moz-flex;
  18. display: -ms-flex;
  19. display: -o-flex;
  20. display: flex;
  21. display: -ms-flexbox;
  22. /*IE10*/
  23.  
  24. justify-content: center;
  25. -ms-flex-pack: center;
  26. /*--- IE10 ---*/
  27. }
  28.  
  29. #whatever .heading ul li
  30. {
  31. margin: 0 5px;
  32. }
  33.  
  34. #whatever .heading ul li figure
  35. {
  36. position: relative;
  37.  
  38. overflow: hidden;
  39.  
  40. width: 640px;
  41. height: 260px;
  42. }
  43.  
  44. #whatever .heading ul li figure img
  45. {
  46. position: absolute;
  47. top: 50%;
  48. left: 50%;
  49.  
  50. width: 100%;
  51. height: auto;
  52.  
  53. -webkit-transform: translate(-50%, -50%);
  54. transform: translate(-50%, -50%);
  55. }
  56.  
  57. #whatever .heading ul li h2
  58. {
  59. font-weight: bold;
  60.  
  61. margin-top: 15px;
  62. }
  63.  
  64. #whatever .heading ul li h2 .sub
  65. {
  66. font-size: 12px;
  67. font-weight: normal;
  68.  
  69. box-sizing: border-box;
  70. padding: 5px;
  71.  
  72. color: #fd5c63;
  73. border: 1px solid #fd5c63;
  74. }
  75.  
  76. #whatever .heading ul li h2 .ttl
  77. {
  78. font-size: 20px;
  79.  
  80. display: block;
  81.  
  82. margin-top: 15px;
  83. }
  84.  
  85. #whatever .heading ul li .category
  86. {
  87. font-size: 12px;
  88.  
  89. margin-top: 10px;
  90.  
  91. color: #caccd1;
  92. }
Add Comment
Please, Sign In to add comment