-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcustom.css
More file actions
46 lines (39 loc) · 789 Bytes
/
custom.css
File metadata and controls
46 lines (39 loc) · 789 Bytes
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
#todayTab,#dailyTab,#weekTab{
background-color: rgba(114,106,149,0.3);
color:black;
transition: 1s;
}
#todayTab:hover{
background-color: rgba(53,31,57,0.5);
}
#dailyTab:hover{
background-color: rgba(53,31,57,0.5);
}
#weekTab:hover{
background-color: rgba(53,31,57,0.5);
}
.nav-link.active{
background-color: rgba(53,31,57,0.75) !important;
color: white !important;
}
#detailBtn,#detailBtn2{
background-color: #719fb0;
color:#212529;
transition: 1s;
}
#detailBtn:hover,#detailBtn2:hover{
background-color: #0d2e3a;
color:white;
}
.card-header{
background-color: #719fb0 ;
}
#dateSubmit{
background-color: #719fb0;
color:#212529;
transition: 1s;
}
#dateSubmit:hover{
background-color: #0d2e3a;
color:white;
}