first commit

This commit is contained in:
/usr/bin/nano
2017-04-15 01:34:36 +03:00
commit c715e2a604
5325 changed files with 329700 additions and 0 deletions

31
i/css/dev/msg.css Executable file
View File

@@ -0,0 +1,31 @@
/**
* Стилизация сообщений выводящихся php-функциями Msg() MsgOk() MsgErr()
*
* @author Zmi
*/
.msg, .msg-err, .msg-ok
{
cursor: pointer;
font-size: 14px;
margin: 5px 0;
padding: 5px 12px;
.m-border-radius(3px);
border: 1px solid #BBB;
color: #363E49;
line-height: 20px;
}
.msg-ok
{
border: 1px solid #52AB27;
color: #52AB27;
}
.msg-err
{
border: 1px solid #CC0000;
color: #CC0000;
}