-
Notifications
You must be signed in to change notification settings - Fork 0
/
moled.css
105 lines (84 loc) · 1.26 KB
/
moled.css
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
svg {
border: 1px solid black;
}
line {
stroke: black;
stroke-width: 1px;
}
line:hover {
stroke-width: 4px;
}
.drag_line {
pointer:default;
}
.drag_line:hover {
stroke-width: 1px;
}
.hidden-carbon circle {
stroke:transparent;
fill:transparent;
}
.hidden-carbon text {
visibility:hidden;
}
circle {
stroke: transparent;
fill: white;
}
.selected {
stroke: red;
}
.selected line {
stroke: red;
}
svg text {
font-family: Verdana;
font-size: 14px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.node {
cursor: default;
}
#periodic-table {
visibility: hidden;
position: absolute;
width:662px;
height:300px;
left: 7px;
top: 50px;
border: 1px solid lightgrey;
padding: 3px;
background-color: rgb(241, 241, 241);
}
sup {
font-size:10px;
}
table sup {
float:left;
}
table {
border-spacing: 1px;
float:right;
}
td {
border: 1px solid lightgrey;
padding-top:0;
text-align:center;
cursor: default;
background-color: rgb(223, 223, 223);
}
td:hover {
background-color: rgb(243, 243, 243);
}
#periodic-close {
border:none;
float:right;
}
#periodic-close:hover {
background-color: highlight;
}