Deep Bot - Twitch Streamer Assistant

Deep Bot => Custom Notifications => Topic started by: DanSizn on April 21, 2017, 01:02:58 PM

Title: Custom Donation Notification
Post by: DanSizn on April 21, 2017, 01:02:58 PM
I am wanting to use my image/  http://i.imgur.com/FrmTgl0.png (http://i.imgur.com/FrmTgl0.png) and just use White Text to put the name and the amount the person donated a long with a space for any text that they might post with it.

Thank you
Title: Re: Custom Donation Notification
Post by: TheNumbLock on April 22, 2017, 11:29:56 AM
Requested by: DanSizn

Donation:

Link: http://deepbot.tv/notifications/donationnotification2.htm
Width: 650
Height: 150

CSS Code:
Code: [Select]
body {
    background-color: transparent;
    color: white;
}
sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}

#donor-notification {
    position: absolute;
    top: 0px;
    left: 0px !important;
    width: 500px !important;
    height: 100px !important;
    background-image: url(http://i.imgur.com/FrmTgl0.png) !important;
    background-repeat: no-repeat;
    background-size: contain !important;
}
#donor-notification .header {
visibility: hidden !important;
}
#donor-notification .streamname {
    float: left;
    visibility: hidden;
}
#donor-notification .message {
position: absolute;
margin-top: 50px !important;
margin-left: 150px !important;
width: 500px !important;
text-align: left !important;
font-weight: normal !important;
font-size: 20px !important;
font-family: Norwester !important;
color: white !important;
text-transform: capitalize !important;
-webkit-text-stroke-color: black;
-webkit-text-stroke-width: 0px;
text-shadow: none !important;
}
#donor-notification .amount {
position: absolute;
margin-top: -20px !important;
margin-left: -180px !important;
width: 300px !important;
text-align: center !important;
font-weight: bold !important;
font-size: 30px !important;
font-family: Norwester !important;
color: white !important;
text-transform: capitalize !important;
background: ;
-webkit-text-stroke-color: black !important;
-webkit-text-stroke-width: 0px;
text-shadow: none !important;
}
#donor-notification .donor {
position: absolute;
margin-top: -20px !important;
margin-left: -80px !important;
width: 300px !important;
text-align: center !important;
font-weight: bold !important;
font-size: 30px !important;
font-family: Norwester !important;
color: white !important;
text-transform: capitalize !important;
-webkit-text-stroke-color: black;
-webkit-text-stroke-width: 0px;
text-shadow: none !important;
}
#donor-notification .title {
    padding-top: 30px;
    width: 100%;
    float: left;
    text-align: center;
}
#donor-notification .messagebox {
    width: 100%;
    text-align: center;
}

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

(http://i.imgur.com/M27bKFS.png)
Title: Re: Custom Donation Notification
Post by: DanSizn on April 23, 2017, 04:03:07 PM
Thank you so much.