2023-04-28 12:22:26 +08:00

65 lines
1.5 KiB
Plaintext

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Print.aspx.cs" Inherits="Print" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Print</title>
<link rel="stylesheet" href="<%=GetFileUrlWithVersion("css/default.css")%>" type="text/css" />
<style>
table {
border-collapse: collapse;
width: 98%;
}
.inptable {
width: 100%;
}
.inptable tr td {
border: none;
padding-left: 0px;
padding-right: 0px;
}
.media {
width: 120px;
height: 120px;
margin-top: 5px;
margin-bottom: 10px;
margin-right: 10px;
cursor: pointer;
border: 1px solid #b0b0b0;
border-radius: 2px;
box-shadow: rgba(0, 0, 0, 0.4);
text-align: center;
float: left;
}
.video {
line-height: 120px;
font-size: 30px;
margin: 0 auto;
font-family: 'Fontawesome';
}
.video::before {
content: '\f03d';
}
</style>
<%=Styles %>
<script type="text/javascript">
function doprint() {
window.print();
}
</script>
</head>
<body onload="doprint()">
<form id="form1" runat="server">
<div style="padding: 20px;">
<%=PrintContent %>
</div>
</form>
</body>
</html>