-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRobotReconInBox_BotNameOnly.css
35 lines (30 loc) · 1.18 KB
/
RobotReconInBox_BotNameOnly.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
/* This is to eliminate all elements except the bot name in Robot Recon */
/* Can't seem to do wildcarding, so blanket elements are needed */
/* Default setup */
body {
background-color: rgba(0, 0, 0, 0);
margin: 0px auto;
overflow: hidden;
}
/* In Box Content */
/* Hiding the other images and text */
.no-bot-image { visibility: hidden; display: none }
.vs { visibility: hidden; display: none; }
.bot-image-wrapper { visibility: hidden; display: none; }
.app-bot-image { visibility: hidden; display: none; }
/* Since code is now baked in, we need to override defaults */
.text-center.md.hydrated { border-style: none; background: none; }
/* This is the bot name section */
/* We have to set a new width and height to match the OBS element, and center the text */
.bot-name.mb-3 {
color: Gainsboro;
text-shadow: 4px 4px 4px #454545;
font-family: Russo One;
font-size: 22px;
width: 240px; /* Set new width */
height: 90px; /* Set new height */
display: flex; /* Add Flexbox */
align-items: center; /* Vertically center content */
justify-content: center; /* Horizontally center content */
text-align: center; /* Center text horizontally */
}