ayjays132 commited on
Commit
ef4fad5
1 Parent(s): ab20b0f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md CHANGED
@@ -31,6 +31,61 @@ library_name: transformers
31
  margin: 0 0 10px;
32
  color: #666;
33
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  </style>
35
  </head>
36
  <body>
 
31
  margin: 0 0 10px;
32
  color: #666;
33
  }
34
+ body {
35
+ font-family: 'Arial', sans-serif;
36
+ line-height: 1.6;
37
+ margin: 0;
38
+ padding: 20px;
39
+ background-color: #f4f4f4;
40
+ }
41
+
42
+ .model-description {
43
+ background: #ffffff;
44
+ border-radius: 8px;
45
+ padding: 20px;
46
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
47
+ max-width: 800px;
48
+ margin: 20px auto;
49
+ }
50
+
51
+ .code-container {
52
+ background: #1e1e1e;
53
+ color: #dcdcdc;
54
+ border-radius: 8px;
55
+ padding: 20px;
56
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
57
+ max-width: 800px;
58
+ margin: 20px auto;
59
+ overflow-x: auto;
60
+ font-family: 'Courier New', Courier, monospace;
61
+ font-size: 16px;
62
+ line-height: 1.4;
63
+ }
64
+
65
+ code {
66
+ display: block;
67
+ white-space: pre-wrap;
68
+ word-break: break-word;
69
+ }
70
+
71
+ code::before {
72
+ content: " ";
73
+ display: block;
74
+ margin: 0 -20px;
75
+ padding: 10px;
76
+ background: #282c34;
77
+ border-radius: 8px 8px 0 0;
78
+ }
79
+
80
+ code::after {
81
+ content: " ";
82
+ display: block;
83
+ margin: 10px -20px;
84
+ padding: 10px;
85
+ background: #282c34;
86
+ border-radius: 0 0 8px 8px;
87
+ }
88
+
89
  </style>
90
  </head>
91
  <body>