Хранилища Subversion www_nix-files

Сравнить редакции

Не учитывать пробелы Редакция 75 → Редакция 76

/trunk/details-addon.css
5,50 → 5,6
margin: 10px auto;
}
 
.ftp {
background: transparent url(/img/logo/ftp-big.png) top left no-repeat;
}
 
.apt {
background: transparent url(/img/logo/apt-big.png) top left no-repeat;
}
 
.gentoo {
background: transparent url(/img/logo/gentoo-big.png) top left no-repeat;
}
 
.mandriva {
background: transparent url(/img/logo/mandriva-big.png) top left no-repeat;
}
 
.arch {
background: transparent url(/img/logo/arch-big.png) top left no-repeat;
}
 
.alt {
background: transparent url(/img/logo/alt-big.png) top left no-repeat;
}
 
.freebsd {
background: transparent url(/img/logo/freebsd-big.png) top left no-repeat;
}
 
.dicts {
background: transparent url(/img/logo/dicts-big.png) top left no-repeat;
}
 
.mans {
background: transparent url(/img/logo/mans-big.png) top left no-repeat;
}
 
.www {
background: transparent url(/img/logo/www-big.png) top left no-repeat;
}
 
.fail {
background: transparent url(/img/logo/fail-big.png) top left no-repeat;
}
 
#infocard h4 {
font: 24pt/25pt Georgia;
margin: 0;
/trunk/inc/header.htm
7,6 → 7,7
<meta name="verify-v1" content="ZBUJHzjxrbMV7MF6WPLOfr1axcHzJQzurV7DTxU3vDo=">
<meta name='yandex-verification' content='5480f8ea0632ebfe'>
<link rel="stylesheet" type="text/css" href="./nix-files.css">
<link rel="stylesheet" type="text/css" href="./css-gen.php">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>niX-FILES</title>
</head>
/trunk/css-gen.php
Новый файл
0,0 → 1,13
<?php
require_once dirname(__FILE__)."/lib/init.php";
 
$ress =& $db->query("SELECT * FROM resources");
while ($ress->fetchInto($info_ress, DB_FETCHMODE_ASSOC)) {
$pictcha = $info_ress['picture'];
$pictcha = str_replace(".","-big.",$pictcha);
echo ".".$info_ress['resource']." {\n";
echo " background: transparent url(".$pictcha.") top left no-repeat;\n";
echo "}\n";
}
 
?>