forked from AdaGold/video-store-consumer
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathApp.css
64 lines (53 loc) · 900 Bytes
/
App.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
.App {
text-align: center;
/* background-color: #22254b; */
}
.navbar{
display: flex;
justify-content: space-around;
align-items: center;
min-height: 10vh;
background: rgb(73, 79, 82);
color: white;
}
.nav-link{
width: 60%;
display: flex;
justify-content: space-around;
align-items: center;
list-style: none;
}
.link{
color: white;
text-decoration: none;
}
.link:hover{
color: white;
}
.Home:hover {
color: #EC7063;
font-weight: bolder;
}
.Customer:hover {
color: yellow;
font-weight: bolder;
}
.VideoLibrary:hover {
color: #D35400;
font-weight: bolder;
}
.Search:hover {
color: #D4AC0D;
font-weight: bolder;
}
.router__div--selected-item {
background-color: rgb(165, 127, 255);
font-size: smaller;
}
.router__button--check-out {
/* color:cadetblue; */
background-color: rgb(77, 253, 253);
}
.overdue {
background-color: #FF727B;
}