-
Notifications
You must be signed in to change notification settings - Fork 1
/
bungie.css
59 lines (50 loc) · 1.07 KB
/
bungie.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
#left, #right, #bungie {
padding: 0 10px;
overflow: hidden;
height: 100%;
}
#left {
float: left;
}
#right {
float: right;
}
#bungie {
float: left;
white-space: nowrap;
}
#bungie li {
list-style-type: none;
display: inline-block;
padding: 0 10px;
white-space: nowrap;
margin-left: -4px;
}
#left-btn, #right-btn {
height: 40px;
display: inline-block;
font-size: 28px;
background-color: transparent;
border: none;
color: white;
margin-top: 5px;
width: 22px;
}
#left-btn {
float: left;
border-right: 1px solid white;
}
#right-btn {
float: right;
border-left: 1px solid white;
}
#left-btn::before {
/* This is the HTML character ‹ */
/* Can be substituted with ⟨ or another character; just may require tweaking css elsewhere */
content: "‹";
}
#right-btn::before {
/* This is the HTML character › */
/* Can be substituted with ⟩ or another character; just may require tweaking css elsewhere */
content: "›";
}