Author Topic: CSS for Donation and Followers  (Read 1973 times)

0 Members and 1 Guest are viewing this topic.

Spektral50

  • Youngling
  • *
  • Posts: 9
  • Karma: +0/-0
    • View Profile
  • Twitch Name: Spektral50
CSS for Donation and Followers
« on: April 08, 2015, 12:03:41 AM »
Looking for help with the CSS work Thank you very much


Donation
http://i.imgur.com/UWs6bbP.png

New follower
http://i.imgur.com/wKkIbvU.png

TheNumbLock

  • Advisor
  • Councilor
  • **
  • Posts: 4776
  • Karma: +137/-5
    • View Profile
  • Twitch Name: TheNumbLock
Re: CSS for Donation and Followers
« Reply #1 on: April 08, 2015, 12:31:34 AM »
Any font style you prefer?
Font color?
Font border/shadow?
Old Name: RepentGamingTV
Twitch: Here

Need help ASAP?
Join Deepbot's Discord: Discord.Deepbot.tv
Deepbot's Twitter: @DeepSupport

Spektral50

  • Youngling
  • *
  • Posts: 9
  • Karma: +0/-0
    • View Profile
  • Twitch Name: Spektral50
Re: CSS for Donation and Followers
« Reply #2 on: April 08, 2015, 01:09:11 AM »
Didn't really think about that lol I think white seems to look good with the colors and a standard font is fine thank you very much

TheNumbLock

  • Advisor
  • Councilor
  • **
  • Posts: 4776
  • Karma: +137/-5
    • View Profile
  • Twitch Name: TheNumbLock
Re: CSS for Donation and Followers
« Reply #3 on: April 08, 2015, 02:00:20 AM »
Requested by: Spektral50

Follower:

Link: http://deepbot.tv/notifications/follownotification1.htm
Width: 500
Height: 200

CSS Code:
Code: [Select]
#follow-notification {
display: none;
position: absolute;
width: 500px !important;
height: 100px !important;
border-radius: 00px !important;
background-image: url('http://i.imgur.com/wKkIbvU.png') !important;
background-repeat: no-repeat;
}
#follow-notification .followname {
position: absolute !important;
text-align: center !important;
margin-top: 10px !important;
margin-left: 50px !important;
margin-right: 100px !important;
width: 400px !important;
font-size: 24px !important;
font-weight: normal !important;
font-family: impact;
color: white !important;
}

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





Donation:

Link: http://deepbot.tv/notifications/donationnotification2.htm
Width: 500
Height: 200

CSS Code:
Code: [Select]
#donor-notification {
width: 500px !important;
height: 100px !important;
background-color: transparent !important;
background-image:url('http://i.imgur.com/UWs6bbP.png') !important;
background-repeat: no-repeat !important;
background-size: initial !important;
text-shadow: none !important;
}


#donor-notification .header {
position: absolute !important;
visibility: hidden !important;
}

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

#donor-notification .message {
visibility: hidden !important;
}
#donor-notification .amount {
position: absolute !important;
text-align: center !important;
margin-top: -5px !important;
margin-left: 170px !important;
margin-right: 0px !important;
width: 300px !important;
font-size: 22px !important;
font-weight: normal !important;
font-family: impact !important;
color: white !important;
}
#donor-notification .donor {
position: absolute !important;
text-align: center !important;
margin-top: -5px !important;
margin-left: 50px !important;
margin-right: 0px !important;
width: 300px !important;
font-size: 22px !important;
font-weight: normal !important;
font-family: impact !important;
color: white !important;
}

#donor-notification .title {
padding-top: 44px !important;
margin-left: 0px !important;
width: 100% !important;
float: left !important;
text-align: left !important;
}

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

Old Name: RepentGamingTV
Twitch: Here

Need help ASAP?
Join Deepbot's Discord: Discord.Deepbot.tv
Deepbot's Twitter: @DeepSupport