forked from Azadeh-Koohjani/atomic-orbital-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
67 lines (58 loc) · 1.08 KB
/
index.css
File metadata and controls
67 lines (58 loc) · 1.08 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
body {
margin: 0;
}
.container {
height: 100vh;
position: relative;
}
.panel {
position: absolute;
z-index: 9;
background-color: #1f1f1f;
text-align: center;
font-size: 12px;
color: #fff;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
font-weight: 600;
margin-left: 16px;
}
.panel-header {
padding: 5px;
background-color: #000000;
display: flex;
justify-content: space-between;
}
.panel-header span {
cursor: pointer;
flex: 1 1 auto;
text-align: left;
}
.panel-header span::before {
font-family: "lil-gui";
content: attr(data-before);
padding-right: 2px;
display: inline-block;
}
.draggable {
cursor: move;
flex: 0 0 24px;
}
.draggable::before {
font-family: "lil-gui";
content: '✥';
font-size: 16px;
padding-right: 2px;
display: inline-block;
}
.panel-content {
overflow: hidden;
transition: height 0.2s ease-out;
}
.panel-content svg{
width: 100%;
height: 100%;
}
.move-icon {
cursor: pointer;
color: #e6e6e6;
}