1
0
mirror of https://github.com/rudollee/LearningMVC.git synced 2025-06-07 07:56:14 +00:00
2017-04-18 03:33:17 +09:00

29 lines
1.0 KiB
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title</title>
<style type="text/css">
label {display: inline-block; width: 100px;}
div.dateElem {margin: 5px;}
h2 > label { width: inherit;}
.editor-label, .editor-field {float: left; margin-top: 10px;}
.editor-field input { height: 20px; }
.editor-label { clear: left;}
.editor-field { margin-left: 10px; }
input[type=submit] { float: left; clear: both; margin-top: 10px;}
.column { float: left; margin: 10px;}
table, td, th {border: thin solid black; border-collapse: collapse;
padding: 5px; background-color: lemonchiffon;
text-align: left; margin: 10px 0;}
div.load { color: red; margin: 10px 0; font-weight: bold; }
div.ajaxLink { margin-top: 10px; margin-right: 5px; float: left; }
</style>
<script src="~/Scripts/jquery-1.10.2.js"></script>
<script src="~/Scripts/jquery.unobtrusive-ajax.js"> </script>
</head>
<body>
@RenderBody()
</body>
</html>