-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (65 loc) · 1.54 KB
/
style.css
File metadata and controls
78 lines (65 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
77
78
@CHARSET "UTF-8";
.active{
background-color: hsl(201, 100%, 30%) !important;
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00a5ff", endColorstr="#006399");
background-image: -khtml-gradient(linear, left top, left bottom, from(#00a5ff), to(#006399));
background-image: -moz-linear-gradient(top, #00a5ff, #006399);
background-image: -ms-linear-gradient(top, #00a5ff, #006399);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00a5ff), color-stop(100%, #006399));
background-image: -webkit-linear-gradient(top, #00a5ff, #006399);
background-image: -o-linear-gradient(top, #00a5ff, #006399);
background-image: linear-gradient(#00a5ff, #006399);
border-color: #006399 #006399 hsl(201, 100%, 25%);
color: #fff !important;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33);
-webkit-font-smoothing: antialiased;
}
.vSelectedRow{
background: rgb(204,199,240) !important;
}
.handCursor{
cursor: pointer;
}
.dropdown-menu{
width: auto !important;
overflow: auto !important;
}
.hidden{
display: none !important;
}
.row{
margin-bottom: 5px !important;
}
.sortorder:after {
content: '\25b2';
}
.sortorder.reverse:after {
content: '\25bc';
}
.filled{
width: 100%;
}
.flag{
width: 40%;
}
.notes{
width: 40%;
}
.ruleRow{
width: 90%;
margin: 0 auto;
padding: 5px;
border: 1px solid #888;
border-radius: 5px;
margin-bottom: 5px;
}
.ruleRow:nth-child(odd){
background: #fff;
}
.ruleRow:nth-child(even){
background: #ccc;
}
.btn-round{
border-radius: 20px;
}