Guest User

Untitled

a guest
Dec 17th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. /*トップページおすすめ*/
  2. #pickup{
  3. display:flex;
  4. flex-direction: row;
  5. flex-wrap: wrap;
  6. justify-content: space-between;
  7. margin-top:0.5em;
  8. margin-bottom:2em;
  9. }
  10. #pickup .pickup_post{
  11. width:24%;
  12. }
  13. @media only screen and (max-width: 767px) {
  14. #pickup .pickup_post{
  15. width:48%;
  16. margin-bottom:1em;
  17. }
  18. }
  19. #pickup .pickup_post a img{
  20. box-img_border: 0 0 3px 0 rgba(0,0,0,.12), 0 2px 3px 0 rgba(0,0,0,.22);
  21. border-radius:2px;
  22. transition: .3s ease-in-out;
  23. }
  24. #pickup .pickup_post a img:hover{
  25. box-img_border: 0 13px 20px -3px rgba(0,0,0,.24);
  26. }
  27.  
  28. /*トップページの見出し*/
  29. h2.top_menu {
  30. border-left:none;
  31. background-color:#fff;
  32. color:#000;
  33. overflow: hidden;
  34. text-align: center;
  35. }
  36. h2.top_menu span {
  37. position: relative;
  38. display: inline-block;
  39. margin: 0 2.5em;
  40. padding: 0 1em;
  41. text-align: left;
  42. }
  43. h2.top_menu span::before,
  44. h2.top_menu span::after {
  45. position: absolute;
  46. top: 50%;
  47. content: '';
  48. width: 400%;
  49. height: 1px;
  50. background-color: #000;
  51. }
  52. h2.top_menu span::before {
  53. right: 100%;
  54. }
  55. h2.top_menu span::after {
  56. left: 100%;
  57. }
  58. @media only screen and (max-width: 767px) {
  59. h2.top_menu {
  60. font-size:1em;
  61. }
  62. }
Add Comment
Please, Sign In to add comment