welcome.blade.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!doctype html>
  2. <html lang="{{ config('app.locale') }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>True | False</title>
  8. <!-- Fonts -->
  9. <link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
  10. <link rel="shortcut icon" href="{{ asset('img/ico.ico') }}">
  11. <!-- Styles -->
  12. <style type="text/css" rel="stylesheet">
  13. *{ margin:0; padding:0; border:0; outline:0; vertical-align:baseline; background:transparent; }
  14. input, textarea{margin:0; padding:0; font-size:100%; vertical-align:middle;box-sizing: border-box;word-wrap: break-word;}
  15. article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{display:block;}
  16. ol, ul, li { list-style:none;}
  17. :focus {outline:0;}
  18. ins{ text-decoration: none; }
  19. del{ text-decoration: line-through; }
  20. /* tables still need 'cellspacing="0"' in the markup */
  21. table{border-collapse:collapse; border-spacing: 0;}
  22. body { background:#fff; font:12px/2.0 微软雅黑,arial,sans-serif; color:#333; padding-bottom:20px; -webkit-text-size-adjust: none; text-size-adjust: none;}
  23. a{text-decoration:none; color:#333;}
  24. input,select,img{vertical-align:middle;}
  25. .box{padding: 10px;font-size: 14px;max-width: 640px;min-width:320px;margin: 0 auto;}
  26. p img{max-width:100%;}
  27. .title_text{text-align:center;}
  28. </style>
  29. </head>
  30. <body>
  31. <div class="box">
  32. <div class="title_text">
  33. <div class="title m-b-md">
  34. ...
  35. </div>
  36. <div class="text_content">
  37. <div id="qr" class="title m-b-md">
  38. {{-- <img src="{{ asset( "img/p.jpg" ) }}" width="300" height="300" alt="">--}}
  39. </div>
  40. </div>
  41. <div style="padding: 0 40px;">
  42. </div>
  43. </div>
  44. </div>
  45. </body>
  46. </html>