-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.html
More file actions
86 lines (76 loc) · 2.34 KB
/
sidebar.html
File metadata and controls
86 lines (76 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Layout Example</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;
}
.section {
padding: 10px;
border-bottom: 1px solid #ccc;
}
.section:last-child {
border-bottom: none;
}
.section-title {
font-weight: bold;
margin-bottom: 10px;
}
.item {
display: flex;
align-items: center;
margin-bottom: 5px;
}
.item:last-child {
margin-bottom: 0;
}
.icon {
width: 20px;
height: 20px;
background-color: #ccc;
margin-right: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">BROWSER</div>
<div class="section">
<div class="section-title">Document Settings</div>
<div class="item"><div class="icon"></div>Inj v6</div>
</div>
<div class="section">
<div class="section-title">Named Views</div>
<div class="item"><div class="icon"></div>TOP</div>
<div class="item"><div class="icon"></div>FRONT</div>
<div class="item"><div class="icon"></div>RIGHT</div>
<div class="item"><div class="icon"></div>HOME</div>
<div class="item"><div class="icon"></div>Origin</div>
</div>
<div class="section">
<div class="section-title">Analysis</div>
<div class="item"><div class="icon"></div>CenterOfMass1</div>
<div class="item"><div class="icon"></div>Bodies</div>
<div class="item"><div class="icon"></div>Body1</div>
</div>
</div>
</body>
</html>