-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.css
108 lines (107 loc) · 1.61 KB
/
dashboard.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
103
104
105
106
107
108
body{
background-color: rgb(36, 36, 36);
margin: 0;
padding: 0;
}
.firstrow{
/* height: 50%; */
/* width: 100%; */
background-color: white;
height: 33vh;
width: 100vw;
margin: 0;
}
.secondrow{
margin: 0;
width: 100%;
background-color: rgb(36, 36, 36);
height: 60.5vh;
/* border-top: 5px dotted black; */
}
.row1col1{
/* background-color: rgb(240, 240, 240); */
height: 33vh;
width: 100vw;
border-right: 5px dotted rgb(36, 36, 36);
}
.row1col2{
/* background-color: rgb(199, 199, 199); */
height: 33vh;
width: 100vw;
}
.currentmonth{
padding-top: 35px;
/* margin-left: 20px; */
margin:auto;
width: 30%;
}
.transactiondetails{
padding-top: 20px;
}
#currentmonthname{
color: rgb(47, 197, 182);
}
#prevmonthname{
color: rgb(255, 77, 77);
}
#adddetails{
color: rgb(255, 255, 140);
/* text-align: center; */
padding-top: 45px;
padding-bottom: 20px;
margin:auto;
width: 60%;
}
#transactiondetailstable{
color: rgb(140, 234, 255);
text-align: center;
padding-top: 45px;
padding-bottom: 45px;
margin:auto;
width: 60%;
}
.prevmonth{
padding-top: 35px;
/* margin-left: 20px; */
margin:auto;
width: 30%;
}
.secondrow{
color: white;
}
.row2col1{
/* border-right: 5px dotted white; */
height: 100%;
max-height: 30vh;
}
.row2col2{
height: 100%;
max-height: 30vh;
}
.formentry{
padding-top: 0px;
/* margin-left: 20px; */
margin:auto;
width: 60%;
max-height: 380px;
overflow-y: scroll;
}
.transactiontable{
/* padding-top: 75px; */
/* margin-left: 20px; */
margin:auto;
width: 80%;
}
.table-responsive {
max-height:350px;
width: 100%;
overflow-y: scroll;
}
thead{
position: sticky;
top: 0px;
}
.header {
position: sticky;
top:-1px;
}