-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproperties.html
More file actions
77 lines (68 loc) · 2.44 KB
/
properties.html
File metadata and controls
77 lines (68 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sketch Palette Layout</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.container {
width: 296px;
height: 596px;
border: 1px solid #ccc;
display: flex;
flex-direction: column;
}
.header {
background-color: #6A5ACD;
color: white;
padding: 10px;
text-align: center;
font-weight: bold;
}
.section {
padding: 10px;
border-bottom: 1px solid #ccc;
}
.section-title {
font-weight: bold;
margin-bottom: 10px;
}
.item {
display: flex;
align-items: center;
margin-bottom: 5px;
}
.item:last-child {
margin-bottom: 0;
}
.checkbox {
margin-right: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">SKETCH PALETTE</div>
<div class="section">
<div class="section-title">Options</div>
<div class="item"><input type="checkbox" class="checkbox">Linetype</div>
<div class="item"><input type="checkbox" class="checkbox">Look At</div>
<div class="item"><input type="checkbox" class="checkbox">Sketch Grid</div>
<div class="item"><input type="checkbox" class="checkbox">Snap</div>
<div class="item"><input type="checkbox" class="checkbox">Slice</div>
<div class="item"><input type="checkbox" class="checkbox">Profile</div>
<div class="item"><input type="checkbox" class="checkbox">Points</div>
<div class="item"><input type="checkbox" class="checkbox">Dimensions</div>
<div class="item"><input type="checkbox" class="checkbox">Constraints</div>
<div class="item"><input type="checkbox" class="checkbox">Projected Geometries</div>
<div class="item"><input type="checkbox" class="checkbox">Construction Geometries</div>
<div class="item"><input type="checkbox" class="checkbox">3D Sketch</div>
</div>
</div>
</body>
</html>