start of settings doc page
This commit is contained in:
parent
7a18cae226
commit
98e916726f
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Settings</title>
|
||||
|
||||
<link rel="stylesheet" href="/stylelite.css">
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<h1>Stylelite Variables</h1>
|
||||
<form action="">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Property</th>
|
||||
<th>Description</th>
|
||||
<th>Default Value</th>
|
||||
<th>Current Value</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<code>--theme</code>
|
||||
</td>
|
||||
<td>
|
||||
A theme accent color
|
||||
</td>
|
||||
<td>
|
||||
<code>steelblue</code>
|
||||
</td>
|
||||
<td>
|
||||
<input type="color" name="theme" class="spaceless">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue