-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathmain.css
102 lines (84 loc) · 1.85 KB
/
main.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
.aqb-search-form-footer {
margin-top: 20px;
}
.aqb-search-group {
background-color: #f5f5f5;
padding: 10px;
line-height: 20px;
border-radius: 4px;
border: 1px solid #ccc;
margin-top: 10px;
}
.aqb-search-group .aqb-horizontal-divider {
margin-left: -10px;
padding-right: 20px;
}
.aqb-search-group .aqb-vertical-divider {
float: left;
min-height: 50px;
margin-top: -10px;
}
.aqb-search-group-head {
margin-bottom: 10px;
min-height: 30px;
}
.aqb-search-group-body {
margin-top: 10px;
}
.aqb-search-condition {
margin-top: 10px;
margin-bottom: 0px;
}
.aqb-nav-pills-container {
float: left;
}
.aqb-nav-pills-container .nav-pills {
margin-bottom: 0px
}
.aqb-vertical-divider {
border-right: 1px solid #ccc;
margin-right: 10px;
margin-left: 10px;
}
.aqb-horizontal-divider {
border-bottom: 1px solid #ccc;
width: 100%;
}
.aqb-center {
text-align: center;
}
.aqb-input-error {
border-color: #b94a48;
}
/* animate enter/leave */
.aqb-animate-enter.ng-enter,
.aqb-animate-leave.ng-leave,
.aqb-animate-combined.ng-enter,
.aqb-animate-combined.ng-leave {
/* force hardware acceleration */
-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-o-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
-webkit-transition: all linear 0.5s;
-moz-transition: all linear 0.5s;
-o-transition: all linear 0.5s;
transition: all linear 0.5s;
display: block !important;
}
.aqb-animate-enter.ng-enter,
.aqb-animate-combined.ng-enter {
opacity: 0;
}
.aqb-animate-enter.ng-enter-active,
.aqb-animate-combined.ng-enter-active {
opacity: 1;
}
.aqb-animate-leave.ng-leave,
.aqb-animate-combined.ng-leave {
opacity: 1;
}
.aqb-animate-leave.ng-leave-active,
.aqb-animate-combined.ng-leave-active {
opacity: 0;
}