Кому нужна помощь? пишите!

  • Автор темы webdizinfo
  • Дата начала
Andreys
Участник
Сообщения
576
Реакции
40
  • #421
vestmix написал(а):
Или скажите где в css находятся они, вход:статистика:окна где текст (в том смысле где их можно поменять местами) или это файл какой то?
Это может в Css в стилях, нужно смотреть так не угад не скажешь.
А можно просто Делаешь таблицу. из двух колонок.
Код:
<table border="1" cellpadding="1" cellspacing="1" style="width: 500px">
    <tbody>
        <tr>
            <td>
                1</td>
            <td>
                2</td>
        </tr>
    </tbody>
</table>
В колонку 1, перемещаешь -вход и статистику- в колонку 2 -текст который с права-.
 
vestmix
Участник
Сообщения
146
Реакции
4
  • #422
Andreys написал(а):
Это может в Css в стилях, нужно смотреть так не угад не скажешь.
А можно просто Делаешь таблицу. из двух колонок.
Код:
<table border="1" cellpadding="1" cellspacing="1" style="width: 500px">
    <tbody>
        <tr>
            <td>
                1</td>
            <td>
                2</td>
        </tr>
    </tbody>
</table>
В колонку 1, перемещаешь -вход и статистику- в колонку 2 -текст который с права-.
Вопрос, уже давно решил, так спасибо за ответ)
 
Vasya000
Местный
Сообщения
35
Реакции
2
  • #423
Здравствуйте. Помогите... Нужен модуль (плагин) привязки платежного кошелька для FF скрипта.Так чтоб привязать кошелек в настройках аккаунта пользователя.
 
wh1skas
wildcake
Участник
Сообщения
1.017
Реакции
432
ICQ
564739604 564739604
  • #424
Vasya000 написал(а):
Здравствуйте. Помогите... Нужен модуль (плагин) привязки платежного кошелька для FF скрипта.Так чтоб привязать кошелек в настройках аккаунта пользователя.
Такое можно запилить, а вообще, если не ошибаюсь, то здесь где-то было уже такое. А по факту, если требуется надежная защита сейчас, то могу предложить скрипт нового платежного пароля:
https://servahoc.ru/threads/moduli-i-skripty-dlja-fruktovyx-ferm-uslugi-na-zakaz.883/page-2#post-15134
 
vestmix
Участник
Сообщения
146
Реакции
4
  • #425
Vasya000 написал(а):
Здравствуйте. Помогите... Нужен модуль (плагин) привязки платежного кошелька для FF скрипта.Так чтоб привязать кошелек в настройках аккаунта пользователя.
Делайте выплаты с каких были пополнения - если просят выплату с другого кошелька отменяйте и пишите причину на почту.
Также и с ip, я думаю все элементарно, для этого даже сриптов не надо. Если конечно у вас не авто выплаты, но их лучше не ставить, FF какая бы она не была, дыры там есть про которые мы не знаем.
 
vestmix
Участник
Сообщения
146
Реакции
4
  • #426
Есть проект dragons-gold.ru (не реклама, нашел на просторах интернета).
Как сделать такую же поло-прозрачную область именно такой же формы? скрин :http://prntscr.com/8c4hly

Вот CSS данного проекта :
Код:
/*---buttons---*/
.btn {
cursor: pointer;
display: inline-block;
background-color: #E6E6E6;
background-repeat: no-repeat;
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
padding: 5px 14px 6px;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
color: #333;
font-size: 13px;
line-height: normal;
border: 1px solid #CCC;
border-bottom-color: #BBB;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
-webkit-transition: 0.1s linear all;
-moz-transition: 0.1s linear all;
-ms-transition: 0.1s linear all;
-o-transition: 0.1s linear all;
transition: 0.1s linear all;
border-image: initial;
}
.btn:hover {
background-position: 0 -15px;
color: #333;
text-decoration: none;
}
.btn:focus {
outline: 1px dotted #666;
text-decoration: none;
}
/*---buttons---*/


/*---Стиль формы---*/

.find1 {
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
transition: border linear 0.2s, box-shadow linear 0.2s;
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
display: inline-block;
width: 210px;
height: 20px;
padding: 4px;
font-size: 13px;
line-height: 18px;
color: gray;
border: 1px solid #CCC;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border-image: initial;

}
.find1:focus {
outline: 0;
border-color: rgba(82, 168, 236, 0.8);
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
}
/*---Стиль формы---*/


/*---Дополнительные стили---*/
.reserlog, .resetlog li {
list-style: none;
padding-left: 12px;
margin: 0;
}

/*---Дополнительные стили---*/
/*********** FONTS *******
@font-face {
  font-family: "ptsans";
  src: url("/fonts/ptsans.ttf");
  font-size: 13px;
}
****/
@import "http://webfonts.ru/import/ptsans.css";
@import "http://webfonts.ru/import/lobster.css";



* {
  margin: 0;
  padding: 0;
}


A {
    color: gold; text-decoration: none; /* Цвет ссылок */
   }

A:hover {
   }

html
{
  height: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}
body
{
  font: 12px Verdana;
  width: 100%;
  height: 100%;
}
.wrapper
{
  width: 100%;
  margin: 0 auto;
  min-height: 100%;
  height: auto !important;
  height: 100%;
}


/* Header
-----------------------------------------------------------------------------*/
.header
{
  height: 160px;
    border: 0px;
  border-radius: 10px;
  background: url(/img/wrapback1.png) 100% 100%  no-repeat gold;
  background-size: cover;
}


/* Middle
-----------------------------------------------------------------------------*/
.middle
{
  width: 100%;
  padding: 0 0 100px;
  position: relative;
}
.middle:after
{
  display: table;
  clear: both;
  content: '';
}
.container
{
  width: 100%;
  float: left;
  overflow: hidden;

 
}
.content
{
  padding: 0 0 0 270px;
}

.menuzag
{
  float: center; 
  background: #BFF08E;
  border-radius: 10px;
  padding: 5px;
  margin: 10px;
}
.menu
{
    background: #FFF;
  margin-top: 65px;
  border: 0px;
  border-radius: 10px;
  padding: 15px;
  font-size: 16px;
    font-family: "Verdana";
  line-height: 1.2;
}
.men
{
    background: #FFF;
  margin-top: 15px;
  border: 0px;
  border-radius: 10px;
  padding: 15px;
  font-size: 16px;
    font-family: "Verdana";
  line-height: 1.2;
}
.dragon
{
    float:left;
    padding-right: 10px;
        display:inline-block;  
    position:relative;
}

.dragon img {
    border-radius:10px;
    border:3px solid #cdcdcd;
   
}

.dragon span {
    display:inline-block;
    position:absolute;
    top:93px;  
    right:15px;
    
    /* Оформление текста */
    color:#FFF;
    font-family:Arial, Helvetica, sans-serif;
    font-size:40px;
}



.bydragon {
color: white;
background: #3D994E;
width: auto;
height: 135px;
margin-top: 20px;
    border-radius:10px;
        padding: 10px;
}
.bydragon2 {
color: white;
background: #993D3D;
width: auto;
height: 135px;
margin-top: 20px;
    border-radius:10px;
        padding: 10px;
}

.bydragon3 {
color: white;
background: #404040;
width: auto;
height: 135px;
margin-top: 20px;
    border-radius:10px;
        padding: 10px;
}

.bydragon4 {
color: white;
background: #3D4F99;
width: auto;
height: 135px;
margin-top: 20px;
    border-radius:10px;
        padding: 10px;
}

.bydragon5 {
color: white;
background: #7B3D99;
width: auto;
height: 135px;
margin-top: 20px;
    border-radius:10px;
        padding: 10px;
}
/* Left Sidebar
-----------------------------------------------------------------------------*/
.left-sidebar
{
line-height: 1.2;
font-weight: normal;
  float: left;
  width: 255px;
  margin-left: -100%;
  position: relative;
      margin-top: 50px;
}
.left-menu
{
  background: #004A7F;
  margin-top: 15px;
  border: 0px;
  border-radius: 10px;
  padding: 15px;
  color: #ffffff;
   font-size: 16px;
       background: -moz-linear-gradient(top, #0b2b61, #1153c0);
    background: -ms-linear-gradient(top, #0b2b61, #1153c0);
    background: -o-linear-gradient(top, #0b2b61, #1153c0);
    background: -webkit-gradient(linear, left top, left bottom, from(#0b2b61), to(#1153c0));
box-shadow: 2px 3px 10px #011331;
    -moz-box-shadow: 2px 3px 10px #011331;
    -webkit-box-shadow: 2px 3px 10px #011331;
}
.left-menu A {
    color: gold; text-decoration: none; /* Цвет ссылок */
    /* Жирное начертание */
    font-size: 16px;
   }

.left-menu A:hover {
    color: #000; /* Цвет активных ссылок */
    text-shadow: 0 0 10px #ffff00 !important;
   }
.left-head
{
    font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding-bottom: 5px;
}

hr {
  border-bottom:1px solid #fff;
    margin-bottom: 5px;
}

.err
{
  margin-top: 15px;
  font-size: 15px;
  background: #9B1424;
  border: 2px;
  border-radius: 10px;
  color: #ffffff;
  border-color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 5px;
  border-style: solid;
}
.good
{
  margin-top: 15px;
  font-size: 15px;
  background: #306100;
  border: 2px;
  border-radius: 10px;
  color: #ffffff;
  border-color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 5px;
  border-style: solid;
}

/* Footer
-----------------------------------------------------------------------------*/
.footer
{  background: #BFF08E;
  border-radius: 10px;
  padding: 5px 5px 1px 10px;
   width: auto;
   height: 35px;
          background: -moz-linear-gradient(top, #306100, #BFF08E);
    background: -ms-linear-gradient(top, #306100, #BFF08E);
    background: -o-linear-gradient(top, #306100, #BFF08E);
    background: -webkit-gradient(linear, left top, left bottom, from(#306100), to(#BFF08E));
box-shadow: 2px 3px 10px #011331;
    -moz-box-shadow: 2px 3px 10px #011331;
    -webkit-box-shadow: 2px 3px 10px #011331;
}
.copy {
width: auto;
font-family: verdana;
font-size:12px;
font-weight:bold;
  color: #fff;
text-shadow: 0px 1px 0px #306100; /* цвет должен быть темнее фона, 1px или -1px, в зависимости от цвета фона(светлый или темный) */
    border-left: 2px solid #ccc; /* Параметры линии */
    margin-left: 2px; /* Отступ слева */
    padding-left: 10px; /* Расстояние от линии до текста */
    float: right;
    margin-right: 50px;
   }
   .banner { float: left;
   }
#containers {
    width: 100%;
    margin: 10px;
}
ul, li {
    margin: 0;
    padding: 0;
}
#blob {
    background: #0b2b61;
    border-right: 1px solid #0059ec;
    border-left: 1px solid #0059ec;
    position: absolute;
    z-index: 1;
    top: 0;
    background: -moz-linear-gradient(top, #0b2b61, #1153c0);
    background: -ms-linear-gradient(top, #0b2b61, #1153c0);
    background: -o-linear-gradient(top, #0b2b61, #1153c0);
    background: -webkit-gradient(linear, left top, left bottom, from(#0b2b61), to(#1153c0));
     border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    box-shadow: 2px 3px 10px #011331;
    -moz-box-shadow: 2px 3px 10px #011331;
    -webkit-box-shadow: 2px 3px 10px #011331;
}
#nav {
    position: relative;
    background: #292929;
    float: left;
}
#nav li {
    float: left;
    list-style: none;
    border-right: 1px solid #4a4a4a;
    border-left: 1px solid black;
}
#nav li a {
    color: #e3e3e3;
    z-index: 2;
    position: relative;
    cursor: pointer;
    float: left;
    font-size: 16px;
    font-family: helvetica, arial, sans-serif;
    text-decoration: none;
    padding: 5px 50px;
    width: 100%;
}

.ribbon {
  font-size: 20px !important;
  width: 50%;
  position: relative;
  background: #5A2C7F;
  background: -moz-linear-gradient(top, #5A2C7F, #AB77D8);
    background: -ms-linear-gradient(top, #5A2C7F, #AB77D8);
    background: -o-linear-gradient(top, #5A2C7F, #AB77D8);
    background: -webkit-gradient(linear, left top, left bottom, from(#5A2C7F), to(#AB77D8));
  color: #fff;
  text-align: center;
  padding: 1em 1em;
  margin: -63px auto 2em;
  font-family: "Monotype Corsiva" Cursive;
   box-shadow: 2px 3px 10px #011331;
    -moz-box-shadow: 2px 3px 10px #011331;
    -webkit-box-shadow: 2px 3px 10px #011331;
     border-radius: 10px 10px;
    -moz-border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
}
.ribbon:before, .ribbon:after {
  content: "";
  position: absolute;
  display: block;
  bottom: -1em;
  border: 1.5em solid #61437A;
  z-index: -1;
 
}
.ribbon:before {
  left: -2em;
  border-right-width: 1.5em;
  border-left-color: transparent;
}
.ribbon:after {
  right: -2em;
  border-left-width: 1.5em;
  border-right-color: transparent;
}
.ribbon .ribbon-content:before, .ribbon .ribbon-content:after {
  content: "";
  position: absolute;
  display: block;
  border-style: solid;
  border-color: #29143A transparent transparent transparent;
  bottom: -1em;
}
.ribbon .ribbon-content:before {
  left: 0;
  border-width: 1em 0 0 1em;
}
.ribbon .ribbon-content:after {
  right: 0;
  border-width: 1em 1em 0 0;
}
.non-semantic-protector {position: relative; z-index: 1;}
 
vestmix
Участник
Сообщения
146
Реакции
4
  • #427
Или скажите где в css строчка с задней прозрачостью и этой формой.
и еще вопрос : есть ли ферму/модули где есть квесты?
 
wh1skas
wildcake
Участник
Сообщения
1.017
Реакции
432
ICQ
564739604 564739604
  • #428
vestmix написал(а):
Есть проект dragons-gold.ru (не реклама, нашел на просторах интернета).
Как сделать такую же поло-прозрачную область именно такой же формы? скрин :http://prntscr.com/8c4hly

Вот CSS данного проекта :
Код:
/*---buttons---*/
.btn {
cursor: pointer;
display: inline-block;
background-color: #E6E6E6;
background-repeat: no-repeat;
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
padding: 5px 14px 6px;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
color: #333;
font-size: 13px;
line-height: normal;
border: 1px solid #CCC;
border-bottom-color: #BBB;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
-webkit-transition: 0.1s linear all;
-moz-transition: 0.1s linear all;
-ms-transition: 0.1s linear all;
-o-transition: 0.1s linear all;
transition: 0.1s linear all;
border-image: initial;
}
.btn:hover {
background-position: 0 -15px;
color: #333;
text-decoration: none;
}
.btn:focus {
outline: 1px dotted #666;
text-decoration: none;
}
/*---buttons---*/


/*---Стиль формы---*/

.find1 {
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
-ms-transition: border linear 0.2s, box-shadow linear 0.2s;
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
transition: border linear 0.2s, box-shadow linear 0.2s;
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
display: inline-block;
width: 210px;
height: 20px;
padding: 4px;
font-size: 13px;
line-height: 18px;
color: gray;
border: 1px solid #CCC;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border-image: initial;

}
.find1:focus {
outline: 0;
border-color: rgba(82, 168, 236, 0.8);
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
}
/*---Стиль формы---*/


/*---Дополнительные стили---*/
.reserlog, .resetlog li {
list-style: none;
padding-left: 12px;
margin: 0;
}

/*---Дополнительные стили---*/
/*********** FONTS *******
@font-face {
  font-family: "ptsans";
  src: url("/fonts/ptsans.ttf");
  font-size: 13px;
}
****/
@import "http://webfonts.ru/import/ptsans.css";
@import "http://webfonts.ru/import/lobster.css";



* {
  margin: 0;
  padding: 0;
}


A {
    color: gold; text-decoration: none; /* Цвет ссылок */
   }

A:hover {
   }

html
{
  height: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}
body
{
  font: 12px Verdana;
  width: 100%;
  height: 100%;
}
.wrapper
{
  width: 100%;
  margin: 0 auto;
  min-height: 100%;
  height: auto !important;
  height: 100%;
}


/* Header
-----------------------------------------------------------------------------*/
.header
{
  height: 160px;
    border: 0px;
  border-radius: 10px;
  background: url(/img/wrapback1.png) 100% 100%  no-repeat gold;
  background-size: cover;
}


/* Middle
-----------------------------------------------------------------------------*/
.middle
{
  width: 100%;
  padding: 0 0 100px;
  position: relative;
}
.middle:after
{
  display: table;
  clear: both;
  content: '';
}
.container
{
  width: 100%;
  float: left;
  overflow: hidden;


}
.content
{
  padding: 0 0 0 270px;
}

.menuzag
{
  float: center;
  background: #BFF08E;
  border-radius: 10px;
  padding: 5px;
  margin: 10px;
}
.menu
{
    background: #FFF;
  margin-top: 65px;
  border: 0px;
  border-radius: 10px;
  padding: 15px;
  font-size: 16px;
    font-family: "Verdana";
  line-height: 1.2;
}
.men
{
    background: #FFF;
  margin-top: 15px;
  border: 0px;
  border-radius: 10px;
  padding: 15px;
  font-size: 16px;
    font-family: "Verdana";
  line-height: 1.2;
}
.dragon
{
    float:left;
    padding-right: 10px;
        display:inline-block; 
    position:relative;
}

.dragon img {
    border-radius:10px;
    border:3px solid #cdcdcd;
  
}

.dragon span {
    display:inline-block;
    position:absolute;
    top:93px; 
    right:15px;
   
    /* Оформление текста */
    color:#FFF;
    font-family:Arial, Helvetica, sans-serif;
    font-size:40px;
}



.bydragon {
color: white;
background: #3D994E;
width: auto;
height: 135px;
margin-top: 20px;
    border-radius:10px;
        padding: 10px;
}
.bydragon2 {
color: white;
background: #993D3D;
width: auto;
height: 135px;
margin-top: 20px;
    border-radius:10px;
        padding: 10px;
}

.bydragon3 {
color: white;
background: #404040;
width: auto;
height: 135px;
margin-top: 20px;
    border-radius:10px;
        padding: 10px;
}

.bydragon4 {
color: white;
background: #3D4F99;
width: auto;
height: 135px;
margin-top: 20px;
    border-radius:10px;
        padding: 10px;
}

.bydragon5 {
color: white;
background: #7B3D99;
width: auto;
height: 135px;
margin-top: 20px;
    border-radius:10px;
        padding: 10px;
}
/* Left Sidebar
-----------------------------------------------------------------------------*/
.left-sidebar
{
line-height: 1.2;
font-weight: normal;
  float: left;
  width: 255px;
  margin-left: -100%;
  position: relative;
      margin-top: 50px;
}
.left-menu
{
  background: #004A7F;
  margin-top: 15px;
  border: 0px;
  border-radius: 10px;
  padding: 15px;
  color: #ffffff;
   font-size: 16px;
       background: -moz-linear-gradient(top, #0b2b61, #1153c0);
    background: -ms-linear-gradient(top, #0b2b61, #1153c0);
    background: -o-linear-gradient(top, #0b2b61, #1153c0);
    background: -webkit-gradient(linear, left top, left bottom, from(#0b2b61), to(#1153c0));
box-shadow: 2px 3px 10px #011331;
    -moz-box-shadow: 2px 3px 10px #011331;
    -webkit-box-shadow: 2px 3px 10px #011331;
}
.left-menu A {
    color: gold; text-decoration: none; /* Цвет ссылок */
    /* Жирное начертание */
    font-size: 16px;
   }

.left-menu A:hover {
    color: #000; /* Цвет активных ссылок */
    text-shadow: 0 0 10px #ffff00 !important;
   }
.left-head
{
    font-size: 18px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding-bottom: 5px;
}

hr {
  border-bottom:1px solid #fff;
    margin-bottom: 5px;
}

.err
{
  margin-top: 15px;
  font-size: 15px;
  background: #9B1424;
  border: 2px;
  border-radius: 10px;
  color: #ffffff;
  border-color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 5px;
  border-style: solid;
}
.good
{
  margin-top: 15px;
  font-size: 15px;
  background: #306100;
  border: 2px;
  border-radius: 10px;
  color: #ffffff;
  border-color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 5px;
  border-style: solid;
}

/* Footer
-----------------------------------------------------------------------------*/
.footer
{  background: #BFF08E;
  border-radius: 10px;
  padding: 5px 5px 1px 10px;
   width: auto;
   height: 35px;
          background: -moz-linear-gradient(top, #306100, #BFF08E);
    background: -ms-linear-gradient(top, #306100, #BFF08E);
    background: -o-linear-gradient(top, #306100, #BFF08E);
    background: -webkit-gradient(linear, left top, left bottom, from(#306100), to(#BFF08E));
box-shadow: 2px 3px 10px #011331;
    -moz-box-shadow: 2px 3px 10px #011331;
    -webkit-box-shadow: 2px 3px 10px #011331;
}
.copy {
width: auto;
font-family: verdana;
font-size:12px;
font-weight:bold;
  color: #fff;
text-shadow: 0px 1px 0px #306100; /* цвет должен быть темнее фона, 1px или -1px, в зависимости от цвета фона(светлый или темный) */
    border-left: 2px solid #ccc; /* Параметры линии */
    margin-left: 2px; /* Отступ слева */
    padding-left: 10px; /* Расстояние от линии до текста */
    float: right;
    margin-right: 50px;
   }
   .banner { float: left;
   }
#containers {
    width: 100%;
    margin: 10px;
}
ul, li {
    margin: 0;
    padding: 0;
}
#blob {
    background: #0b2b61;
    border-right: 1px solid #0059ec;
    border-left: 1px solid #0059ec;
    position: absolute;
    z-index: 1;
    top: 0;
    background: -moz-linear-gradient(top, #0b2b61, #1153c0);
    background: -ms-linear-gradient(top, #0b2b61, #1153c0);
    background: -o-linear-gradient(top, #0b2b61, #1153c0);
    background: -webkit-gradient(linear, left top, left bottom, from(#0b2b61), to(#1153c0));
     border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    box-shadow: 2px 3px 10px #011331;
    -moz-box-shadow: 2px 3px 10px #011331;
    -webkit-box-shadow: 2px 3px 10px #011331;
}
#nav {
    position: relative;
    background: #292929;
    float: left;
}
#nav li {
    float: left;
    list-style: none;
    border-right: 1px solid #4a4a4a;
    border-left: 1px solid black;
}
#nav li a {
    color: #e3e3e3;
    z-index: 2;
    position: relative;
    cursor: pointer;
    float: left;
    font-size: 16px;
    font-family: helvetica, arial, sans-serif;
    text-decoration: none;
    padding: 5px 50px;
    width: 100%;
}

.ribbon {
  font-size: 20px !important;
  width: 50%;
  position: relative;
  background: #5A2C7F;
  background: -moz-linear-gradient(top, #5A2C7F, #AB77D8);
    background: -ms-linear-gradient(top, #5A2C7F, #AB77D8);
    background: -o-linear-gradient(top, #5A2C7F, #AB77D8);
    background: -webkit-gradient(linear, left top, left bottom, from(#5A2C7F), to(#AB77D8));
  color: #fff;
  text-align: center;
  padding: 1em 1em;
  margin: -63px auto 2em;
  font-family: "Monotype Corsiva" Cursive;
   box-shadow: 2px 3px 10px #011331;
    -moz-box-shadow: 2px 3px 10px #011331;
    -webkit-box-shadow: 2px 3px 10px #011331;
     border-radius: 10px 10px;
    -moz-border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
}
.ribbon:before, .ribbon:after {
  content: "";
  position: absolute;
  display: block;
  bottom: -1em;
  border: 1.5em solid #61437A;
  z-index: -1;

}
.ribbon:before {
  left: -2em;
  border-right-width: 1.5em;
  border-left-color: transparent;
}
.ribbon:after {
  right: -2em;
  border-left-width: 1.5em;
  border-right-color: transparent;
}
.ribbon .ribbon-content:before, .ribbon .ribbon-content:after {
  content: "";
  position: absolute;
  display: block;
  border-style: solid;
  border-color: #29143A transparent transparent transparent;
  bottom: -1em;
}
.ribbon .ribbon-content:before {
  left: 0;
  border-width: 1em 0 0 1em;
}
.ribbon .ribbon-content:after {
  right: 0;
  border-width: 1em 1em 0 0;
}
.non-semantic-protector {position: relative; z-index: 1;}
vestmix написал(а):
Или скажите где в css строчка с задней прозрачостью и этой формой.
и еще вопрос : есть ли ферму/модули где есть квесты?
Поищи в css-стилях такие свойства, как:
-opacity
-transparent
Можешь о них почитать, везде пишут интересные моменты.

А может это быть вообще png, так что вариантов уйма )) С PNG попроще в сотни раз )
 
vestmix
Участник
Сообщения
146
Реакции
4
  • #429
wh1skas написал(а):
Поищи в css-стилях такие свойства, как:
-opacity
-transparent
Можешь о них почитать, везде пишут интересные моменты.

А может это быть вообще png, так что вариантов уйма )) С PNG попроще в сотни раз )
Не особо норм вариант с PNG и там сриптом так сделано)
 
wh1skas
wildcake
Участник
Сообщения
1.017
Реакции
432
ICQ
564739604 564739604
  • #430
vestmix написал(а):
Не особо норм вариант с PNG и там сриптом так сделано)
Чем PNG плох? Он будет весить копейки кб.
 
vestmix
Участник
Сообщения
146
Реакции
4
  • #431
GLookin
Участник
Сообщения
296
Реакции
62
  • #432
vestmix написал(а):
Не, мне именно код нужен))
Код:
#page-wrap {
position: relative;
width: 960px;
margin: 45px auto;
padding: 15px;
border: 0px;
border-radius: 10px;
background: rgba(134, 211, 103, 0.7);
-moz-box-shadow: 0 0 15px black;
-webkit-box-shadow: 0 0 15px black;
box-shadow: 0 0 15px black;
}
 
GLookin
Участник
Сообщения
296
Реакции
62
  • #433
За прозрачность отвечает четвертое значение из rgba 0.7 в строке background, в коде, что я написал выше.
Это значит, прозрачность на 70%.
 
vestmix
Участник
Сообщения
146
Реакции
4
  • #434
GLookin написал(а):
За прозрачность отвечает четвертое значение из rgba 0.7 в строке background, в коде, что я написал выше.
Это значит, прозрачность на 70%.
а, в html где прописать что бы отображалось?
 
GLookin
Участник
Сообщения
296
Реакции
62
  • #435
vestmix написал(а):
а, в html где прописать что бы отображалось?
На ту таблицу, к которой нужно сделать прозрачность и тень (из кода, который я приложил выше) - нужно добавить id="page-wrap"
А сам код стиля, можно в файл стилей добавить в том виде, что я дал и будет норм.
 
vestmix
Участник
Сообщения
146
Реакции
4
  • #436
GLookin написал(а):
На ту таблицу, к которой нужно сделать прозрачность и тень (из кода, который я приложил выше) - нужно добавить id="page-wrap"
А сам код стиля, можно в файл стилей добавить в том виде, что я дал и будет норм.
В css уже добавил его, но надо что бы так было на каждой странице.
 
GLookin
Участник
Сообщения
296
Реакции
62
  • #437
vestmix написал(а):
В css уже добавил его, но надо что бы так было на каждой странице.
Так и будет, если css прикреплен к сайту :)
А что не так?
 
vestmix
Участник
Сообщения
146
Реакции
4
  • #438
GLookin написал(а):
Так и будет, если css прикреплен к сайту :)
А что не так?
Прозрачности нету и не на кажой странице отображаеться)
 
GLookin
Участник
Сообщения
296
Реакции
62
  • #439
ereret
Участник
Сообщения
7
Реакции
0
  • #440
подскажите в чем причина!!! проблема с модулем серфинга ,когда нажимаю просмотреть сайт рекламодателя открывается это - http://prntscr.com/8c8ej4
 
Сверху