Mensagens Automaticas
3 participantes
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre a aparência do fórum :: Questões resolvidas sobre a aparência do fórum
Página 1 de 1
Mensagens Automaticas
Detalhes da questão
Endereço do fórum: http://sigabemsamp.forumeiros.com
Versão do fórum: ModernBB
Descrição
Alguem poderia me ajudar a arrumar esse código de mensagens automaticas?
O resultado é esse: http://prntscr.com/j8qnlr
Uso esse código:
- Código:
$(function() {
if(_userdata["user_level"] == 1){
if (!$.sceditor) return;
$.sceditor.command.set('cmd', {
dropDown : function(editor, caller, callback) {
// Adicione abaixo as tags que farão parte da sua lista de comandos, separando-as por vírgula
var items = ['sucesso', 'alerta', 'aviso'];
var content = $(
'<div>' +
' <div>' +
' <label>Selecione uma tag</label>' +
' <select></select>' +
' </div>' +
' <div>' +
' <label>Título (opcional)</label>' +
' <input type="text" id="cmdValue" value="" />' +
' </div>' +
' <div>' +
' <input type="button" class="button" value="Inserir">' +
' </div>' +
'</div>'
);
$.each(items, function(key, val) {
content.find('select').append('<option class="sceditor-cmd-option" value="' + val + '">' + val + '</option>');
});
content.find('.button').click(function(e) {
callback(content.find('select').val());
editor.closeDropDown(true);
});
editor.createDropDown(caller, "cmd", content);
},
// WYSIWYG MODE
exec : function(caller) {
var editor = this;
$.sceditor.command.get('cmd').dropDown(editor, caller, function(cmd) {
var before = '[' + cmd + ']', end = '[/' + cmd + ']', title = $('#cmdValue').val();
if(title !== '') {
before = '[' + cmd + '="' + title + '"]';
editor.wysiwygEditorInsertHtml(before, end);
}
});
},
// SOURCE MODE
txtExec : function(caller) {
var editor = this;
$.sceditor.command.get('cmd').dropDown(editor, caller, function(cmd) {
var title = $('#cmdValue').val();
if(title) {
editor.insertText('[' + cmd + '="' + title + '"]','[/' + cmd + ']');
} else {
editor.insertText('[' + cmd + ']','[/' + cmd + ']');
}
});
}, tooltip: "Lista de comandos"});
toolbar = toolbar.replace(/quote/,'cmd,quote');
$('head').append(
'<style type="text/css">' +
'.sceditor-button-cmd div {' +
' background:url(https://cdn2.iconfinder.com/data/icons/snipicons/500/th-list-16.png) !important}' +
' .sceditor-cmd {' +
' width:auto;' +
' height:auto;' +
' overflow-y:auto;' +
'}' +
'.sceditor-cmd select {' +
' margin: 0 0 .75em;' +
'}' +
'</style>'
);
}
});
tem como ajudar a arrumar a cor dele? ele tem uma borda na cor vermelho escuro e o interior na cor vermelho claro, assim ocorre nas outras cores tambem, como aviso "laranja" e sucesso "verde"..... tem como deixar a mesma cor do interior igual a da borda???
Re: Mensagens Automaticas
- Código:
a[href="/u1"] {
text-shadow: 0px 0px 5px #1c1c1c;
}
/*************Fim Ranks*************/
.fundador {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.fundador.adm {
background-color: #FF00CC!important;
text-align:center;
}
.fundador:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.dono {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.dono.adm {
background-color: #FF2600!important;
text-align:center;
}
.dono:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.subdono {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.subdono.adm {
background-color: #9E006C!important;
text-align:center;
}
.subdono:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.gerente {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.gerente.adm {
background-color: #1E00FF!important;
text-align:center;
}
.gerente:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.supervisor {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.supervisor.adm {
background-color: #BA7C00!important;
text-align:center;
}
.supervisor:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.administrador {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 145px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.administrador.adm {
background-color: #0099FF!important;
text-align:center;
}
.administrador:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.moderador {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 130px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.moderador.adm {
background-color: #194587!important;
text-align:center;
}
.moderador:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.admintemp {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.admintemp.adm {
background-color: #FFAA00!important;
text-align:center;
}
.admintemp:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.helper {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.helper.adm {
background-color: #34B31B!important;
text-align:center;
}
.helper:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.designer {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.designer.adm {
background-color: #AB760D!important;
text-align:center;
}
.designer:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.socio {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.socio.adm {
background-color: #0ECCBC!important;
text-align:center;
}
.socio:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.vip {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.vip.adm {
background-color: #B5C204!important;
text-align:center;
}
.vip:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.membro {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.membro.adm {
background-color: #000000!important;
text-align:center;
}
.membro:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.pun .user .user-ident .user-basic-info {margin-bottom:-20px!important;}
/*************Fim Ranks*************/
/*************Neon Nicks Players*************/
a[href="/u1"] {
text-shadow: 0px 0px 5px #FF00D0;
}
/*************Fim Neon*************/
/*************Neon Categoria*************/
blue {
color: blue;
text-shadow: 0 0 5px blue;
}
red {
color: red;
text-shadow: 0 0 5px red;
}
orange {
color: orange;
text-shadow: 0 0 5px orange;
}
dodgerblue {
color: dodgerblue;
text-shadow: 0 0 5px dodgerblue;
}
dimgrey {
color: dimgrey;
text-shadow: 0 0 5px dimgrey;
}
darkolivegreen {
color: darkolivegreen;
text-shadow: 0 0 5px darkolivegreen;
}
purple {
color: purple;
text-shadow: 0 0 5px purple;
}
/*************Fim Neon Categoria*************/
/*************Hover*************/
.row .fa-hide-content {
display: none;
}
.row:hover .fa-hide-content {
display: block;
}
/*************Fim Hover*************/
/*************Reputaão*************/
.reputation {
background-color: rgb(141, 177, 62)!important;
background-image: url(http://i38.servimg.com/u/f38/17/31/71/58/highli10.png);
border--radius: 3px;
color: rgb(255, 255, 255);
font-weight: bold;
display: block;
margin: 0 auto;
margin-bottom: 3px;
padding: 3px 7px;
max-width: 125px;
text-align: center;
text-shadow: rgba(0, 0, 0, 0.298039) 0px -1px 0px;
background-position: 0px 1px;
background-repeat: repeat no-repeat;
}
.reputation.zero {
background-color: rgb(16, 16, 16)!important;
color: rgb(255, 255, 255);
}
/*************Fim Reputação*************/
/******STAFF ONLINE**********/
.monAva img {
height: 40px;
width: 40px;
margin-right: 5px;
background: none repeat scroll 0 0 #FFF;
border: 1px solid #d5d1c8;
box-shadow: 0 2px 2px rgba(0,0,0,0.1);
padding: 1px;
}
.monAva img:hover {
border: 1px solid black;
}
.myStaff a {
display:inline-block;
vertical-align:top;
margin-top:.75em;
}
/*******FIM STAFF ONLINE********/
/*************Botoes Personalizados*************/
.sucesso, .alerta, .aviso, .infos {
padding: 8px 8px 8px 40px;
width: 99%;
text-shadow: 0 1px 0 #FFFAF1;
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
font-weight: bold;
border-radius: 3px 3px 3px 3px;
}
.sucesso {
background: url('http://cdn3.iconfinder.com/data/icons/fatcow/32x32_0020/accept.png') no-repeat 6px #effeb9;
border: 1px solid #9ac601;
color: #4F8A10;
}
.alerta {
background: url('http://cdn1.iconfinder.com/data/icons/nuvola2/32x32/actions/messagebox_warning.png') no-repeat 6px #fccac3;
border: 1px solid #db3f23;
color: #D8000C;
}
.aviso {
background: url('http://cdn3.iconfinder.com/data/icons/fatcow/32x32_0400/error.png') no-repeat 6px #ffeaa9;
border: 1px solid #f9b516;
color: #9F6000;
}
.infos {
background: url('http://cdn1.iconfinder.com/data/icons/musthave/24/Information.png') no-repeat 6px #d1e4f3;
border: 1px solid #4d8fcb;
color: #00529B;
}
/*************Fim Botoes Personalizados*************/
* {
font-family: Arial !important;
}
Aqui está
Re: Mensagens Automaticas
Troque por este:
Até mais,
Fraise.
- Código:
a[href="/u1"] {
text-shadow: 0px 0px 5px #1c1c1c;
}
/*************Fim Ranks*************/
.fundador {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.fundador.adm {
background-color: #FF00CC!important;
text-align:center;
}
.fundador:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.dono {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.dono.adm {
background-color: #FF2600!important;
text-align:center;
}
.dono:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.subdono {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.subdono.adm {
background-color: #9E006C!important;
text-align:center;
}
.subdono:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.gerente {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.gerente.adm {
background-color: #1E00FF!important;
text-align:center;
}
.gerente:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.supervisor {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.supervisor.adm {
background-color: #BA7C00!important;
text-align:center;
}
.supervisor:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.administrador {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 145px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.administrador.adm {
background-color: #0099FF!important;
text-align:center;
}
.administrador:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.moderador {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 130px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.moderador.adm {
background-color: #194587!important;
text-align:center;
}
.moderador:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.admintemp {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.admintemp.adm {
background-color: #FFAA00!important;
text-align:center;
}
.admintemp:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.helper {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.helper.adm {
background-color: #34B31B!important;
text-align:center;
}
.helper:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.designer {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.designer.adm {
background-color: #AB760D!important;
text-align:center;
}
.designer:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.socio {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.socio.adm {
background-color: #0ECCBC!important;
text-align:center;
}
.socio:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.vip {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.vip.adm {
background-color: #B5C204!important;
text-align:center;
}
.vip:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.membro {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.membro.adm {
background-color: #000000!important;
text-align:center;
}
.membro:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.pun .user .user-ident .user-basic-info {margin-bottom:-20px!important;}
/*************Fim Ranks*************/
/*************Neon Nicks Players*************/
a[href="/u1"] {
text-shadow: 0px 0px 5px #FF00D0;
}
/*************Fim Neon*************/
/*************Neon Categoria*************/
blue {
color: blue;
text-shadow: 0 0 5px blue;
}
red {
color: red;
text-shadow: 0 0 5px red;
}
orange {
color: orange;
text-shadow: 0 0 5px orange;
}
dodgerblue {
color: dodgerblue;
text-shadow: 0 0 5px dodgerblue;
}
dimgrey {
color: dimgrey;
text-shadow: 0 0 5px dimgrey;
}
darkolivegreen {
color: darkolivegreen;
text-shadow: 0 0 5px darkolivegreen;
}
purple {
color: purple;
text-shadow: 0 0 5px purple;
}
/*************Fim Neon Categoria*************/
/*************Hover*************/
.row .fa-hide-content {
display: none;
}
.row:hover .fa-hide-content {
display: block;
}
/*************Fim Hover*************/
/*************Reputaão*************/
.reputation {
background-color: rgb(141, 177, 62)!important;
background-image: url(http://i38.servimg.com/u/f38/17/31/71/58/highli10.png);
border--radius: 3px;
color: rgb(255, 255, 255);
font-weight: bold;
display: block;
margin: 0 auto;
margin-bottom: 3px;
padding: 3px 7px;
max-width: 125px;
text-align: center;
text-shadow: rgba(0, 0, 0, 0.298039) 0px -1px 0px;
background-position: 0px 1px;
background-repeat: repeat no-repeat;
}
.reputation.zero {
background-color: rgb(16, 16, 16)!important;
color: rgb(255, 255, 255);
}
/*************Fim Reputação*************/
/******STAFF ONLINE**********/
.monAva img {
height: 40px;
width: 40px;
margin-right: 5px;
background: none repeat scroll 0 0 #FFF;
border: 1px solid #d5d1c8;
box-shadow: 0 2px 2px rgba(0,0,0,0.1);
padding: 1px;
}
.monAva img:hover {
border: 1px solid black;
}
.myStaff a {
display:inline-block;
vertical-align:top;
margin-top:.75em;
}
/*******FIM STAFF ONLINE********/
/*************Botoes Personalizados*************/
.sucesso, .alerta, .aviso, .infos {
padding: 8px 8px 8px 40px;
width: 99%;
text-shadow: 0 1px 0 #FFFAF1;
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
font-weight: bold;
border-radius: 3px 3px 3px 3px;
}
.sucesso {
background: url('http://cdn3.iconfinder.com/data/icons/fatcow/32x32_0020/accept.png') no-repeat 6px #effeb9;
background-color: #9ac601!important;
color: #4F8A10;
}
.alerta {
background: url('http://cdn1.iconfinder.com/data/icons/nuvola2/32x32/actions/messagebox_warning.png') no-repeat 6px #fccac3;
background-color: #db3f23!important;
color: #D8000C;
}
.aviso {
background: url('http://cdn3.iconfinder.com/data/icons/fatcow/32x32_0400/error.png') no-repeat 6px #ffeaa9;
background-color: #f9b516!important;
color: #9F6000;
}
.infos {
background: url('http://cdn1.iconfinder.com/data/icons/musthave/24/Information.png') no-repeat 6px #d1e4f3;
background-color: #4d8fcb!important;
color: #00529B;
}
/*************Fim Botoes Personalizados*************/
* {
font-family: Arial !important;
}
Até mais,
Fraise.
Re: Mensagens Automaticas
ficou como pedi!!!
http://prntscr.com/j8xkaf
Obrigado
Mas ainda tem um problema, tem como tira essa background branca da letra?
http://prntscr.com/j8xkaf
Obrigado
Mas ainda tem um problema, tem como tira essa background branca da letra?
Re: Mensagens Automaticas
Altere para este:
- Código:
a[href="/u1"] {
text-shadow: 0px 0px 5px #1c1c1c;
}
/*************Fim Ranks*************/
.fundador {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.fundador.adm {
background-color: #FF00CC!important;
text-align:center;
}
.fundador:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.dono {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.dono.adm {
background-color: #FF2600!important;
text-align:center;
}
.dono:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.subdono {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.subdono.adm {
background-color: #9E006C!important;
text-align:center;
}
.subdono:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.gerente {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.gerente.adm {
background-color: #1E00FF!important;
text-align:center;
}
.gerente:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.supervisor {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.supervisor.adm {
background-color: #BA7C00!important;
text-align:center;
}
.supervisor:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.administrador {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 145px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.administrador.adm {
background-color: #0099FF!important;
text-align:center;
}
.administrador:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.moderador {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 130px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.moderador.adm {
background-color: #194587!important;
text-align:center;
}
.moderador:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.admintemp {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.admintemp.adm {
background-color: #FFAA00!important;
text-align:center;
}
.admintemp:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.helper {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.helper.adm {
background-color: #34B31B!important;
text-align:center;
}
.helper:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.designer {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.designer.adm {
background-color: #AB760D!important;
text-align:center;
}
.designer:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.socio {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.socio.adm {
background-color: #0ECCBC!important;
text-align:center;
}
.socio:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.vip {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.vip.adm {
background-color: #B5C204!important;
text-align:center;
}
.vip:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.membro {
background: url(http://i.imgur.com/nmBh3WZ.png);
border-radius: 3px;
box-shadow: 1px 2px 11px rgba(0,0,0,0.29);
color: #fff;
font-family: 'Roboto Condensed'!important;
font-size: 13px;
font-weight: 400;
height: 25px;
line-height: 25px;
margin: 10px auto 0;
max-width: 120px;
padding: 0;
position: relative;
text-shadow: 1px -1px rgba(0,0,0,0.29);
text-transform: uppercase;
}
div.membro.adm {
background-color: #000000!important;
text-align:center;
}
.membro:before {
border-right: 1px solid rgba(255,255,255,0.55);
content: "SBC";
float: left;
margin-top: -5px;
padding: 5px 5px 0;
}
.pun .user .user-ident .user-basic-info {margin-bottom:-20px!important;}
/*************Fim Ranks*************/
/*************Neon Nicks Players*************/
a[href="/u1"] {
text-shadow: 0px 0px 5px #FF00D0;
}
/*************Fim Neon*************/
/*************Neon Categoria*************/
blue {
color: blue;
text-shadow: 0 0 5px blue;
}
red {
color: red;
text-shadow: 0 0 5px red;
}
orange {
color: orange;
text-shadow: 0 0 5px orange;
}
dodgerblue {
color: dodgerblue;
text-shadow: 0 0 5px dodgerblue;
}
dimgrey {
color: dimgrey;
text-shadow: 0 0 5px dimgrey;
}
darkolivegreen {
color: darkolivegreen;
text-shadow: 0 0 5px darkolivegreen;
}
purple {
color: purple;
text-shadow: 0 0 5px purple;
}
/*************Fim Neon Categoria*************/
/*************Hover*************/
.row .fa-hide-content {
display: none;
}
.row:hover .fa-hide-content {
display: block;
}
/*************Fim Hover*************/
/*************Reputaão*************/
.reputation {
background-color: rgb(141, 177, 62)!important;
background-image: url(http://i38.servimg.com/u/f38/17/31/71/58/highli10.png);
border--radius: 3px;
color: rgb(255, 255, 255);
font-weight: bold;
display: block;
margin: 0 auto;
margin-bottom: 3px;
padding: 3px 7px;
max-width: 125px;
text-align: center;
text-shadow: rgba(0, 0, 0, 0.298039) 0px -1px 0px;
background-position: 0px 1px;
background-repeat: repeat no-repeat;
}
.reputation.zero {
background-color: rgb(16, 16, 16)!important;
color: rgb(255, 255, 255);
}
/*************Fim Reputação*************/
/******STAFF ONLINE**********/
.monAva img {
height: 40px;
width: 40px;
margin-right: 5px;
background: none repeat scroll 0 0 #FFF;
border: 1px solid #d5d1c8;
box-shadow: 0 2px 2px rgba(0,0,0,0.1);
padding: 1px;
}
.monAva img:hover {
border: 1px solid black;
}
.myStaff a {
display:inline-block;
vertical-align:top;
margin-top:.75em;
}
/*******FIM STAFF ONLINE********/
/*************Botoes Personalizados*************/
.sucesso, .alerta, .aviso, .infos {
padding: 8px 8px 8px 40px;
width: 99%;
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
font-weight: bold;
border-radius: 3px 3px 3px 3px;
}
.sucesso {
background: url('http://cdn3.iconfinder.com/data/icons/fatcow/32x32_0020/accept.png') no-repeat 6px #effeb9;
background-color: #9ac601!important;
color: #4F8A10;
}
.alerta {
background: url('http://cdn1.iconfinder.com/data/icons/nuvola2/32x32/actions/messagebox_warning.png') no-repeat 6px #fccac3;
background-color: #db3f23!important;
color: #D8000C;
}
.aviso {
background: url('http://cdn3.iconfinder.com/data/icons/fatcow/32x32_0400/error.png') no-repeat 6px #ffeaa9;
background-color: #f9b516!important;
color: #9F6000;
}
.infos {
background: url('http://cdn1.iconfinder.com/data/icons/musthave/24/Information.png') no-repeat 6px #d1e4f3;
background-color: #4d8fcb!important;
color: #00529B;
}
/*************Fim Botoes Personalizados*************/
* {
font-family: Arial !important;
}
Tópicos semelhantes
» Mensagens Automaticas
» Mensagens automáticas
» Mensagens Automaticas
» Mensagens Automaticas?
» Colocar mensagens automáticas
» Mensagens automáticas
» Mensagens Automaticas
» Mensagens Automaticas?
» Colocar mensagens automáticas
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre a aparência do fórum :: Questões resolvidas sobre a aparência do fórum
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos