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
116
117
118
119
120
121
122
123
124
125
|
.btn-success {
border: none;
background: #fff;
border-radius: 5px;
padding: 7px 16px;
text-transform: uppercase;
font-weight: 500;
font-size: 11px;
letter-spacing: 0.5px;
color: #003e85;
box-shadow: 0 3px 5px #d4d4d4;
}
.o_kanban_view.o_kanban_ungrouped {
padding: 0 !important;
}
.o_kanban_view.o_kanban_ungrouped .o_kanban_record{margin:4px 0px !important;}
/*****************change in counter-area***********************/
section {
padding: 20px 0px;
}
.counter-area .custom-card {
margin-bottom: 20px;
border: 0;
box-shadow: 0 3px 8px 0 rgba(162, 169, 204, 0.24), 0 3px 16px 0 rgba(162, 169, 204, 0.24);
}
.counter-area .card {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border: 1px solid #e1e6f1;
border-radius: 0px;
}
.counter-area .sh-card-body {
flex: 1 1 auto;
padding: 15px 20px;
}
.counter-area .sh-card-body .media i {
font-size: 50px;
}
.counter-area .sh-card-body .media .media-body {
margin-top: 15px;
}
.counter-area .fs-20 {
font-size: 20px;
}
.counter-area h3 {
margin-bottom: 0.5rem;
font-weight: 700;
line-height: 1.2;
margin-top: 0;
}
.counter-area p {
font-size: 15px;
font-weight: 600;
}
.counter-area .card .dash1,
.counter-area .card {
border-radius: 5px;
}
.counter-area .custom-card:hover {
cursor: pointer;
}
/********************change in table-area******************/
.table-area .table {
border-collapse: collapse;
box-shadow: 0 3px 8px 0 rgba(162, 169, 204, 0.24), 0 3px 16px 0 rgba(162, 169, 204, 0.24);
margin-bottom: 30px;
}
.table-area .table tr td {
padding: 8px;
font-size: 15px;
}
.table-area .table tr th {
padding: 10px;
font-size: 15px;
}
.table-area .table tr:nth-child(even) {
background-color: #f2f2f2;
}
.table-area .table {
padding: 20px 0px;
}
.table-area .table .badge {
padding: 8px 10px;
width: 70px;
}
/*effect*/
.card {
display: inline-block;
transition-duration: $defaultDuration;
transition-property: transform;
}
.card:hover {
transform: scale(1.1);
box-shadow: 0 5px 10px 0 rgba(162, 169, 204, 0.24), 0 5px 19px 0 rgba(162, 169, 204, 0.24);
}
/*filter*/
.filter .col2 {
padding: 0px 28px;
}
/* 30-11-2020 */
@media only screen and (max-width: 576px){
.sh_drop_btn .sh_btn select,
input[type="date"]{margin: 5px 0px;}
}
|