Deep Bot - Twitch Streamer Assistant

Deep Bot => Custom Notifications => Topic started by: jaykeo on March 22, 2016, 06:47:52 AM

Title: Custom donation and follow alerts
Post by: jaykeo on March 22, 2016, 06:47:52 AM
I would like to add the following two gifs on each side of the bar in this png file to use as a follow alert: http://i.imgur.com/HiiQFWj.png

http://i.giphy.com/ykAWwKmzL40ta.gif
http://i.giphy.com/2OzR1qvXXbuIE.gif

Would this be possible?  The current formatting I have for this follower alert is:
#follow-notification .header {
padding-top: 5px !important;
visibility: visible !important;
width: 2560px !important;
font-size: 32px !important;
}
#follow-notification .followname {
  padding-top: 5px !important;
  font-family: Algerian !important;
  width: 2560px !important;
  color: #37b2e5 !important;
  font-size: 50px !important;
  margin-left: 0px !important;
}
#follow-notification {
 background-image: url('http://i.imgur.com/HiiQFWj.png') !important;
 width: 2560px !important;
 height: 300px !important;
}

Also could I get the same thing with this gif on either side of this donation alert: http://i.giphy.com/vHgbmjyLqn9V6.gif

#donor-notification {
 width: 2560px !important;
 height: 250px !important;
 background-color: transparent !important;
 background-image:url('http://i.imgur.com/HiiQFWj.png') !important;
}

#donor-notification .title {
 padding-top: 0px !important;
}

Please let me know if this is possible.  Thanks very much in advance.
Title: Re: Custom donation and follow alerts
Post by: TheNumbLock on March 24, 2016, 01:26:21 PM
Requested by: Jaykeo

Follower:

Link: http://deepbot.tv/notifications/follownotification1.htm?top=1
Width: 2560
Height: 1440

CSS Code:
Code: [Select]
#follow-notification {
display: none;
position: absolute;
left: 0px !important;
width: 2560px !important;
height: 1440px !important;
border-radius: 00px !important;
background-size: contain !important;
background-image: url('http://i.imgur.com/HiiQFWj.png') !important;
background-repeat: no-repeat;
}

#follow-notification .header {
text-align: right !important;
width: 500px;
margin-top: 10px !important;
margin-left: 950px !important;
vertical-align: top;
font-size: 54px !important;
line-height: 26px;
font-family: Impact !important;
text-shadow: 1px 1px 1px #97A02A;
text-decoration: none !important;
color: white !important;
visibility: visible !important;
padding-top: -50px;
}

#follow-notification .followname {
position: absolute !important;
text-align: center !important;
margin-top: -40px !important;
margin-left: 950px !important;
width: 700px !important;
font-size: 54px !important;
font-weight: normal !important;
font-family: Impact !important;
color: green !important;
text-transform: capitalize;
-webkit-text-fill-color: white;
-webkit-text-stroke-color: red;
-webkit-text-stroke-width: 0.1px;
text-shadow: 10px white !important;
}
 
.followname:before {
content: url('http://i.imgur.com/t6EPU04.gif') !important;
top: 30px !important;
position: relative;
}

.followname:after {
content: url('http://i.imgur.com/t6EPU04.gif') !important;
top: 30px !important;
position: relative;
}

Preview: (If there is a black background, it is just my background.)

(http://puu.sh/nRXSD/a86f4e6f06.png)


Donation:

Link: http://deepbot.tv/notifications/donationnotification2.htm?top=1
Width: 2560
Height: 1440

CSS Code:
Code: [Select]
#donor-notification {
position: absolute;
top: 0px !important;
left: 0px !important;
width: 2560px !important;
height: 1440px !important;
background-repeat: no-repeat;
background-size: contain !important;
background-image: url('http://i.imgur.com/HiiQFWj.png') !important;
overflow: ahidden !important;
}
#donor-notification .header {
visibility: hidden !important;
}

#donor-notification .date {
visibility: hidden !important;
}

#donor-notification .streamname {
visibility: hidden !important;
}

#donor-notification .message {
position: absolute;
margin-top: 120px !important;
margin-left: 900px !important;
width: 800px !important;
padding-top: 0px !important;
text-align: center !important;
font-weight: normal !important;
font-size: 32px !important;
font-family: Impact !important;
color: white !important;
text-transform: capitalize;
-webkit-text-stroke-color: red;
-webkit-text-stroke-width: 0.1px;
text-shadow: 3px !important;
}
#donor-notification .amount {
position: absolute;
margin-top: -120px !important;
margin-left: -50px !important;
width: 600px !important;
padding-top: 0px !important;
text-align: center !important;
font-weight: normal !important;
font-size: 58px !important;
font-family: Impact !important;
color: white !important;
text-transform: capitalize;
-webkit-text-stroke-color: red;
-webkit-text-stroke-width: 0.1px;
text-shadow: 3px !important;
}
#donor-notification .donor {
position: absolute;
margin-top: -120px !important;
margin-left: -420px !important;
width: 600px !important;
text-align: center !important;
font-weight: normal !important;
font-size: 58px !important;
font-family: Impact !important;
color: white !important;
text-transform: capitalize;
-webkit-text-stroke-color: red;
-webkit-text-stroke-width: 0.1px;
text-shadow: 3px !important;
}

.donor:before {
content: url('http://i.imgur.com/Vr5938c.gif') !important;
top: 50px !important;
position: relative;
}

.amount:after {
content: url('http://i.imgur.com/Vr5938c.gif') !important;
top: 50px !important;
position: relative;
}

Preview: (If there is a black background, it is just my background.)

(http://puu.sh/nRXyW/45d3bfd0b7.png)
Title: Re: Custom donation and follow alerts
Post by: jaykeo on March 24, 2016, 01:57:20 PM
That looks fantastic :D.  Is there any way to leave the "New Follower" text and the donation message?
Title: Re: Custom donation and follow alerts
Post by: TheNumbLock on March 24, 2016, 02:55:12 PM
That looks fantastic :D.  Is there any way to leave the "New Follower" text and the donation message?

Let me see what I can do.

Edit: Updated Post with new CSS/Images
Title: Re: Custom donation and follow alerts
Post by: jaykeo on March 24, 2016, 03:33:13 PM
Sorry never mind it was working, I just needed to update the URL.  Thanks again!