-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
798 lines (574 loc) · 24.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>TeresaClay的小屋</title>
<meta name="keywords" content="">
<meta name="description" content="TeresaClay的小屋">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta property="og:type" content="article">
<meta property="og:title" content="Lec19">
<meta property="og:url" content="https://teresaclay.github.io/2022/08/31/Note_Wangyang/Lec19/index.html">
<meta property="og:site_name" content="TeresaClay的小屋">
<meta property="og:locale" content="en_US">
<meta property="article:published_time" content="2022-08-31T10:13:27.725Z">
<meta property="article:modified_time" content="2022-08-31T10:13:58.587Z">
<meta property="article:author" content="TeresaClay">
<meta name="twitter:card" content="summary">
<link rel="icon" href="/img/Teresa.jpg">
<link href="/css/style.css?v=1.1.0" rel="stylesheet">
<link href="/css/hl_theme/zenbum.css?v=1.1.0" rel="stylesheet">
<link href="//cdn.jsdelivr.net/npm/[email protected]/animate.min.css" rel="stylesheet">
<script src="//cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="/js/titleTip.js?v=1.1.0" ></script>
<script src="//cdn.jsdelivr.net/npm/[email protected]/highlight.pack.min.js"></script>
<script>
hljs.initHighlightingOnLoad();
</script>
<script src="//cdn.jsdelivr.net/npm/[email protected]/nprogress.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/[email protected]/jquery.cookie.min.js" ></script>
<script src="/js/iconfont.js?v=1.1.0" ></script>
<meta name="generator" content="Hexo 6.2.0"></head>
<div style="display: none">
<input class="theme_disqus_on" value="false">
<input class="theme_preload_comment" value="">
<input class="theme_blog_path" value="">
<input id="theme_shortcut" value="true" />
<input id="theme_highlight_on" value="true" />
<input id="theme_code_copy" value="true" />
</div>
<body>
<aside class="nav mobile">
<div class="nav-left">
<a href="/"
class="avatar_target">
<img class="avatar"
src="/img/Teresa.jpg"/>
</a>
<div class="author">
<span>TeresaClay</span>
</div>
<div class="icon">
</div>
<ul>
<li>
<div class="all active" data-rel="All">All
<small>(33)</small>
</div>
</li>
<li>
<div data-rel="工具">
工具
<small>(2)</small>
</div>
</li>
<li>
<div data-rel="Course">
<i class="fold iconfont icon-right"></i>
Course
<small>(28)</small>
</div>
<ul class="sub hide">
<li>
<div data-rel="Course<--->Andreas">
Andreas
<small>(11
)</small>
</div>
</li>
<li>
<div data-rel="Course<--->WangYang">
WangYang
<small>(17
)</small>
</div>
</li>
</ul>
</li>
<li>
<div data-rel="PhD_S4">
PhD_S4
<small>(1)</small>
</div>
</li>
</ul>
<div class="left-bottom">
<div class="menus">
</div>
<div>
</div>
</div>
<input type="hidden" id="yelog_site_posts_number" value="33">
<div style="display: none">
<span id="busuanzi_value_site_uv"></span>
<span id="busuanzi_value_site_pv"></span>
</div>
</div>
<div class="nav-right">
<div class="friends-area">
<div class="friends-title">
Links
<i class="iconfont icon-left"></i>
</div>
<div class="friends-content">
<ul>
</ul>
</div>
</div>
<div class="title-list">
<div class="right-top">
<div id="default-panel">
<i class="iconfont icon-search" data-title="搜索 快捷键 i"></i>
<div class="right-title">All</div>
<i class="iconfont icon-file-tree" data-title="切换到大纲视图 快捷键 w"></i>
</div>
<div id="search-panel">
<i class="iconfont icon-left" data-title="返回"></i>
<input id="local-search-input" autocomplete="off"/>
<label class="border-line" for="input"></label>
<i class="iconfont icon-case-sensitive" data-title="大小写敏感"></i>
<i class="iconfont icon-tag" data-title="标签"></i>
</div>
<div id="outline-panel" style="display: none">
<div class="right-title">大纲</div>
<i class="iconfont icon-list" data-title="切换到文章列表"></i>
</div>
</div>
<div class="tags-list">
<input id="tag-search" />
<div class="tag-wrapper">
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>半离散方程</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>高斯散度定理</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>库</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>散度</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>梯度</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>通量</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>通用形式</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>旋度</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>Cmake</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>g++</a>
</li>
<li class="article-tag-list-item">
<i class="iconfont icon-tag"></i><a>pressure</a>
</li>
</div>
</div>
<nav id="title-list-nav">
<a class="All Course WangYang "
href="/2022/08/31/Note_Wangyang/Lec19/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec19">Lec19</span>
<span class="post-date" title="2022-08-31 12:13:27">2022/08/31</span>
</a>
<a class="All Course WangYang "
href="/2022/08/29/Note_Wangyang/Lec17/"
data-tag="g++,库,Cmake"
data-author="" >
<span class="post-title" title="Lec17 Pressure-Velocity Coupling">Lec17 Pressure-Velocity Coupling</span>
<span class="post-date" title="2022-08-29 16:22:00">2022/08/29</span>
</a>
<a class="All Course WangYang "
href="/2022/08/24/Note_Wangyang/g++/"
data-tag=""
data-author="" >
<span class="post-title" title="g++">g++</span>
<span class="post-date" title="2022-08-24 22:22:25">2022/08/24</span>
</a>
<a class="All Course WangYang "
href="/2022/08/19/Note_Wangyang/Lec16/"
data-tag="g++,库,Cmake"
data-author="" >
<span class="post-title" title="g++, Cmake">g++, Cmake</span>
<span class="post-date" title="2022-08-19 07:48:34">2022/08/19</span>
</a>
<a class="All 工具 "
href="/2022/08/18/%E5%B7%A5%E5%85%B7/Gmsh/"
data-tag=""
data-author="" >
<span class="post-title" title="Gmsh">Gmsh</span>
<span class="post-date" title="2022-08-18 08:50:13">2022/08/18</span>
</a>
<a class="All Course WangYang "
href="/2022/08/15/Note_Wangyang/Lec14/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec14 Convection Term unstructured Grids">Lec14 Convection Term unstructured Grids</span>
<span class="post-date" title="2022-08-15 22:21:05">2022/08/15</span>
</a>
<a class="All PhD_S4 "
href="/2022/08/11/Mass_transfer/Ex/"
data-tag="pressure"
data-author="" >
<span class="post-title" title="Gas absorption and stripping in chemical engineering">Gas absorption and stripping in chemical engineering</span>
<span class="post-date" title="2022-08-11 10:54:17">2022/08/11</span>
</a>
<a class="All Course WangYang "
href="/2022/08/08/Note_Wangyang/%E7%AD%94%E7%96%91/"
data-tag=""
data-author="" >
<span class="post-title" title="答疑">答疑</span>
<span class="post-date" title="2022-08-08 13:55:40">2022/08/08</span>
</a>
<a class="All Course WangYang "
href="/2022/08/05/Note_Wangyang/Lec10/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec10-13 Convection Term">Lec10-13 Convection Term</span>
<span class="post-date" title="2022-08-05 10:04:41">2022/08/05</span>
</a>
<a class="All Course WangYang "
href="/2022/08/02/Note_Wangyang/Lec08/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec08 Gradient computation">Lec08 Gradient computation</span>
<span class="post-date" title="2022-08-02 22:12:16">2022/08/02</span>
</a>
<a class="All 工具 "
href="/2022/08/02/%E5%B7%A5%E5%85%B7/Vim/"
data-tag=""
data-author="" >
<span class="post-title" title="Vim 基本使用">Vim 基本使用</span>
<span class="post-date" title="2022-08-02 13:02:20">2022/08/02</span>
</a>
<a class="All Course WangYang "
href="/2022/07/27/Note_Wangyang/Lec06/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec06-07 The diffusion term">Lec06-07 The diffusion term</span>
<span class="post-date" title="2022-07-27 15:21:06">2022/07/27</span>
</a>
<a class="All Course WangYang "
href="/2022/07/16/Note_Wangyang/Lec05/"
data-tag="散度,梯度,旋度,高斯散度定理"
data-author="" >
<span class="post-title" title="Lec05 The Finite Volume Mesh">Lec05 The Finite Volume Mesh</span>
<span class="post-date" title="2022-07-16 20:43:57">2022/07/16</span>
</a>
<a class="All Course WangYang "
href="/2022/07/14/Note_Wangyang/Lec04/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec04 The Finite Volume Method">Lec04 The Finite Volume Method</span>
<span class="post-date" title="2022-07-14 16:38:06">2022/07/14</span>
</a>
<a class="All Course WangYang "
href="/2022/07/12/Note_Wangyang/Lec03/"
data-tag="半离散方程,通量"
data-author="" >
<span class="post-title" title="Lec03 The Finite Volume Method">Lec03 The Finite Volume Method</span>
<span class="post-date" title="2022-07-12 15:33:21">2022/07/12</span>
</a>
<a class="All Course Andreas "
href="/2022/07/12/Andreas_Malcherek/Lec15/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec15 Die Energiebilanz in der Kontinummsmechanik">Lec15 Die Energiebilanz in der Kontinummsmechanik</span>
<span class="post-date" title="2022-07-12 13:33:10">2022/07/12</span>
</a>
<a class="All Course Andreas "
href="/2022/07/12/Andreas_Malcherek/Lec13/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec13 Innere Spannungen und Cauchygleichungen">Lec13 Innere Spannungen und Cauchygleichungen</span>
<span class="post-date" title="2022-07-12 11:19:36">2022/07/12</span>
</a>
<a class="All Course Andreas "
href="/2022/07/12/Andreas_Malcherek/Lec12/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec12,14 Deformation und Deformationstensor">Lec12,14 Deformation und Deformationstensor</span>
<span class="post-date" title="2022-07-12 10:44:01">2022/07/12</span>
</a>
<a class="All Course Andreas "
href="/2022/07/12/Andreas_Malcherek/Lec11/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec11 Die Druck-Poisson-Gleichung">Lec11 Die Druck-Poisson-Gleichung</span>
<span class="post-date" title="2022-07-12 10:25:47">2022/07/12</span>
</a>
<a class="All Course Andreas "
href="/2022/07/12/Andreas_Malcherek/Lec10/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec10 Stromlinien und Stromfunktion">Lec10 Stromlinien und Stromfunktion</span>
<span class="post-date" title="2022-07-12 09:40:04">2022/07/12</span>
</a>
<a class="All Course Andreas "
href="/2022/07/11/Andreas_Malcherek/Lec9/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec9 Gibt es rotationsfreie Strömungen">Lec9 Gibt es rotationsfreie Strömungen</span>
<span class="post-date" title="2022-07-11 23:39:27">2022/07/11</span>
</a>
<a class="All Course Andreas "
href="/2022/07/11/Andreas_Malcherek/Lec8/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec8 Das d'Almebertsche Paradoxon">Lec8 Das d'Almebertsche Paradoxon</span>
<span class="post-date" title="2022-07-11 23:32:11">2022/07/11</span>
</a>
<a class="All Course Andreas "
href="/2022/07/10/Andreas_Malcherek/Lec6/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec6-7 Hydraudynamische Druckberechnungen">Lec6-7 Hydraudynamische Druckberechnungen</span>
<span class="post-date" title="2022-07-10 20:08:55">2022/07/10</span>
</a>
<a class="All Course Andreas "
href="/2022/07/10/Andreas_Malcherek/Lec4/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec4 Die Potentialströmungen">Lec4 Die Potentialströmungen</span>
<span class="post-date" title="2022-07-10 19:36:35">2022/07/10</span>
</a>
<a class="All Course Andreas "
href="/2022/07/09/Andreas_Malcherek/Lec2/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec2-3 Kontinuitätsgleichung für kompressible Gleichung">Lec2-3 Kontinuitätsgleichung für kompressible Gleichung</span>
<span class="post-date" title="2022-07-09 23:05:59">2022/07/09</span>
</a>
<a class="All Course Andreas "
href="/2022/07/09/Andreas_Malcherek/Lec1/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec1 Lagrangesche Ableitung und Advektion">Lec1 Lagrangesche Ableitung und Advektion</span>
<span class="post-date" title="2022-07-09 22:18:12">2022/07/09</span>
</a>
<a class="All Course WangYang "
href="/2022/07/08/Note_Wangyang/Lec02/"
data-tag="通用形式"
data-author="" >
<span class="post-title" title="Lec02 Mathematical Description of Physical Phenomena">Lec02 Mathematical Description of Physical Phenomena</span>
<span class="post-date" title="2022-07-08 23:12:54">2022/07/08</span>
</a>
<a class="All Course WangYang "
href="/2022/07/08/Note_Wangyang/Lec01/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec01 Vector Calculus">Lec01 Vector Calculus</span>
<span class="post-date" title="2022-07-08 16:02:34">2022/07/08</span>
</a>
<a class="All Course WangYang "
href="/2022/07/08/Note_Wangyang/%E5%AE%89%E8%A3%85%E7%8E%AF%E5%A2%83/"
data-tag=""
data-author="" >
<span class="post-title" title="安装环境">安装环境</span>
<span class="post-date" title="2022-07-08 16:02:34">2022/07/08</span>
</a>
<a class="All Course WangYang "
href="/2022/07/08/Note_Wangyang/%E7%9F%A5%E8%AF%86%E6%8B%93%E5%B1%95/"
data-tag=""
data-author="" >
<span class="post-title" title="拓展知识">拓展知识</span>
<span class="post-date" title="2022-07-08 16:02:34">2022/07/08</span>
</a>
<a class="All Course WangYang "
href="/2022/07/08/Note_Wangyang/Lec00/"
data-tag=""
data-author="" >
<span class="post-title" title="Lec00 Introduction">Lec00 Introduction</span>
<span class="post-date" title="2022-07-08 16:02:34">2022/07/08</span>
</a>
<a class="All "
href="/2022/07/08/Markdown_Note/"
data-tag=""
data-author="" >
<span class="post-title" title="Cheat Sheet">Cheat Sheet</span>
<span class="post-date" title="2022-07-08 08:28:52">2022/07/08</span>
</a>
<a class="All "
href="/2022/07/05/hello-world/"
data-tag=""
data-author="" >
<span class="post-title" title="Hello World">Hello World</span>
<span class="post-date" title="2022-07-05 15:03:00">2022/07/05</span>
</a>
<div id="no-item-tips">
</div>
</nav>
<div id="outline-list">
</div>
</div>
</div>
<div class="hide-list">
<div class="semicircle" data-title="切换全屏 快捷键 s">
<div class="brackets first"><</div>
<div class="brackets">></div>
</div>
</div>
</aside>
<div id="post" class="index">
<div class="pjax">
<article class="index">
<div class="toc-ref">
<ol class="toc"><li class="toc-item toc-level-1"><a class="toc-link" href="#Why-Blog"><span class="toc-text">Why Blog</span></a></li></ol>
<style>
.left-col .switch-btn,
.left-col .switch-area {
display: none;
}
.toc-level-3 i,
.toc-level-3 ol {
display: none !important;
}
</style>
</div>
<h1 id="Why-Blog"><a href="#Why-Blog" class="headerlink" title="Why Blog"></a>Why Blog</h1>
</article>
</div>
<div class="copyright">
<p class="footer-entry">
©2022 TeresaClay
</p>
<p class="footer-entry">Built with <a href="https://hexo.io/" target="_blank">Hexo</a> and <a href="https://github.com/yelog/hexo-theme-3-hexo" target="_blank">3-hexo</a> theme</p>
</div>
</div>
<div class="full-toc">
<button class="full" data-title="切换全屏 快捷键 s"><span class="min "></span></button>
<a class="" id="rocket" ></a>
</div>
</body>
<script src="/js/jquery.pjax.js?v=1.1.0" ></script>
<script src="/js/script.js?v=1.1.0" ></script>
<script>
var img_resize = 'default';
function initArticle() {
/*渲染对应的表格样式*/
$("#post .pjax table").addClass("green_title");
/*渲染打赏样式*/
/*高亮代码块行号*/
$('pre code').each(function(){
var lines = $(this).text().trim().split('\n').length, widther='';
if (lines>99) {
widther = 'widther'
}
var $numbering = $('<ul/>').addClass('pre-numbering ' + widther).attr("unselectable","on");
$(this).addClass('has-numbering ' + widther)
.parent()
.append($numbering);
for(var i=1;i<=lines;i++){
$numbering.append($('<li/>').text(i));
}
});
/*访问数量*/
/*代码高亮,行号对齐*/
$('.pre-numbering').css('line-height',$('.has-numbering').css('line-height'));
}
/*打赏页面隐藏与展示*/
</script>
<!--加入行号的高亮代码块样式-->
<style>
pre{
position: relative;
margin-bottom: 24px;
border-radius: 10px;
border: 1px solid #e2dede;
background: #FFF;
overflow: hidden;
}
code.has-numbering{
margin-left: 30px;
}
code.has-numbering.widther{
margin-left: 35px;
}
.pre-numbering{
margin: 0;
position: absolute;
top: 0;
left: 0;
width: 20px;
padding: 0.5em 3px 0.7em 5px;
border-right: 1px solid #C3CCD0;
text-align: right;
color: #AAA;
background-color: ;
}
.pre-numbering.widther {
width: 35px;
}
</style>
<!--自定义样式设置-->
<style>
.nav {
width: 642px;
}
.nav.fullscreen {
margin-left: -642px;
}
.nav-left {
width: 220px;
}
@media screen and (max-width: 1468px) {
.nav {
width: 592px;
}
.nav.fullscreen {
margin-left: -592px;
}
.nav-left {
width: 200px;
}
}
@media screen and (max-width: 1024px) {
.nav {
width: 592px;
margin-left: -592px
}
.nav.fullscreen {
margin-left: 0;
}
}
@media screen and (max-width: 426px) {
.nav {
width: 100%;
}
.nav-left {
width: 100%;
}
}
.nav-right .title-list nav a .post-title, .nav-right .title-list #local-search-result a .post-title {
color: #383636;
}
.nav-right .title-list nav a .post-date, .nav-right .title-list #local-search-result a .post-date {
color: #5e5e5f;
}
.nav-right nav a.hover, #local-search-result a.hover{
background-color: #e2e0e0;
}
/*列表样式*/
/* 背景图样式 */
/*引用块样式*/
/*文章列表背景图*/
#post .pjax article :not(pre) > code {
color: #24292e;
font-family: SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace;
background-color: rgba(27,31,35,.05);
border-radius: 3px;
font-size: 85%;
margin: 0;
padding: .2em .4em;
}
</style>
</html>