Check size before download
Add common.php with common functions
This commit is contained in:
parent
30cd0ba548
commit
f8d59cca32
8 changed files with 455 additions and 308 deletions
|
|
@ -55,7 +55,7 @@ label:hover {
|
|||
input[type=text], input[type=password], select, textarea {
|
||||
transition: background 0.75s;
|
||||
-moz-transition: background 0.75s;
|
||||
-webkit-transition: background 0.75s;
|
||||
-webkit-transition: background 0.75s;
|
||||
-o-transition: background 0.75s;
|
||||
}
|
||||
input, select, textarea {
|
||||
|
|
@ -107,6 +107,10 @@ div.blk {
|
|||
margin-bottom: 15px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
div.blk .dled {
|
||||
margin-top: -15px;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.blk h2 {
|
||||
background: #88DE66;
|
||||
|
|
@ -117,7 +121,7 @@ div.blk {
|
|||
text-align: center;
|
||||
transition: color 1s;
|
||||
-moz-transition: color 1s;
|
||||
-webkit-transition: color 1s;
|
||||
-webkit-transition: color 1s;
|
||||
-o-transition: color 1s;
|
||||
}
|
||||
.blk:hover h2 {
|
||||
|
|
@ -163,4 +167,30 @@ ins
|
|||
del
|
||||
{
|
||||
color: #DF2200;
|
||||
}
|
||||
}
|
||||
|
||||
div.clip
|
||||
{
|
||||
display: inline-block;
|
||||
margin: 9px 1.5px;
|
||||
text-align: center;
|
||||
width: 19%;
|
||||
}
|
||||
div.clip a.bot
|
||||
{
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
div.clip a.tp
|
||||
{
|
||||
color: white;
|
||||
display: none;
|
||||
margin-left: 12px;
|
||||
position: absolute;
|
||||
font-weight: bold;
|
||||
}
|
||||
div.clip:hover a.tp
|
||||
{
|
||||
display: block;
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue