-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaosb.css
93 lines (82 loc) · 3.15 KB
/
aosb.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
84
85
86
87
88
89
90
91
92
93
.tab-info,
.tab-team-info {
display: flex !important;
box-shadow: unset !important;
border-radius: 0.5rem !important;
max-width: 30rem !important;
top: 0 !important;
right: 0 !important;
position: fixed;
margin: 0.5rem !important;
padding: 0 !important; /* Removed padding inside the big box */
}
.tab-team-info .players-cont {
flex-direction: column !important;
}
.tab-info .player-list,
.tab-team-info .player-list {
margin: unset !important;
gap: 0.25rem;
padding: 0 0.5rem !important; /* Keep left and right padding, remove top and bottom padding */
}
.tab-info > .head,
.tab-team-info > .head {
display: none;
}
/* Red Team Box - Remove "RED" text and red bar, add left red border with radius */
.tab-team-info .player-list:nth-child(1)::before {
content: ""; /* Remove the "RED" text */
background-color: transparent; /* Remove the red background */
padding: 0; /* Remove padding */
margin: 0; /* Remove margin */
}
.tab-team-info .player-list:nth-child(1) {
border-left: 4px solid #ff4d42; /* Adjust thickness here (e.g., 2px, 6px) */
border-top: none; /* Ensure no top border */
border-right: none; /* Ensure no right border */
border-bottom: none; /* Ensure no bottom border */
border-top-left-radius: 8px; /* Add radius to top-left corner */
border-bottom-left-radius: 8px; /* Add radius to bottom-left corner */
padding-left: 0.5rem !important; /* Keep left padding */
padding-right: 0.5rem !important; /* Keep right padding */
padding-top: 0 !important; /* Remove top padding */
padding-bottom: 0 !important; /* Remove bottom padding */
}
/* Blue Team Box - Remove "BLUE" text and blue bar, add left blue border with radius */
.tab-team-info .player-list:nth-child(2)::before {
content: ""; /* Remove the "BLUE" text */
background-color: transparent; /* Remove the blue background */
padding: 0; /* Remove padding */
margin: 0; /* Remove margin */
}
.tab-team-info .player-list:nth-child(2) {
border-left: 4px solid #0d6dc6; /* Adjust thickness here (e.g., 2px, 6px) */
border-top: none; /* Ensure no top border */
border-right: none; /* Ensure no right border */
border-bottom: none; /* Ensure no bottom border */
border-top-left-radius: 8px; /* Add radius to top-left corner */
border-bottom-left-radius: 8px; /* Add radius to bottom-left corner */
padding-left: 0.5rem !important; /* Keep left padding */
padding-right: 0.5rem !important; /* Keep right padding */
padding-top: 0 !important; /* Remove top padding */
padding-bottom: 0 !important; /* Remove bottom padding */
}
.tab-info .list,
.tab-team-info .player-list > .list {
order: 999;
}
.tab-info .players-wrap,
.tab-team-info .players-wrap {
padding: 0 !important; /* Removed padding to decrease height */
}
.tab-info .player-cont,
.tab-team-info .player-cont {
margin: unset;
padding: 0 !important; /* Removed padding to decrease height */
font-size: 0.8rem; /* Reduced font size to fit smaller height */
line-height: 1.2; /* Adjusted line height for better spacing */
}
.kill-bar-cont {
right: 31.5rem !important;
top: 0.5rem !important;
}