-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsketch_panel.html
79 lines (71 loc) · 1.62 KB
/
sketch_panel.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sketch - SAO Util Menu Panel</title>
<style>
div#sao_menu_panel {
/* background-color: #aaa; */
width: 236px;
height: 415px;
-webkit-box-shadow : 0 0 10px #aaa;
-moz-box-shadow : 0 0 10px #aaa;
background-image: url('resources/images/panel_main_bg.png');
background-repeat: repeat-x;
}
body {
padding: 29px 55px;
}
div#panel_title {
/* background-color: red; */
height: 42px;
}
div#panel_hori {
height: 1px;
background-color: #919191;
border-bottom: 1px solid #cbcbcb;
margin: 0 15px;
}
/* gradient : #ebebeb --> #fdfdfd */
div#panel_main {
/* background-color: #aaa; */
height: 227px;
}
div#panel_desc {
background-color: #ddd;
height: 145px;
border-bottom: 1px solid #eee ;
border-left: 1px solid #eee ;
border-right: 1px solid #eee ;
}
div#panel_bottom_arrowhead {
height: 12px;
background-image: url('resources/images/panel_down_arrowhead.png');
background-repeat: no-repeat;
}
div#panel_right_arrowhead {
width: 22px;
height: 35px;
background-image: url('resources/images/panel_right_arrowhead.png');
background-repeat: no-repeat;
position: relative;
top: 150px;
left: 236px;
}
</style>
</head>
<body>
<div id="sao_menu_panel">
<div id="panel_title">
</div>
<div id="panel_hori"></div>
<div id="panel_main">
<div id="panel_right_arrowhead"></div>
</div>
<div id="panel_desc">
<div id="panel_bottom_arrowhead">
</div>
</div>
</div>
</body>
</html>