-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree_of_knowledge.css
More file actions
62 lines (55 loc) · 1.04 KB
/
tree_of_knowledge.css
File metadata and controls
62 lines (55 loc) · 1.04 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
/* CSS declarations go here */
#graphCanvas {
border: 5px solid black;
/*width:calc(100%+15px);*/
/*height:auto;*/
}
@keyframes notify{
from{opacity: 1}
to{opacity: 0}
}
.notify{
opacity: 0;
color: red;
animation-name: notify;
animation-duration:6s;
}
body {
font: 16px sans-serif;
}
.fileContainer {
overflow: hidden;
position: relative;
}
.fileContainer [type=file] {
cursor: inherit;
display: block;
/*font-size: 999px;*/
filter: alpha(opacity=0);
height: 100%;
width: 100%;
opacity: 0;
position: absolute;
right: 0;
text-align: right;
top: 0;
}
/*#ribbon{
background-color: #AAA;
}
#new{
background: transparent;
background-image: url("resources/1465842442_New.png");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
padding-left: 50px;
}
#delete{
background: transparent;
background-image: url("resources/1465842524_Remove.png");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
padding-left: 50px;
}*/