-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
115 lines (101 loc) · 1.84 KB
/
styles.css
File metadata and controls
115 lines (101 loc) · 1.84 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
.graph {
height: 100%;
width: 50%;
position: fixed;
z-index: 1;
top: 0;
overflow-x: hidden;
padding-top: 20px;
}
.left {
left: 0;
background-color: rgb(48, 48, 48);
}
.right {
right: 0;
background-color: rgb(62, 68, 74);
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.loading-bar {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
}
.uploader {
color: white;
position: absolute;
zoom: 80%;
top: 6.5%;
left: 50%;
transform: translate(-50%, -50%);
}
.isomorphism-checker {
position: fixed;
top: 6.5%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
z-index: 2;
}
.isomorphism-result-container {
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
}
.isomorphism-result {
background-color: rgb(76, 82, 88);
position: fixed;
text-align: center;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
}
.save-isomorphism-result {
position: absolute;
bottom: 0;
top: 80px;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
z-index: 2;
}
.saved-file-info {
position: absolute;
color: rgb(207, 7, 7);
bottom: 0;
top: 130px;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
z-index: 2;
}
.isomorphism-checker button {
-webkit-transition: background-color 0.3s ease-in-out;
-moz-transition: background-color 0.3s ease-in-out;
-o-transition: background-color 0.3s ease-in-out;
-khtml-transition: background-color 0.3s ease-in-out;
transition: background-color 0.3s ease-in-out;
}
.links line {
stroke: #999;
stroke-opacity: 1;
}
.nodes circle {
stroke: #fff;
stroke-width: 1.5px;
}
.nodes text {
pointer-events: none;
font: 40px sans-serif;
stroke: #fff;
}