@toheeb/base 1.0.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/base-settings.js +5 -3
- package/base.css +165 -51
- package/base.html +238 -0
- package/package.json +1 -1
package/README.md
ADDED
package/base-settings.js
CHANGED
|
@@ -127,7 +127,7 @@ class BaseSettings extends HTMLElement {
|
|
|
127
127
|
._bs form {
|
|
128
128
|
display: grid;
|
|
129
129
|
width: 100%;
|
|
130
|
-
gap: var(--bbg);
|
|
130
|
+
gap: calc(.5 * var(--bbg));
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
._bs p {
|
|
@@ -135,7 +135,7 @@ class BaseSettings extends HTMLElement {
|
|
|
135
135
|
display: flex;
|
|
136
136
|
flex-flow: row wrap;
|
|
137
137
|
justify-content: space-between;
|
|
138
|
-
gap: calc(.75 * var(--bbg));
|
|
138
|
+
gap: calc(.25 * var(--bbg)) calc(.75 * var(--bbg));
|
|
139
139
|
}
|
|
140
140
|
|
|
141
141
|
._bs .fields label:not([hidden]) {
|
|
@@ -148,7 +148,9 @@ class BaseSettings extends HTMLElement {
|
|
|
148
148
|
font-size: calc(var(--bfs-075) * 1rem);
|
|
149
149
|
}
|
|
150
150
|
|
|
151
|
-
._bs .fields input
|
|
151
|
+
._bs .fields input,
|
|
152
|
+
._bs .fields select
|
|
153
|
+
{
|
|
152
154
|
width: 100%;
|
|
153
155
|
}
|
|
154
156
|
</style>
|
package/base.css
CHANGED
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
box-sizing: border-box;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
+
::picker(select) {
|
|
20
|
+
/* 1 */
|
|
21
|
+
border-radius: var(--base-corner-radius);
|
|
22
|
+
}
|
|
19
23
|
|
|
20
24
|
|
|
21
25
|
|
|
@@ -114,6 +118,14 @@ small, ::marker
|
|
|
114
118
|
);
|
|
115
119
|
}
|
|
116
120
|
|
|
121
|
+
/* 4b */
|
|
122
|
+
select::picker-icon {
|
|
123
|
+
--bfs: var(--bfs-075);
|
|
124
|
+
font-size: calc(var(--bfs) * 1rem);
|
|
125
|
+
line-height: 2.2em;
|
|
126
|
+
transform-origin: 50% 55%;
|
|
127
|
+
}
|
|
128
|
+
|
|
117
129
|
/* 5 */
|
|
118
130
|
p {
|
|
119
131
|
text-wrap: pretty;
|
|
@@ -193,7 +205,10 @@ dd {
|
|
|
193
205
|
|
|
194
206
|
table,
|
|
195
207
|
iframe, object, embed, video, audio, img,
|
|
196
|
-
blockquote, fieldset, address, figure,
|
|
208
|
+
blockquote, fieldset, address, figure,
|
|
209
|
+
del:has(p, pre, details, fieldset, table, dl),
|
|
210
|
+
ins:has(p, pre, details, fieldset, table, dl),
|
|
211
|
+
:where(a[href]:has(p, pre, details, fieldset, table, dl))
|
|
197
212
|
{
|
|
198
213
|
/*
|
|
199
214
|
* add .5 to 1 to compensate for
|
|
@@ -203,12 +218,20 @@ blockquote, fieldset, address, figure, del, ins, a
|
|
|
203
218
|
margin-block: calc(1.5 * var(--bbg));
|
|
204
219
|
}
|
|
205
220
|
|
|
206
|
-
:is(
|
|
207
|
-
|
|
208
|
-
blockquote, fieldset, address, figure,
|
|
209
|
-
:
|
|
210
|
-
|
|
211
|
-
|
|
221
|
+
:is(
|
|
222
|
+
table,
|
|
223
|
+
blockquote, fieldset, address, figure,
|
|
224
|
+
del:has(p, pre, details, fieldset, table, dl),
|
|
225
|
+
ins:has(p, pre, details, fieldset, table, dl),
|
|
226
|
+
:where(a[href]:has(p, pre, details, fieldset, table, dl))
|
|
227
|
+
) +
|
|
228
|
+
:is(
|
|
229
|
+
table,
|
|
230
|
+
blockquote, fieldset, address, figure,
|
|
231
|
+
del:has(p, pre, details, fieldset, table, dl),
|
|
232
|
+
ins:has(p, pre, details, fieldset, table, dl),
|
|
233
|
+
:where(a[href]:has(p, pre, details, fieldset, table, dl))
|
|
234
|
+
)
|
|
212
235
|
{
|
|
213
236
|
/*
|
|
214
237
|
* add .5 again to start to compensate for
|
|
@@ -230,7 +253,7 @@ summary, legend, th
|
|
|
230
253
|
header,
|
|
231
254
|
figcaption:first-child
|
|
232
255
|
{
|
|
233
|
-
padding: 0 0 var(--bbg
|
|
256
|
+
padding: 0 0 var(--bbg);
|
|
234
257
|
}
|
|
235
258
|
|
|
236
259
|
header + *,
|
|
@@ -242,7 +265,7 @@ figcaption:first-child + *
|
|
|
242
265
|
footer,
|
|
243
266
|
figcaption:last-child
|
|
244
267
|
{
|
|
245
|
-
padding: var(--bbg
|
|
268
|
+
padding: var(--bbg) 0 0;
|
|
246
269
|
margin-block-start: var(--bbg-200);
|
|
247
270
|
}
|
|
248
271
|
|
|
@@ -320,7 +343,10 @@ p + p {
|
|
|
320
343
|
hgroup,
|
|
321
344
|
summary, legend, th, dt,
|
|
322
345
|
p, pre,
|
|
323
|
-
blockquote, fieldset, address, figure,
|
|
346
|
+
blockquote, fieldset, address, figure,
|
|
347
|
+
del:has(p, pre, details, fieldset, table, dl),
|
|
348
|
+
ins:has(p, pre, details, fieldset, table, dl),
|
|
349
|
+
:where(a[href]:has(p, pre, details, fieldset, table, dl)),
|
|
324
350
|
ol, ul, dl
|
|
325
351
|
{
|
|
326
352
|
margin-inline: auto;
|
|
@@ -363,17 +389,32 @@ dialog {
|
|
|
363
389
|
}
|
|
364
390
|
|
|
365
391
|
main, td, caption {
|
|
366
|
-
padding
|
|
392
|
+
padding: .5rem 1rem;
|
|
367
393
|
}
|
|
368
394
|
|
|
395
|
+
/* 13 */
|
|
396
|
+
[hidden] {
|
|
397
|
+
display: none;
|
|
398
|
+
}
|
|
369
399
|
|
|
370
400
|
|
|
401
|
+
:where(a[href] + a[href]) {
|
|
402
|
+
margin-inline-start: 1em;
|
|
403
|
+
}
|
|
371
404
|
|
|
372
405
|
|
|
373
406
|
|
|
374
407
|
/* COLOR
|
|
375
408
|
========================================================= */
|
|
376
409
|
|
|
410
|
+
* {
|
|
411
|
+
outline-color: inherit;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
a {
|
|
415
|
+
color: inherit;
|
|
416
|
+
}
|
|
417
|
+
|
|
377
418
|
@supports
|
|
378
419
|
(color: oklch(0 0 0)) and
|
|
379
420
|
(color: light-dark(#000, #fff))
|
|
@@ -392,6 +433,24 @@ main, td, caption {
|
|
|
392
433
|
oklch(0.20 .03 var(--base-color-hue))
|
|
393
434
|
);
|
|
394
435
|
}
|
|
436
|
+
|
|
437
|
+
::picker(select) {
|
|
438
|
+
color: light-dark(
|
|
439
|
+
oklch(0.45 .02 var(--base-color-hue)),
|
|
440
|
+
oklch(.72 .01 var(--base-color-hue))
|
|
441
|
+
);
|
|
442
|
+
background-color: light-dark(
|
|
443
|
+
oklch(0.99 0.003 var(--base-color-hue)),
|
|
444
|
+
oklch(0.20 .03 var(--base-color-hue))
|
|
445
|
+
);
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
option:hover {
|
|
449
|
+
background-color: light-dark(
|
|
450
|
+
oklch(0.95 0.003 var(--base-color-hue)),
|
|
451
|
+
oklch(0.25 .03 var(--base-color-hue))
|
|
452
|
+
);
|
|
453
|
+
}
|
|
395
454
|
}
|
|
396
455
|
|
|
397
456
|
|
|
@@ -561,7 +620,7 @@ ol ol ol {
|
|
|
561
620
|
blockquote, fieldset, address, figure,
|
|
562
621
|
del:has(p, pre, details, fieldset, table, dl),
|
|
563
622
|
ins:has(p, pre, details, fieldset, table, dl),
|
|
564
|
-
a[href]:has(p, pre, details, fieldset, table, dl)
|
|
623
|
+
:where(a[href]:has(p, pre, details, fieldset, table, dl))
|
|
565
624
|
{
|
|
566
625
|
border: 1px solid currentColor;
|
|
567
626
|
padding: 0 calc(1.5 * var(--bbg)) calc(.5 * var(--bbg));
|
|
@@ -580,8 +639,8 @@ del:has(p, pre, details, fieldset, table, dl)::before,
|
|
|
580
639
|
del:has(p, pre, details, fieldset, table, dl)::after,
|
|
581
640
|
ins:has(p, pre, details, fieldset, table, dl)::before,
|
|
582
641
|
ins:has(p, pre, details, fieldset, table, dl)::after,
|
|
583
|
-
a[href]:has(p, pre, details, fieldset, table, dl)::before,
|
|
584
|
-
a[href]:has(p, pre, details, fieldset, table, dl)::after
|
|
642
|
+
:where(a[href]:has(p, pre, details, fieldset, table, dl))::before,
|
|
643
|
+
:where(a[href]:has(p, pre, details, fieldset, table, dl))::after
|
|
585
644
|
{
|
|
586
645
|
content: "";
|
|
587
646
|
position: absolute;
|
|
@@ -632,12 +691,12 @@ ins:has(p, pre, details, fieldset, table, dl)::after {
|
|
|
632
691
|
clip-path: polygon(60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0% 60%, 0% 40%, 40% 40%, 40% 0%, 60% 0%, 60% 40%);
|
|
633
692
|
}
|
|
634
693
|
|
|
635
|
-
a[href]:has(p, pre, details, fieldset, table, dl)::before {
|
|
694
|
+
:where(a[href]:has(p, pre, details, fieldset, table, dl))::before {
|
|
636
695
|
top: .2em;
|
|
637
696
|
clip-path: polygon(100% 0%, 100% 70%, 72% 42%, 22% 92%, 8% 78%, 58% 28%, 30% 0%, 100% 0%);
|
|
638
697
|
}
|
|
639
698
|
|
|
640
|
-
a[href]:has(p, pre, details, fieldset, table, dl)::after {
|
|
699
|
+
:where(a[href]:has(p, pre, details, fieldset, table, dl))::after {
|
|
641
700
|
bottom: .2em;
|
|
642
701
|
clip-path: polygon(100% 0%, 100% 70%, 72% 42%, 22% 92%, 8% 78%, 58% 28%, 30% 0%, 100% 0%);
|
|
643
702
|
}
|
|
@@ -656,36 +715,78 @@ pre {
|
|
|
656
715
|
|
|
657
716
|
/* Trued Forms */
|
|
658
717
|
|
|
659
|
-
select,
|
|
660
718
|
button,
|
|
661
|
-
|
|
662
|
-
input[type
|
|
663
|
-
input[type=
|
|
664
|
-
input[type=
|
|
665
|
-
input[type=
|
|
666
|
-
input[type=
|
|
667
|
-
input[type=
|
|
668
|
-
input[type=
|
|
669
|
-
input[type=
|
|
670
|
-
input[type=
|
|
671
|
-
input[type=
|
|
672
|
-
input[type=
|
|
673
|
-
input[type=
|
|
674
|
-
input[type=
|
|
675
|
-
input[type=
|
|
676
|
-
input[type=
|
|
677
|
-
input[type=
|
|
678
|
-
input[type=
|
|
719
|
+
:where(
|
|
720
|
+
input:not([type]),
|
|
721
|
+
input[type=tel],
|
|
722
|
+
input[type=url],
|
|
723
|
+
input[type=text],
|
|
724
|
+
input[type=date],
|
|
725
|
+
input[type=week],
|
|
726
|
+
input[type=time],
|
|
727
|
+
input[type=file],
|
|
728
|
+
input[type=email],
|
|
729
|
+
input[type=month],
|
|
730
|
+
input[type=color],
|
|
731
|
+
input[type=reset],
|
|
732
|
+
input[type=submit],
|
|
733
|
+
input[type=button],
|
|
734
|
+
input[type=number],
|
|
735
|
+
input[type=search],
|
|
736
|
+
input[type=password],
|
|
737
|
+
input[type=datetime-local]
|
|
738
|
+
) {
|
|
679
739
|
border: 1px solid;
|
|
680
740
|
font: inherit;
|
|
681
741
|
padding: 0 .5em .15em;
|
|
682
742
|
height: 2em;
|
|
683
743
|
vertical-align: middle;
|
|
684
744
|
line-height: 1.2;
|
|
745
|
+
width: fit-content;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
select,
|
|
749
|
+
::picker(select) {
|
|
750
|
+
appearance: base-select;
|
|
685
751
|
}
|
|
686
752
|
|
|
687
753
|
select {
|
|
688
|
-
|
|
754
|
+
font: inherit;
|
|
755
|
+
height: 2em;
|
|
756
|
+
padding: 0 .5em .2em .3em;
|
|
757
|
+
width: fit-content;
|
|
758
|
+
gap: 2em;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
select::picker-icon {
|
|
762
|
+
transition: .4s rotate;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
select:open::picker-icon {
|
|
766
|
+
rotate: 180deg;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
option {
|
|
770
|
+
height: 2.5em;
|
|
771
|
+
padding: .3em .75em .45em;
|
|
772
|
+
flex-flow: row-reverse;
|
|
773
|
+
justify-content: space-between;
|
|
774
|
+
gap: 3em;
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
::picker(select) {
|
|
778
|
+
opacity: 0;
|
|
779
|
+
transition: all .25s allow-discrete;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
::picker(select):popover-open {
|
|
783
|
+
opacity: 1;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
@starting-style {
|
|
787
|
+
::picker(select):popover-open {
|
|
788
|
+
opacity: 0;
|
|
789
|
+
}
|
|
689
790
|
}
|
|
690
791
|
|
|
691
792
|
input[type=range]
|
|
@@ -693,7 +794,10 @@ input[type=range]
|
|
|
693
794
|
vertical-align: middle;
|
|
694
795
|
}
|
|
695
796
|
|
|
696
|
-
|
|
797
|
+
:where(
|
|
798
|
+
input[type=radio],
|
|
799
|
+
input[type=checkbox]
|
|
800
|
+
) {
|
|
697
801
|
width: 1em;
|
|
698
802
|
height: 1em;
|
|
699
803
|
font: inherit;
|
|
@@ -705,6 +809,7 @@ textarea {
|
|
|
705
809
|
border: 1px solid currentColor;
|
|
706
810
|
font: inherit;
|
|
707
811
|
padding: 0 .5em .25em;
|
|
812
|
+
width: fit-content;
|
|
708
813
|
}
|
|
709
814
|
|
|
710
815
|
|
|
@@ -715,23 +820,32 @@ a,
|
|
|
715
820
|
label,
|
|
716
821
|
button,
|
|
717
822
|
select,
|
|
718
|
-
|
|
719
|
-
input[type=
|
|
720
|
-
input[type=
|
|
721
|
-
input[type=
|
|
722
|
-
input[type=
|
|
723
|
-
input[type=
|
|
724
|
-
input[type=
|
|
725
|
-
input[type=
|
|
726
|
-
input[type=
|
|
727
|
-
input[type=
|
|
728
|
-
input[type=
|
|
729
|
-
input[type=
|
|
730
|
-
input[type=
|
|
823
|
+
:where(
|
|
824
|
+
input[type=date],
|
|
825
|
+
input[type=week],
|
|
826
|
+
input[type=time],
|
|
827
|
+
input[type=file],
|
|
828
|
+
input[type=month],
|
|
829
|
+
input[type=color],
|
|
830
|
+
input[type=reset],
|
|
831
|
+
input[type=range],
|
|
832
|
+
input[type=radio],
|
|
833
|
+
input[type=button],
|
|
834
|
+
input[type=submit],
|
|
835
|
+
input[type=checkbox],
|
|
836
|
+
input[type=datetime-local]
|
|
837
|
+
) {
|
|
731
838
|
cursor: pointer;
|
|
732
839
|
}
|
|
733
840
|
|
|
734
841
|
|
|
842
|
+
:where(label:has(textarea, select, input:not([type=checkbox], [type=radio], [type=range]))) {
|
|
843
|
+
display: grid;
|
|
844
|
+
margin-block-start: calc(.5 * var(--bbg))
|
|
845
|
+
}
|
|
735
846
|
|
|
736
|
-
|
|
847
|
+
:where(label:has(textarea, select, input:not([type=checkbox], [type=radio], [type=range])) + button) {
|
|
848
|
+
display: block;
|
|
849
|
+
margin-block-start: calc(1.7 * var(--bbg))
|
|
850
|
+
}
|
|
737
851
|
|
package/base.html
ADDED
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
7
|
+
<title>Document</title>
|
|
8
|
+
<link rel="stylesheet" href="./base.css">
|
|
9
|
+
<meta name="color-scheme" content="darks light">
|
|
10
|
+
<script src="./base-settings.js"></script>
|
|
11
|
+
</head>
|
|
12
|
+
|
|
13
|
+
<body>
|
|
14
|
+
<main>
|
|
15
|
+
<header>
|
|
16
|
+
<p>Site Header, <button class="base-settings">Personalization Settings</button></p>
|
|
17
|
+
</header>
|
|
18
|
+
<section>
|
|
19
|
+
<header>
|
|
20
|
+
<p>Section Header</p>
|
|
21
|
+
</header>
|
|
22
|
+
<hgroup>
|
|
23
|
+
<p>kicker one</p>
|
|
24
|
+
<p>kicker two</p>
|
|
25
|
+
<h1>Heading Level One (H1)</h1>
|
|
26
|
+
<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
27
|
+
<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
28
|
+
</hgroup>
|
|
29
|
+
<div>
|
|
30
|
+
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </p>
|
|
31
|
+
<p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
32
|
+
<p>
|
|
33
|
+
<label for="">
|
|
34
|
+
Select
|
|
35
|
+
<select name="" id="">
|
|
36
|
+
<option value="">Onge</option>
|
|
37
|
+
<option value="">Two</option>
|
|
38
|
+
<option value="">Three</option>
|
|
39
|
+
<option value="">Four</option>
|
|
40
|
+
</select>
|
|
41
|
+
</label>
|
|
42
|
+
<input type="number"> </p>
|
|
43
|
+
<p>
|
|
44
|
+
<input type="text" name="" id="" list="dd">
|
|
45
|
+
<datalist id="dd">
|
|
46
|
+
<option value="hh">Hello</option>
|
|
47
|
+
</datalist>
|
|
48
|
+
|
|
49
|
+
<input type="color" name="" id="">
|
|
50
|
+
<input type="checkbox" name="" id="">
|
|
51
|
+
<input type="radio" name="" id="">
|
|
52
|
+
Hello
|
|
53
|
+
<input type="range" name="" id="">
|
|
54
|
+
<textarea name="" id="" cols="30" rows="10"></textarea>
|
|
55
|
+
</p>
|
|
56
|
+
|
|
57
|
+
<pre>
|
|
58
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
|
59
|
+
</pre>
|
|
60
|
+
<figure>
|
|
61
|
+
<figcaption>
|
|
62
|
+
<p>Some caption</p>
|
|
63
|
+
</figcaption>
|
|
64
|
+
<p>Figure: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
65
|
+
</figure>
|
|
66
|
+
<figure>
|
|
67
|
+
<p>Figure: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
68
|
+
<figcaption>
|
|
69
|
+
<p>Some caption</p>
|
|
70
|
+
</figcaption>
|
|
71
|
+
</figure>
|
|
72
|
+
<table>
|
|
73
|
+
<caption>
|
|
74
|
+
<p>Hello Caption</p>
|
|
75
|
+
</caption>
|
|
76
|
+
<thead>
|
|
77
|
+
<tr>
|
|
78
|
+
<th>One</th>
|
|
79
|
+
<th>Two</th>
|
|
80
|
+
</tr>
|
|
81
|
+
</thead>
|
|
82
|
+
<tbody>
|
|
83
|
+
<tr>
|
|
84
|
+
<td>
|
|
85
|
+
<p>Text</p>
|
|
86
|
+
</td>
|
|
87
|
+
<td>
|
|
88
|
+
<p>Text</p>
|
|
89
|
+
</td>
|
|
90
|
+
</tr>
|
|
91
|
+
</tbody>
|
|
92
|
+
</table>
|
|
93
|
+
<p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
94
|
+
<ol>
|
|
95
|
+
<li>
|
|
96
|
+
<p>Hello</p>
|
|
97
|
+
</li>
|
|
98
|
+
<li>
|
|
99
|
+
<p>Hello</p>
|
|
100
|
+
<ol>
|
|
101
|
+
<li>
|
|
102
|
+
<p>World</p>
|
|
103
|
+
</li>
|
|
104
|
+
</ol>
|
|
105
|
+
</li>
|
|
106
|
+
<li>
|
|
107
|
+
<p>Hello</p>
|
|
108
|
+
</li>
|
|
109
|
+
</ol>
|
|
110
|
+
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
111
|
+
<dl>
|
|
112
|
+
<div>
|
|
113
|
+
<dt>Term one</dt>
|
|
114
|
+
<dt>Term two</dt>
|
|
115
|
+
<dd>
|
|
116
|
+
<p>Hello World</p>
|
|
117
|
+
<dl>
|
|
118
|
+
<div>
|
|
119
|
+
<dt>Term one</dt>
|
|
120
|
+
<dt>Term two</dt>
|
|
121
|
+
<dd>
|
|
122
|
+
<p>Hello World</p>
|
|
123
|
+
|
|
124
|
+
</dd>
|
|
125
|
+
</div>
|
|
126
|
+
<div>
|
|
127
|
+
<dt>Term one</dt>
|
|
128
|
+
<dt>Term two</dt>
|
|
129
|
+
<dd>
|
|
130
|
+
<p>Hello World</p>
|
|
131
|
+
</dd>
|
|
132
|
+
</div>
|
|
133
|
+
</dl>
|
|
134
|
+
</dd>
|
|
135
|
+
</div>
|
|
136
|
+
<div>
|
|
137
|
+
<dt>Term one</dt>
|
|
138
|
+
<dt>Term two</dt>
|
|
139
|
+
<dd>
|
|
140
|
+
<p>Hello World</p>
|
|
141
|
+
</dd>
|
|
142
|
+
</div>
|
|
143
|
+
</dl>
|
|
144
|
+
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
145
|
+
<details>
|
|
146
|
+
<summary>Hello World</summary>
|
|
147
|
+
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
148
|
+
</details>
|
|
149
|
+
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
150
|
+
<!-- <fieldset>
|
|
151
|
+
<legend>Legend</legend>
|
|
152
|
+
<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
153
|
+
</fieldset> -->
|
|
154
|
+
<address>
|
|
155
|
+
<p>Excepteur del occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
156
|
+
</address>
|
|
157
|
+
<blockquote>
|
|
158
|
+
<p>Excepteur del occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
159
|
+
</blockquote>
|
|
160
|
+
<ins>
|
|
161
|
+
<p>Excepteur <a href="">sint</a> occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
162
|
+
</ins>
|
|
163
|
+
<a href="hg">
|
|
164
|
+
<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
165
|
+
</a>
|
|
166
|
+
<del>
|
|
167
|
+
<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
168
|
+
</del>
|
|
169
|
+
<fieldset>
|
|
170
|
+
<legend>Hello</legend>
|
|
171
|
+
|
|
172
|
+
<p>Hello world</p>
|
|
173
|
+
</fieldset>
|
|
174
|
+
<p>Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
175
|
+
<hr>
|
|
176
|
+
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
177
|
+
<p>Lorem <img src="./bd-1.png" alt=""> <img src="./bd-1.png" alt=""> ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
178
|
+
<p>Lorem <audio src="./dull.mp3" controls></audio> ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
179
|
+
</div>
|
|
180
|
+
<footer>
|
|
181
|
+
<p>Section Footer</p>
|
|
182
|
+
</footer>
|
|
183
|
+
</section>
|
|
184
|
+
<footer>
|
|
185
|
+
<p>Footer Landmark</p>
|
|
186
|
+
</footer>
|
|
187
|
+
|
|
188
|
+
<section>
|
|
189
|
+
<hgroup>
|
|
190
|
+
<h1>H1</h1>
|
|
191
|
+
</hgroup>
|
|
192
|
+
<div>
|
|
193
|
+
<section>
|
|
194
|
+
<hgroup>
|
|
195
|
+
<h2>H2</h2>
|
|
196
|
+
</hgroup>
|
|
197
|
+
<div>
|
|
198
|
+
<section>
|
|
199
|
+
<hgroup>
|
|
200
|
+
<h3>H3</h3>
|
|
201
|
+
</hgroup>
|
|
202
|
+
<div>
|
|
203
|
+
<section>
|
|
204
|
+
<hgroup>
|
|
205
|
+
<h4>H4</h4>
|
|
206
|
+
</hgroup>
|
|
207
|
+
<div>
|
|
208
|
+
<section>
|
|
209
|
+
<hgroup>
|
|
210
|
+
<h5>H5</h5>
|
|
211
|
+
</hgroup>
|
|
212
|
+
<div>
|
|
213
|
+
<section>
|
|
214
|
+
<hgroup>
|
|
215
|
+
<h6>H6</h6>
|
|
216
|
+
<p>SH</p>
|
|
217
|
+
</hgroup>
|
|
218
|
+
<div>
|
|
219
|
+
<p>PP</p>
|
|
220
|
+
<p><small>SM</small></p>
|
|
221
|
+
</div>
|
|
222
|
+
</section>
|
|
223
|
+
</div>
|
|
224
|
+
</section>
|
|
225
|
+
</div>
|
|
226
|
+
</section>
|
|
227
|
+
</div>
|
|
228
|
+
</section>
|
|
229
|
+
</div>
|
|
230
|
+
</section>
|
|
231
|
+
</div>
|
|
232
|
+
</section>
|
|
233
|
+
</main>
|
|
234
|
+
<base-settings></base-settings>
|
|
235
|
+
</body>
|
|
236
|
+
|
|
237
|
+
</html>
|
|
238
|
+
|