section.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #start{
  2. div:nth-child(n+3){
  3. display: flex;
  4. & > div{
  5. width: 50%;
  6. height: 100vh;
  7. overflow: auto;
  8. &:first-child{
  9. display: flex;
  10. background-image: linear-gradient(#98272D, #4f100B);
  11. .chap{
  12. margin: auto;
  13. text-align: center;
  14. }
  15. }
  16. }
  17. }
  18. .content{
  19. p{
  20. text-align: center;
  21. margin-bottom: 15px;
  22. }
  23. }
  24. .grav-youtube{
  25. margin: 0;
  26. }
  27. #home{
  28. display: flex;
  29. .visu-album{
  30. position: absolute;
  31. }
  32. .title{
  33. z-index: 999;
  34. height: 100vh;
  35. width: 100%;
  36. display: flex;
  37. flex-wrap: wrap;
  38. h1{
  39. width: 100vw;
  40. margin: auto;
  41. text-transform: uppercase;
  42. text-align: center;
  43. }
  44. p{
  45. position: absolute;
  46. text-align: center;
  47. width: 500px;
  48. left: 50%;
  49. margin-left: -250px;
  50. top: 77%;
  51. }
  52. }
  53. }
  54. #biographie, #prochaine_date{
  55. .content{
  56. padding: 100px;
  57. p:last-child{
  58. margin-bottom: 100px;
  59. }
  60. }
  61. }
  62. }