main.scss 873 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. html,body{
  2. margin:0; padding:0;
  3. background-color: #1A1A1A;
  4. }
  5. $debug:true;
  6. $pw:227.41mm;
  7. $ph:207.26mm;
  8. $mt:1cm;
  9. $mb:1cm;
  10. $me:1cm;
  11. $mi:1cm;
  12. #header{
  13. position: fixed;
  14. display: none;
  15. }
  16. #main{
  17. height:$ph;
  18. width:2.001*$pw;
  19. margin:0 auto;
  20. #page-left{
  21. float:left;
  22. // padding:$mt $mi $mb $me;
  23. // background-image: url("../../images/pages/01_anan.jpeg");
  24. background-position: right;
  25. }
  26. #page-right{
  27. float: right;
  28. // padding:$mt $me $mb $mi;
  29. // background-image: url("../../images/pages/02_TH.jpeg");
  30. background-position: left;
  31. }
  32. .page{
  33. @if $debug {
  34. background-color: green;
  35. }
  36. width:$pw;
  37. height:$ph;
  38. background-repeat: no-repeat;
  39. background-size: contain;
  40. .inner{
  41. // display:none;
  42. width:100%; height:100%;
  43. @if $debug {
  44. border: 1px solid blue;
  45. }
  46. }
  47. }
  48. }