選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

79 行
1.5KB

  1. <html>
  2. <style>
  3. main {
  4. width: 100%;
  5. }
  6. .main-container {
  7. width: 500px;
  8. margin: 0 auto;
  9. }
  10. .title {
  11. font-size: 30px;
  12. background-color: #0070c0;
  13. color: white;
  14. height: 100px;
  15. text-align: center;
  16. letter-spacing: 5px;
  17. }
  18. .title div {
  19. top: 30px;
  20. position: relative;
  21. }
  22. .center {
  23. margin: 0 auto;
  24. }
  25. .qr-container {
  26. margin-top: 100px;
  27. background-color: #0070c0;
  28. padding: 10px;
  29. width: 210;
  30. }
  31. .qr {
  32. width: 200px;
  33. }
  34. .description {
  35. margin-top: 50px;
  36. }
  37. .shop-name {
  38. margin-top: 20px;
  39. font-size: 20px;
  40. font-weight: bold;
  41. }
  42. </style>
  43. <body>
  44. <div class="main-container">
  45. <div class="title center">
  46. <div>
  47. 駐車料金割引券発行QR
  48. </div>
  49. </div>
  50. <div class="qr-container center">
  51. <div class="center qr">
  52. {!! QrCode::size(200)->generate(" http://yahoo.co.jp") !!}
  53. </div>
  54. </div>
  55. <div class="description">
  56. <div>※バーコード読み取り後、お手持ちのスマートフォンに割引QR(URL)</div>
  57. <div>&nbsp;&nbsp;が表示されます。出庫時に精算機にかざして使用して下さい。</div>
  58. </div>
  59. <div class="shop-name">
  60. &lt;ビックボーイ 田無店&gt;
  61. </div>
  62. </div>
  63. </body>
  64. </html>