-
Notifications
You must be signed in to change notification settings - Fork 0
/
bottomBar.css
76 lines (64 loc) · 1.32 KB
/
bottomBar.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
/* ......................................................... */
/* Bottom Bar */
/* <!-- This is common for all pages --> */
#Final-bottom {
background-color: #f8f9fa;
margin-bottom: 50px;
}
#bottom-1 {
display: flex;
width: 80%;
border: 0px solid blue;
margin: auto;
justify-content: space-between;
padding: 50px 0px 30px 0px;
margin-top: 50px;
}
#bottom-1 > div {
display: flex;
width: 30%;
border: 0px solid red;
justify-content: space-evenly;
align-items: center;
}
div > select {
width: 50%;
height: 22.5px;
margin-left: 15px;
font-size: 16px;
font-family: 'Roboto', sans-serif;
}
#bottom-1 > div > a {
font-size: 13px;
color: rgb(117, 117, 117);
font-family: 'Poppins', sans-serif;
font-weight: 500;
text-decoration: none;
}
hr {
color: rgb(203, 200, 200);
width: 100%;
}
#bottom-2 {
width: 81%;
margin: auto;
display: flex;
justify-content: flex-end;
/* justify-content: space-around; */
border: 0px solid red;
align-items: center;
}
#bottom-2 > span {
font-size: 13px;
color: rgb(117, 117, 117);
font-family: 'Poppins', sans-serif;
font-weight: 500;
padding-right: 20px;
}
#bottom-2 > img {
width: 2.2%;
padding: 17px;
}
#bottom-2 > img:hover {
cursor: pointer;
}