-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (133 loc) · 5.16 KB
/
Copy pathindex.html
File metadata and controls
136 lines (133 loc) · 5.16 KB
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
<!doctype html>
<html lang="en-us">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="AutoCSS" />
<meta name="description" content="CSS.live" />
<meta name="robots" content="index, archive" />
<meta name="color-scheme" content="dark light" />
<link rel="canonical" href="https://CSS.live" />
<link rel="icon" type="image/svg+xml" href="./assets/images/brand/ui/logo.svg" />
<link rel="stylesheet" type="text/css" href="./assets/css/reset.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/fonts.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/color-scheme.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/color-theme-66ccff.css" />
<!-- TEST (temporary): themes.css commented out to verify the color-scheme.css system-color fallback in light/dark.
SUPERSEDED by color-theme-66ccff.css above (Phase-2 of the modular color system); themes.css kept for reference.
<link rel="stylesheet" type="text/css" href="./assets/css/themes.css" />
-->
<link rel="stylesheet" type="text/css" href="./assets/css/layout.css" />
<!-- TEST (temporary): transitions.css commented out for a clean light/dark demonstration.
<link rel="stylesheet" type="text/css" href="./assets/css/transitions.css" />
-->
<link rel="stylesheet" type="text/css" href="./assets/css/inputs.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/media.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/typography.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/scrolling.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/a11y.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/forms.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/fallbacks.css" />
<link rel="stylesheet" type="text/css" href="./assets/css/loading.css" />
<title>CSS.live</title>
</head>
<body>
<app-container>
<app-banner>CSS.live</app-banner>
<header>
<app-logo></app-logo>
<label>
Layouts
<input type="checkbox" checked />
</label>
<label aria-label="Light color scheme">
☼ Light
<input type="radio" name="color-scheme" value="light" />
</label>
<label aria-label="Dark color scheme">
☾ Dark
<input type="radio" name="color-scheme" value="dark" />
</label>
<label aria-label="System color scheme">
◐ System
<input type="radio" name="color-scheme" checked />
</label>
</header>
<nav>
<details open>
<summary></summary>
<section>
<label><input type="radio" name="nav" /></label>
<label><input type="radio" name="nav" /></label>
</section>
</details>
<details open>
<summary></summary>
<section>
<label><input type="radio" name="nav" /></label>
<label><input type="radio" name="nav" /></label>
<label><input type="radio" name="nav" /></label>
<label><input type="radio" name="nav" /></label>
<label><input type="radio" name="nav" /></label>
<label><input type="radio" name="nav" /></label>
<label><input type="radio" name="nav" /></label>
<label><input type="radio" name="nav" /></label>
<label><input type="radio" name="nav" /></label>
<label><input type="radio" name="nav" /></label>
</section>
</details>
</nav>
<main>
<article>
<h1></h1>
<p></p>
<section></section>
<label role="button" aria-label="Add new item">
<input type="checkbox" />
New Item
<svg viewBox="0 0 24 24" width="24" height="24" focusable="false">
<circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="2" fill="none" />
<path d="M12 8v8m-4-4h8" stroke="currentColor" stroke-width="2" stroke-linecap="round" />
</svg>
</label>
<hr />
<input type="search" placeholder="Filter by name..." name="filter" />
<ul aria-hidden="true">
<li></li>
</ul>
<ul></ul>
</article>
</main>
<aside>
<h2 aria-live="polite">DETAILS</h2>
<label role="button" aria-label="Close">
<input type="checkbox" />
✖
</label>
<form>
<fieldset></fieldset>
<p aria-live="polite"></p>
<small>Note: Ensure all fields are filled correctly before submitting.</small>
<small>Note: All fields marked with * are required.</small>
<label role="button" aria-label="Delete">
Delete
<input type="checkbox" />
</label>
<label role="button" aria-label="Reset">
Reset
<input type="checkbox" />
</label>
<label role="button" aria-label="Save">
Save
<input type="checkbox" />
</label>
</form>
</aside>
<footer>
<app-legal></app-legal>
<app-version></app-version>
</footer>
<app-banner></app-banner>
</app-container>
</html>