-
Notifications
You must be signed in to change notification settings - Fork 1
/
opinionated.css
61 lines (52 loc) · 937 Bytes
/
opinionated.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
.node {
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
-ms-transition: all 0.5s;
-webkit-transition: all 0.5s;
transition: all 0.5s;
border-radius: 3px;
}
.node:hover {
background-color: rgb(220, 245, 243);
cursor: pointer;
}
.info, .node {
padding: 2px 10px 2px 5px;
font: 14px Helvetica, Arial, sans-serif;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.tree-view_arrow {
-moz-transition: all 0.1s;
-o-transition: all 0.1s;
-ms-transition: all 0.1s;
-webkit-transition: all 0.1s;
transition: all 0.1s;
}
.tree-view_arrow-empty {
color: yellow;
}
.column1 {
float: right;
width: 75%;
}
.column2 {
float: left;
width: 50%;
}
.column3 {
float: left;
width: 33.33%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.centerText {
text-align: center;
width: 66.666%;
}