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