-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (75 loc) · 1.54 KB
/
Copy pathstyle.css
File metadata and controls
76 lines (75 loc) · 1.54 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
.matrix-container {
position: relative;
padding: 0 20px;
}
.matrix-container::before, .matrix-container::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
width: 20px;
border: 2px solid #a0aec0;
}
.matrix-container::before {
left: 0;
border-right: none;
border-radius: 20px 0 0 20px;
}
.matrix-container::after {
right: 0;
border-left: none;
border-radius: 0 20px 20px 0;
}
.result-matrix {
display: inline-block;
position: relative;
padding: 0 15px;
margin: 0 10px;
vertical-align: middle;
}
.result-matrix::before, .result-matrix::after {
content: '';
position: absolute;
top: 0;
bottom: 0;
width: 15px;
border: 1px solid #a0aec0;
}
.result-matrix::before {
left: 0;
border-right: none;
border-radius: 15px 0 0 15px;
}
.result-matrix::after {
right: 0;
border-left: none;
border-radius: 0 15px 15px 0;
}
.op-symbol {
display: inline-block;
vertical-align: middle;
font-size: 2em;
margin: 0 15px;
}
.tab-button.active {
background-color: #4a5568; /* gray-700 */
color: white;
}
#molecule-viewer-canvas {
background-color: #e2e8f0; /* light gray for background */
}
body {
background-color: #1f2937; /* bg-gray-800 */
color: #d1d5db; /* text-gray-300 */
font-family: sans-serif;
}
.orbital-box {
border: 1px solid #a0aec0;
width: 32px;
height: 32px;
display: inline-flex;
align-items: center;
justify-content: center;
margin-right: 4px;
color: #f3f4f6; /* text-gray-100 */
}