mirror of
https://gitlab.com/uldvstar/exchange-2.0.git
synced 2026-08-19 04:24:16 +00:00
40 lines
549 B
PHP
40 lines
549 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<style>
|
|
@font-face {
|
|
font-family: SimHei;
|
|
src: url('{{base_path().'/public/'}}simhei.ttf') format('truetype');
|
|
}
|
|
* {
|
|
font-family: SimHei, serif ;
|
|
}
|
|
.detail-box {
|
|
height: 200px;
|
|
margin-bottom: 50px;
|
|
}
|
|
.float-left {
|
|
width: 50%;
|
|
float: left;
|
|
}
|
|
.float-right {
|
|
width: 50%;
|
|
float: right;
|
|
}
|
|
.bill-box {
|
|
width: 100%;
|
|
}
|
|
.text-right {
|
|
text-align: right;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
@yield('inner_content')
|
|
</body>
|
|
|
|
</html> |