Update README.md
Browse files
README.md
CHANGED
|
@@ -85,9 +85,38 @@ code::after {
|
|
| 85 |
background: #282c34;
|
| 86 |
border-radius: 0 0 8px 8px;
|
| 87 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 89 |
</style>
|
| 90 |
-
</head>
|
| 91 |
<body>
|
| 92 |
|
| 93 |
<div class="model-description">
|
|
|
|
| 85 |
background: #282c34;
|
| 86 |
border-radius: 0 0 8px 8px;
|
| 87 |
}
|
| 88 |
+
body {
|
| 89 |
+
font-family: 'Arial', sans-serif;
|
| 90 |
+
line-height: 1.6;
|
| 91 |
+
margin: 0;
|
| 92 |
+
padding: 20px;
|
| 93 |
+
background-color: #f4f4f4;
|
| 94 |
+
}
|
| 95 |
+
|
| 96 |
+
.code-container {
|
| 97 |
+
background: #1e1e1e;
|
| 98 |
+
color: #dcdcdc;
|
| 99 |
+
border-radius: 8px;
|
| 100 |
+
padding: 20px;
|
| 101 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
| 102 |
+
max-width: 800px;
|
| 103 |
+
margin: 20px auto;
|
| 104 |
+
overflow-x: auto;
|
| 105 |
+
font-family: 'Courier New', Courier, monospace;
|
| 106 |
+
font-size: 16px;
|
| 107 |
+
line-height: 1.4;
|
| 108 |
+
}
|
| 109 |
+
|
| 110 |
+
pre {
|
| 111 |
+
margin: 0;
|
| 112 |
+
}
|
| 113 |
|
| 114 |
+
code {
|
| 115 |
+
display: block;
|
| 116 |
+
white-space: pre-wrap;
|
| 117 |
+
word-break: break-word;
|
| 118 |
+
}
|
| 119 |
</style>
|
|
|
|
| 120 |
<body>
|
| 121 |
|
| 122 |
<div class="model-description">
|