-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtoolbar.css
84 lines (72 loc) · 1.3 KB
/
toolbar.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
.toolBar {
z-index: 30;
display: flex;
width: 100%;
height: 50px;
background-color: rgb(255, 249, 224);
border-bottom: 1px solid rgb(224, 198, 124);
align-items: center;
position: fixed;
margin-bottom: 100px;
}
.homeButtonDiv {
width: 15%;
height: 100%;
position: relative;
left: 2%;
}
.homeButtonDiv:hover {
background-color: rgb(243, 224, 170);
cursor: pointer;
}
.myMenus {
width: 25%;
height: 100%;
position: relative;
right: -56%;
}
.hamburger {
width: 2.5%;
height: 75%;
position: relative;
right: -55.5%;
}
.hamburger:hover {
background-color: rgb(243, 224, 170);
cursor: pointer;
}
.homeButtonContents {
display: flex;
font-family: Barlow;
font-weight: 700;
height: 100%;
width: 100%;
justify-content: center;
align-items: center;
}
.myMenusContents {
display: flex;
height: 100%;
width: 100%;
justify-content: center;
align-items: center;
}
.hamburgerContents {
display: flex;
height: 100%;
width: 100%;
justify-content: center;
align-items: center;
}
.toolBarContents {
vertical-align: middle;
font-size: 20px;
}
#XD {
color: rgb(145, 111, 19);
margin-right: 4px;
}
#leagueName {
color: black;
margin-left: 3px;
}