Единая информационная система для школ дополнительного образования (на примере спортивных школ художественной гимнастики)
Проектирование базы данных, содержащей информацию о школах художественной гимнастики. Разработка рабочего места администратора для ввода и корректирования содержания сайта. Создание каркаса сайта для пользователей. Информационная структура web-приложения.
Рубрика | Программирование, компьютеры и кибернетика |
Вид | дипломная работа |
Язык | русский |
Дата добавления | 15.03.2013 |
Размер файла | 6,2 M |
Отправить свою хорошую работу в базу знаний просто. Используйте форму, расположенную ниже
Студенты, аспиранты, молодые ученые, использующие базу знаний в своей учебе и работе, будут вам очень благодарны.
</div>
parents_add.php
<?php header("Content-Type:text/html; charset=utf-8");
include 'connectDB.php';
include 'cookie_check.php';?>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<link rel="stylesheet" type="text/css" href="design.css">
<title></title>
</head>
<body>
<div id="all">
<div id="top">
<form method="post" name="exit" action="exit_cookie.php">
<input type="submit" value="Выход">
</form>
</div>
<div id="general">
<?include 'items.php';?>
<div id="content">
<form name="add "method="post" action="parents_msg.php" enctype="multipart/form-data">
<p><b>Название:</b><input name="name" type="text" size="55"> <br>
<p><b>Ссылка на текст:</b><input type="file" name="fname"> <br>
<p><input type="submit" name="buttonChange" value="OK" style="width:40px; margin-left:350px"></p>
</form>
</div>
</div>
<div id="bottom">
<div style="font-size: 12; font-style: italic; color:SlateBlue;padding-top:25;padding-left:400;">
<a href="mailto:khadieva_raushaniya@mail.ru" >Обратная связь</a> </div>
</div>
</div>
</body>
</html>
parents_delete.php
<?php header("Content-Type:text/html; charset=utf-8");
include 'connectDB.php';
include 'cookie_check.php';?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="stylesheet" type="text/css" href="design.css">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title></title>
</head>
<body>
<div id="all">
<div id="top">
<br><br>
<form method="post" name="exit" action="exit_cookie.php">
<input type="submit" value="Выход">
</form>
</div>
<div id="general">
<?include 'items.php';?>
<div id="content">
<?/* udalenie elementov*/
$query="DELETE FROM Article WHERE id=${_POST['id']}";
mysql_query($query)//${_POST['j']}-slojnaya peremennaya
or die(mysql_error());
mysql_query("COMMIT")?>
<div style="width: 300; height: 170;background-color:PowderBlue ; border:groove; padding-left: 60px; margin-top:100px"><br><br><br>
<h1 style="color: black;font-weight: bolder; padding-left: 3px;">Поздравлем Вас, загрузка удаление прошло успешно!</h1>
<p> <form name="OK" method="post" action="parents_page.php" style="padding-left:100; padding-bottom: 10px; width:15px">
<p><input type="submit" value="Ok">
</form>
</div>
</div>
</div>
</div>
<div id="bottom">
<div style="font-size: 12; font-style: italic; color:SlateBlue;padding-top:25;padding-left:400;">
<a href="mailto:khadieva_raushaniya@mail.ru" >Обратная связь</a> </div>
</div>
</div>
</body>
</html>
parents_msg.php
<?php header("Content-Type:text/html; charset=utf-8");
include 'connectDB.php';
include 'cookie_check.php';?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="stylesheet" type="text/css" href="design.css">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title></title>
</head>
<body>
<div id="all">
<div id="top">
<br><br>
<form method="post" name="exit" action="exit_cookie.php">
<input type="submit" value="Выход">
</form>
</div>
<div id="general">
<?include 'items.php';?>
<div id="content">
<?/* dobavlenie elementov*/
$way="http://localhost/diplom/admin/base/graciya1116/".$_FILES['fname']["name"];
include 'upload.php';
?>
<?
$query="INSERT INTO Article (name, type, object_id, adress)
VALUES ('${_POST['name']}', 'parents_info', (Select id_school from ADMINS where rid=${_COOKIE['rid']}),'$way')";
print $query;
mysql_query($query)//${_POST['j']}-slojnaya peremennaya
or die(mysql_error());
mysql_query("COMMIT")?>
<div style="width: 300; height: 170;background-color:PowderBlue ; border:groove; padding-left: 60px; margin-top:100px"><br><br><br>
<h1 style="color: black;font-weight: bolder; padding-left: 3px;">Поздравлем Вас, загрузка прошла успешно!</h1>
<p> <form name="OK" method="post" action="parents_page.php" style="padding-left:100; padding-bottom: 10px; width:15px">
<p><input type="submit" value="Ok">
</form>
</div>
</div>
</div>
</div>
<div id="bottom">
<div style="font-size: 12; font-style: italic; color:SlateBlue;padding-top:25;padding-left:400;">
<a href="mailto:khadieva_raushaniya@mail.ru" >Обратная связь</a> </div>
</div>
</div>
</body>
</html>
parents_page.php
<?php header("Content-Type:text/html; charset=utf-8");
include 'connectDB.php';
include 'cookie_check.php';?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="stylesheet" type="text/css" href="design.css">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title></title>
</head>
<body>
<div id="all">
<div id="top">
<br><br>
<form method="post" name="exit" action="exit_cookie.php">
<input type="submit" value="Выход">
</form>
</div>
<div id="general">
<?include 'items.php';?>
<div id="content">
<div style="float: left;">
<div style="font-size:12;font-color:black;
padding-left:10;
padding-top:2;width:40;float:left">
<form method="post" action="parents_add.php">
<input type="submit" value="Добавить">
</form>
</div>
<!-- <div style="font-size:12;font-color:black;
width:40;float:left; padding-left:200px; padding-right: 100 ;padding-top:2">
<form method="post" action="head_edit.php">
<input type="submit" value="Редактировать" name="sub_">
<input type="hidden" value="0" name="elem" id="A1">
</form>
</div>-->
<div style="font-size:12;font-color:black;
width:40;float:left;padding-left:250; padding-top:2">
<form method="post" action="parents_delete.php">
<input type="submit" value="Удалить"
onclick="if(!confirm('Вы уверены, что хотие удалить элемент списка?')) return(false)">
</div>
</div>
<?
$query="Select * from Article where (object_id=(Select id_school from ADMINS where rid=${_COOKIE['rid']})) and (type='parents_info')";
$sql=mysql_query($query) or die(mysql_error());
?>
<div style="padding-left: 20px; padding-top: 60px; float: left;">
<p style="font-weight: bolder; font-size: 14px">В данном разделе могут размещаться объявления организационного характера для родителей!</p><br>
<?while($row = mysql_fetch_array($sql)) {?>
<input type="radio" name="id" value="<?print $row['id'];?>"
onclick="document.getElementById('A1').value=this.value">
<? print $row['name'];?><br>
<?};?>
</form>
</div>
</div>
</div>
<div id="bottom">
<div style="font-size: 12; font-style: italic; color:SlateBlue;padding-top:25;padding-left:400;">
<a href="mailto:khadieva_raushaniya@mail.ru" >Обратная связь</a> </div>
</div>
</div>
</body>
</html>
school_edit.php
<?php header("Content-Type:text/html; charset=utf-8");
include 'connectDB.php';
include 'cookie_check.php';?>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<link rel="stylesheet" type="text/css" href="design.css">
<title></title>
</head>
<body>
<div id="all">
<div id="top">
<form method="post" name="exit" action="exit_cookie.php">
<input type="submit" value="Выход">
</form>
</div>
<div id="general">
<?include 'items.php';
?>
<div id="content">
<?$id=$_POST['elem'];
$way="http://localhost/diplom/admin/base/graciya1116/".$_FILES['fname']["name"];
//date_format('birthday','%d.%m.%Y')
$query="SELECT name, city,adress,telephone,email FROM school WHERE id='$id'";
$sql=mysql_query($query) or die (mysql_error());
$row=mysql_fetch_array($sql)?>
<form name="editions "method="post" action="school_editmsg.php" enctype="multipart/form-data">
<input type="hidden" value="<?print($_POST['elem'])?>" name="elem" id="A1">
<p><b>Полное название школы:</b><input name="name" type="text" size="65" value="<?print $row['name']?>"> <br>
<p><b>Город:</b><input name="city" type="text" size="89" value="<?print $row['city']?>"> <br>
<!--<p><b>Id региона:</b><input name="id_region" type="text" size="70"> <br>-->
<p><b>Адрес:</b><input name="adress" type="text" size="89" value="<?print $row['adress']?>"> <br>
<p><b>Телефон:</b><input name="telephone" type="text" size="86" value="<?print $row['telephone']?>"> <br>
<p><b>email:</b><input name="email" type="text" size="89" value="<?print $row['email']?>"> <br>
<!-- <p><b>История школы(ссылка на файл):</b><input type="file" name="fname"> <br>-->
<p><b>Название статьи:</b><input name="history_name" type="text" size="76" > <br>
<p><b>Статья о школе(ссылка на файл):</b><input type="file" name="fname2"><br>
<p><b>Название фотографии:</b><input name="photo_name" type="text" size="68" > <br>
<p><b>Фотография (к статье):</b><input type="file" name="fname22"><br>
<p><b>Название статьи (условие приема):</b><input name="condition_name" type="text" size="76" > <br>
<p><b>Условия приема(ссылка на файл):</b><input type="file" name="fname"><br>
<!-- <p><b>Название статьи:</b><input name="article_name" type="text" size="76" > <br>
<p><b>Статья про школу(ссылка на файл):</b><input type="file" name="fname1"><br>
<p><input type="submit" name="buttonChange" value="OK" style="width:40px; margin-left:460px"></p>
<p><b>Название фотографии:</b><input name="photo1_name" type="text" size="68" > <br>
<p><b>Фотография к статье:</b><input type="file" name="fname11"><br>-->
<p><input type="submit" name="buttonChange" value="OK" style="width:40px; margin-left:340px"></p>
</form>
<?// $way1="http://localhost/diplom/admin/base/graciya1116/".$_FILES['fname1']["name"];?>
<form method="post" action="school_edit.php">
<input type="hidden" value="<?print($_POST['elem'])?>" name="elem" id="A1">
<?if(isset ($_POST['del'])) {
$query2="DELETE FROM Article where id=${_POST['id']}";
mysql_query($query2) or die (mysql_error());
mysql_query("COMMIT");
}
?>
<? $query1="Select * from Article
where Article.object_id=${_POST['elem']}
and (type='school' or type='conditions'or type='history')";
$sql1=mysql_query($query1) or die(mysql_error());
?>
<?while ($row1 = mysql_fetch_array($sql1)) {?>
<input type="radio" name="id" value="<?print $row1['id'];?>">
<?print $row1['name'];?><br>
<?};?>
<input type="submit" name="del"style="font:bolder;" value="Удалить"
onclick="if(!confirm('Вы уверены, что хотие удалить элемент списка?')) return(false)">
</form>
<form method="post" action="school_edit.php">
<input type="hidden" value="<?print($_POST['elem'])?>" name="elem" id="A1">
<?if(isset ($_POST['del'])) {
$query2="DELETE FROM Photo where id=${_POST['id']}";
mysql_query($query2) or die (mysql_error());
mysql_query("COMMIT");
}
?>
<? $query1="Select * from Photo
where id_article=${_POST['elem']}";
$sql1=mysql_query($query1) or die(mysql_error());
?>
<?while ($row1 = mysql_fetch_array($sql1)) {?>
<input type="radio" name="id" value="<?print $row1['id'];?>">
<?print $row1['name'];?><br>
<?};?>
<input type="submit" name="del"style="font:bolder;" value="Удалить"
onclick="if(!confirm('Вы уверены, что хотие удалить элемент списка?')) return(false)">
</form>
</div>
</div>
<div id="bottom">
<div style="font-size: 12; font-style: italic; color:SlateBlue;padding-top:25;padding-left:400;">
<a href="mailto:khadieva_raushaniya@mail.ru" >Обратная связь</a> </div>
</div>
</div>
</body>
</html>
school_editmsg.php
<?php header("Content-Type:text/html; charset=utf-8");
include 'connectDB.php';
include 'cookie_check.php';?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="stylesheet" type="text/css" href="design.css">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title></title>
</head>
<body>
<div id="all">
<div id="top">
<br><br>
<form method="post" name="exit" action="exit_cookie.php">
<input type="submit" value="Выход">
</form>
</div>
<div id="general">
<?include 'items.php';?>
<div id="content">
<?/* redaktirovanie elementov*/
$way="http://localhost/diplom/admin/base/graciya1116/".$_FILES['fname']["name"];
// $way1="http://localhost/diplom/admin/base/graciya1116/".$_FILES['fname1']["name"];
// $way11="http://localhost/diplom/admin/base/graciya1116/".$_FILES['fname11']["name"];
$way2="http://localhost/diplom/admin/base/graciya1116/".$_FILES['fname2']["name"];
$way22="http://localhost/diplom/admin/base/graciya1116/".$_FILES['fname22']["name"];
include 'upload.php';
print ($_POST['A1']);
$query="UPDATE school
SET name='${_POST['name']}', city='${_POST['city']}',adress='${_POST['adress']}',
telephone='${_POST['telephone']}',email='${_POST['email']}'
WHERE id=${_POST['elem']}";
mysql_query($query)//${_POST['j']}-slojnaya peremennaya
or die(mysql_error());
print(eeee);
if(isset($_POST['condition_name'])&&($_POST['condition_name']!=='')) {
$query1="INSERT INTO Article (name, type, object_id, adress)
VALUE ('${_POST['condition_name']}', 'conditions', ${_POST['elem']} ,'$way')";
mysql_query($query1)//${_POST['j']}-slojnaya peremennaya
or die(mysql_error());
}
if(isset($_POST['history_name'])&&($_POST['history_name']!=='')){
$query3="INSERT INTO Article (name, type, object_id, adress)
VALUE ('${_POST['history_name']}','history', ${_POST['elem']} ,'$way2')";
mysql_query($query3)//${_POST['j']}-slojnaya peremennaya
or die(mysql_error());
}
if(isset($_POST['photo_name'])&&($_POST['photo_name']!=='')){
$query33="INSERT INTO Photo (id_article, name, adress)
VALUE (${_POST['elem']} ,'${_POST['photo_name']}','$way22')";
mysql_query($query33)//${_POST['j']}-slojnaya peremennaya
or die(mysql_error());
}
mysql_query("COMMIT")?>
<div style="width: 300; height: 170;background-color:PowderBlue ; border:groove; padding-left: 60px; margin-top:100px"><br><br><br>
<h1 style="color: black;font-weight: bolder; padding-left: 3px;">Поздравлем Вас, исправление прошло успешно!</h1>
<p> <form name="OK" method="post" action="school_page.php" style="padding-left:100; padding-bottom: 10px; width:15px">
<p><input type="submit" value="Ok">
</form>
</div>
</div>
</div>
</div>
<div id="bottom">
<div style="font-size: 12; font-style: italic; color:SlateBlue;padding-top:25;padding-left:400;">
<a href="mailto:khadieva_raushaniya@mail.ru" >Обратная связь</a> </div>
</div>
</div>
</body>
</html>
school_page.php
<?php header("Content-Type:text/html; charset=utf-8");
include 'connectDB.php';
include 'cookie_check.php';?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="stylesheet" type="text/css" href="design.css">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title></title>
</head>
<body>
<div id="all">
<div id="top">
<br><br>
<form method="post" name="exit" action="exit_cookie.php">
<input type="submit" value="Выход">
</form>
</div>
<div id="general">
<?include 'items.php';?>
<div id="content">
<!-- <div style="font-size:12;font-color:black;
padding-left:10;
padding-top:2;width:40;float:left">
<form method="post" action="school_add.php">
<input type="submit" value="Добавить">
</form>
</div>--->
<div style="font-size:12;font-color:black;
width:40;float:left; padding-left:100; padding-top:2">
<form method="post" action="school_edit.php">
<input type="submit" value="Редактировать">
<input type="hidden" value="0" name="elem" id="A1">
</form>
</div>
<!-- <div style="font-size:12;font-color:black;
width:40;float:left;padding-left:150; padding-top:2">
<form method="post" action="school_delete.php">
<input type="submit" value="Удалить"
</form>
</div>-->
<?$query="Select * from school where school.id=(Select id_school from ADMINS where rid=${_COOKIE['rid']})";
$sql=mysql_query($query);?>
<div style="padding-left: 20px; padding-top: 60px;">
<form method="post" action="school_page.php">
<?while ($row=mysql_fetch_array($sql)){?>
<input type="radio" value="<?print ($row['id'])?>"
onclick="document.getElementById('A1').value=this.value">
<?print ($row['name']);?><br>
<?};?>
</form>
</div>
</div>
</div>
<div id="bottom">
<div style="font-size: 12; font-style: italic; color:SlateBlue;padding-top:25;padding-left:400;">
<a href="mailto:khadieva_raushaniya@mail.ru" >Обратная связь</a> </div>
</div>
</div>
</body>
</html>
Upload.php
<?php
//rezul'tat zagruzki faila
if(($_FILES["fname"]["size"] > 1024*3*1024)||($_FILES["fname1"]["size"] > 1024*3*1024)||($_FILES["fname11"]["size"] > 1024*3*1024)||($_FILES["fname0"]["size"] > 1024*3*1024)) {
echo ("Размер файла превышает три мегабайта");
exit;
}
//proveryaem zagrujen li fail
if((is_uploaded_file($_FILES["fname"]["tmp_name"]))||(is_uploaded_file($_FILES["fname1"]["tmp_name"]))||(is_uploaded_file($_FILES["fname11"]["tmp_name"]))||(is_uploaded_file($_FILES["fname2"]["tmp_name"]))||(is_uploaded_file($_FILES["fname22"]["tmp_name"]))) {
//esli fail zagrujen uspeshno peremeshaem ego
// iz vremennoi direktorii v kone4nuyu papku
print('1111111111111');
if (isset($_FILES["fname"])&&(is_uploaded_file($_FILES["fname"]["tmp_name"]))) {
move_uploaded_file($_FILES["fname"]["tmp_name"], "Z:/home/localhost/www/diplom/admin/base/graciya1116/".$_FILES['fname']["name"]);
}
if (isset($_FILES["fname1"])&&(is_uploaded_file($_FILES["fname1"]["tmp_name"]))) {
move_uploaded_file($_FILES["fname1"]["tmp_name"], "Z:/home/localhost/www/diplom/admin/base/graciya1116/".$_FILES['fname1']["name"]);
}
if (isset($_FILES["fname11"])&&(is_uploaded_file($_FILES["fname11"]["tmp_name"]))) {
move_uploaded_file($_FILES["fname11"]["tmp_name"], "Z:/home/localhost/www/diplom/admin/base/graciya1116/".$_FILES['fname11']["name"]);
}
if (isset($_FILES["fname2"])&&(is_uploaded_file($_FILES["fname2"]["tmp_name"]))) {
move_uploaded_file($_FILES["fname2"]["tmp_name"], "Z:/home/localhost/www/diplom/admin/base/graciya1116/".$_FILES['fname2']["name"]);
}
if (isset($_FILES["fname22"])&&(is_uploaded_file($_FILES["fname22"]["tmp_name"]))) {
move_uploaded_file($_FILES["fname22"]["tmp_name"], "Z:/home/localhost/www/diplom/admin/base/graciya1116/".$_FILES['fname22']["name"]);
}
}
else
echo ("Ошибка загрузки файла");
?>
Design.css
BODY {background-image:white;
font-family: Verdana, Arial, sans-serif;}
#all{margin: 0 auto;
padding: 0;
position: relative;
width: 1000px;}
#general
{
background-position: top right;
padding-bottom: 0;
margin: 0 auto;
clear:left;
height: 500px;
}
#top {
background-image:url(design/bigBanner.jpg);
background-repeat: repeat-x;
height: 180;
color:orange;
float: inherit}
#menu {
background-color: transparent;
background-position: top right;
background-repeat: repeat-y;
height: 68%;
float: left;
margin-right: 1%;
display: inline;
padding-top: 20;
width:200px;
}
#menu A {
font-size: 90%;
font-style: oblique;
color:black;
}
#content {
background-position: top right;
border: solid 3px white;
margin-left: 17px;
margin-right: 25px;
margin-bottom: 60px;
padding-left:1%;
padding-right:7%;
padding-top:3%;
float: left;
display: inline;
font-size: 14;
font-style: italic;
color:SlateBlue;
width: 690px;
}
#bottom {
background-image:url(design/buttomBanner.jpg);
background-position: top right;
font-size: 90%;
height:80px;
width: 100%;
float: left;
border: solid 2px DeepSkyBlue;
margin-bottom:0px;
padding-bottom: 1px;
padding-top: 1px;
margin-top: 1px;
color:orange;
}
H1 {
text-align: center;
font-size: 210%;
font-size: 16;
font-style: oblique;
color:#990066;
}
#content P {
font-size: 90%;
text-align: justify;
padding: 10px;
margin: 0;
}
#centring /*opisanie id=centring*/
{
display: block; /*opisivaet fonovuyu chast' kak blo4nuyu*/
margin-right: auto; /*otstup sprva ukazivaetsya avtomati4easki brauserom*/
margin-left: auto; /*sleva*/
background-position: top right;
border: solid 1px DeepSkyBlue;
padding: 5px 5 20px 5px;
font-size: 24;
font-style: cambria;
color:orange;
height:150px;
}
.leftimg
{
float: left;
margin: 7px 7px 2px 0px;
}
root {
display: block;
}
CSS
Клендарь.
Fullcalendar.php
.fc {
direction: ltr;
text-align: left;
}
.fc table {
border-collapse: collapse;
border-spacing: 0;
}
html .fc,
.fc table {
font-size: 1em;
}
.fc td,
.fc th {
padding: 0;
vertical-align: top;
}
/* Header
------------------------------------------------------------------------*/
.fc-header td {
white-space: nowrap;
}
.fc-header-left {
width: 25%;
text-align: left;
}
.fc-header-center {
text-align: center;
}
.fc-header-right {
width: 25%;
text-align: right;
}
.fc-header-title {
display: inline-block;
vertical-align: top;
}
.fc-header-title h2 {
margin-top: 0;
white-space: nowrap;
}
.fc .fc-header-space {
padding-left: 10px;
}
.fc-header .fc-button {
margin-bottom: 1em;
vertical-align: top;
}
/* buttons edges butting together */
.fc-header .fc-button {
margin-right: -1px;
}
.fc-header .fc-corner-right {
margin-right: 1px; /* back to normal */
}
.fc-header .ui-corner-right {
margin-right: 0; /* back to normal */
}
/* button layering (for border precedence) */
.fc-header .fc-state-hover,
.fc-header .ui-state-hover {
z-index: 2;
}
.fc-header .fc-state-down {
z-index: 3;
}
.fc-header .fc-state-active,
.fc-header .ui-state-active {
z-index: 4;
}
/* Content
------------------------------------------------------------------------*/
.fc-content {
clear: both;
}
.fc-view {
width: 100%; /* needed for view switching (when view is absolute) */
overflow: hidden;
}
/* Cell Styles
------------------------------------------------------------------------*/
.fc-widget-header, /* <th>, usually */
.fc-widget-content { /* <td>, usually */
border: 1px solid #ccc;
}
.fc-state-highlight { /* <td> today cell */ /* TODO: add .fc-today to <th> */
background: #ffc;
}
.fc-cell-overlay { /* semi-transparent rectangle while dragging */
background: #9cf;
opacity: .2;
filter: alpha(opacity=20); /* for IE */
}
/* Buttons
------------------------------------------------------------------------*/
.fc-button {
position: relative;
display: inline-block;
cursor: pointer;
}
.fc-state-default { /* non-theme */
border-style: solid;
border-width: 1px 0;
}
.fc-button-inner {
position: relative;
float: left;
overflow: hidden;
}
.fc-state-default .fc-button-inner { /* non-theme */
border-style: solid;
border-width: 0 1px;
}
.fc-button-content {
position: relative;
float: left;
height: 1.9em;
line-height: 1.9em;
padding: 0 .6em;
white-space: nowrap;
}
/* icon (for jquery ui) */
.fc-button-content .fc-icon-wrap {
position: relative;
float: left;
top: 50%;
}
.fc-button-content .ui-icon {
position: relative;
float: left;
margin-top: -50%;
*margin-top: 0;
*top: -50%;
}
/* gloss effect */
.fc-state-default .fc-button-effect {
position: absolute;
top: 50%;
left: 0;
}
.fc-state-default .fc-button-effect span {
position: absolute;
top: -100px;
left: 0;
width: 500px;
height: 100px;
border-width: 100px 0 0 1px;
border-style: solid;
border-color: #fff;
background: #444;
opacity: .09;
filter: alpha(opacity=9);
}
/* button states (determines colors) */
.fc-state-default,
.fc-state-default .fc-button-inner {
border-style: solid;
border-color: #ccc #bbb #aaa;
background: #F3F3F3;
color: #000;
}
.fc-state-hover,
.fc-state-hover .fc-button-inner {
border-color: #999;
}
.fc-state-down,
.fc-state-down .fc-button-inner {
border-color: #555;
background: #777;
}
.fc-state-active,
.fc-state-active .fc-button-inner {
border-color: #555;
background: #777;
color: #fff;
}
.fc-state-disabled,
.fc-state-disabled .fc-button-inner {
color: #999;
border-color: #ddd;
}
.fc-state-disabled {
cursor: default;
}
.fc-state-disabled .fc-button-effect {
display: none;
}
/* Global Event Styles
------------------------------------------------------------------------*/
.fc-event {
border-style: solid;
border-width: 0;
font-size: .85em;
cursor: default;
}
a.fc-event,
.fc-event-draggable {
cursor: pointer;
}
a.fc-event {
text-decoration: none;
}
.fc-rtl .fc-event {
text-align: right;
}
.fc-event-skin {
border-color: #36c; /* default BORDER color */
background-color: #36c; /* default BACKGROUND color */
color: #fff; /* default TEXT color */
}
.fc-event-inner {
position: relative;
width: 100%;
height: 100%;
border-style: solid;
border-width: 0;
overflow: hidden;
}
.fc-event-time,
.fc-event-title {
padding: 0 1px;
}
.fc .ui-resizable-handle { /*** TODO: don't use ui-resizable anymore, change class ***/
display: block;
position: absolute;
z-index: 99999;
overflow: hidden; /* hacky spaces (IE6/7) */
font-size: 300%; /* */
line-height: 50%; /* */
}
/* Horizontal Events
------------------------------------------------------------------------*/
.fc-event-hori {
border-width: 1px 0;
margin-bottom: 1px;
}
/* resizable */
.fc-event-hori .ui-resizable-e {
top: 0 !important; /* importants override pre jquery ui 1.7 styles */
right: -3px !important;
width: 7px !important;
height: 100% !important;
cursor: e-resize;
}
.fc-event-hori .ui-resizable-w {
top: 0 !important;
left: -3px !important;
width: 7px !important;
height: 100% !important;
cursor: w-resize;
}
.fc-event-hori .ui-resizable-handle {
_padding-bottom: 14px; /* IE6 had 0 height */
}
/* Fake Rounded Corners (for buttons and events)
------------------------------------------------------------*/
.fc-corner-left {
margin-left: 1px;
}
.fc-corner-left .fc-button-inner,
.fc-corner-left .fc-event-inner {
margin-left: -1px;
}
.fc-corner-right {
margin-right: 1px;
}
.fc-corner-right .fc-button-inner,
.fc-corner-right .fc-event-inner {
margin-right: -1px;
}
.fc-corner-top {
margin-top: 1px;
}
.fc-corner-top .fc-event-inner {
margin-top: -1px;
}
.fc-corner-bottom {
margin-bottom: 1px;
}
.fc-corner-bottom .fc-event-inner {
margin-bottom: -1px;
}
/* Fake Rounded Corners SPECIFICALLY FOR EVENTS
-----------------------------------------------------------------*/
.fc-corner-left .fc-event-inner {
border-left-width: 1px;
}
.fc-corner-right .fc-event-inner {
border-right-width: 1px;
}
.fc-corner-top .fc-event-inner {
border-top-width: 1px;
}
.fc-corner-bottom .fc-event-inner {
border-bottom-width: 1px;
}
/* Reusable Separate-border Table
------------------------------------------------------------*/
table.fc-border-separate {
border-collapse: separate;
}
.fc-border-separate th,
.fc-border-separate td {
border-width: 1px 0 0 1px;
}
.fc-border-separate th.fc-last,
.fc-border-separate td.fc-last {
border-right-width: 1px;
}
.fc-border-separate tr.fc-last th,
.fc-border-separate tr.fc-last td {
border-bottom-width: 1px;
}
.fc-border-separate tbody tr.fc-first td,
.fc-border-separate tbody tr.fc-first th {
border-top-width: 0;
}
/* Month View, Basic Week View, Basic Day View
------------------------------------------------------------------------*/
.fc-grid th {
text-align: center;
}
.fc-grid .fc-day-number {
float: right;
padding: 0 2px;
}
.fc-grid .fc-other-month .fc-day-number {
opacity: 0.3;
filter: alpha(opacity=30); /* for IE */
/* opacity with small font can sometimes look too faded
might want to set the 'color' property instead
making day-numbers bold also fixes the problem */
}
.fc-grid .fc-day-content {
clear: both;
padding: 2px 2px 1px; /* distance between events and day edges */
}
/* event styles */
.fc-grid .fc-event-time {
font-weight: bold;
}
/* right-to-left */
.fc-rtl .fc-grid .fc-day-number {
float: left;
}
.fc-rtl .fc-grid .fc-event-time {
float: right;
}
/* Agenda Week View, Agenda Day View
------------------------------------------------------------------------*/
.fc-agenda table {
border-collapse: separate;
}
.fc-agenda-days th {
text-align: center;
}
.fc-agenda .fc-agenda-axis {
width: 50px;
padding: 0 4px;
vertical-align: middle;
text-align: right;
white-space: nowrap;
font-weight: normal;
}
.fc-agenda .fc-day-content {
padding: 2px 2px 1px;
}
/* make axis border take precedence */
.fc-agenda-days .fc-agenda-axis {
border-right-width: 1px;
}
.fc-agenda-days .fc-col0 {
border-left-width: 0;
}
/* all-day area */
.fc-agenda-allday th {
border-width: 0 1px;
}
.fc-agenda-allday .fc-day-content {
min-height: 34px; /* TODO: doesnt work well in quirksmode */
_height: 34px;
}
/* divider (between all-day and slots) */
.fc-agenda-divider-inner {
height: 2px;
overflow: hidden;
}
.fc-widget-header .fc-agenda-divider-inner {
background: #eee;
}
/* slot rows */
.fc-agenda-slots th {
border-width: 1px 1px 0;
}
.fc-agenda-slots td {
border-width: 1px 0 0;
background: none;
}
.fc-agenda-slots td div {
height: 20px;
}
.fc-agenda-slots tr.fc-slot0 th,
.fc-agenda-slots tr.fc-slot0 td {
border-top-width: 0;
}
.fc-agenda-slots tr.fc-minor th,
.fc-agenda-slots tr.fc-minor td {
border-top-style: dotted;
}
.fc-agenda-slots tr.fc-minor th.ui-widget-header {
*border-top-style: solid; /* doesn't work with background in IE6/7 */
}
/* Vertical Events
------------------------------------------------------------------------*/
.fc-event-vert {
border-width: 0 1px;
}
.fc-event-vert .fc-event-head,
.fc-event-vert .fc-event-content {
position: relative;
z-index: 2;
width: 100%;
overflow: hidden;
}
.fc-event-vert .fc-event-time {
white-space: nowrap;
font-size: 10px;
}
.fc-event-vert .fc-event-bg { /* makes the event lighter w/ a semi-transparent overlay */
position: absolute;
z-index: 1;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #fff;
opacity: .3;
filter: alpha(opacity=30);
}
.fc .ui-draggable-dragging .fc-event-bg, /* TODO: something nicer like .fc-opacity */
.fc-select-helper .fc-event-bg {
display: none\9; /* for IE6/7/8. nested opacity filters while dragging don't work */
}
/* resizable */
.fc-event-vert .ui-resizable-s {
bottom: 0 !important; /* importants override pre jquery ui 1.7 styles */
width: 100% !important;
height: 8px !important;
overflow: hidden !important;
line-height: 8px !important;
font-size: 11px !important;
font-family: monospace;
text-align: center;
cursor: s-resize;
}
.fc-agenda .ui-resizable-resizing { /* TODO: better selector */
_overflow: hidden;
}
Fulcalendar.print.php
/* Events
-----------------------------------------------------*/
.fc-event-skin {
background: none !important;
color: #000 !important;
}
/* horizontal events */
.fc-event-hori {
border-width: 0 0 1px 0 !important;
border-bottom-style: dotted !important;
border-bottom-color: #000 !important;
padding: 1px 0 0 0 !important;
}
.fc-event-hori .fc-event-inner {
border-width: 0 !important;
padding: 0 1px !important;
}
/* vertical events */
.fc-event-vert {
border-width: 0 0 0 1px !important;
border-left-style: dotted !important;
border-left-color: #000 !important;
padding: 0 1px 0 0 !important;
}
.fc-event-vert .fc-event-inner {
border-width: 0 !important;
padding: 1px 0 !important;
}
.fc-event-bg {
display: none !important;
}
.fc-event .ui-resizable-handle {
display: none !important;
}
Orbit.css(слайды)
#featured {
width: 600px !important ;
height: 600px !important;
background: #000 url('orbit/loading.gif') no-repeat center center;
overflow: hidden;
align:center;}
#featured>img,
#featured>div,
#featured>a { display: none; }
/* CONTAINER
================================================== */
div.orbit-wrapper {
width: 1px;
height: 1px;
position: relative;
width: 600px !important ;
height: 600px !important;
}
div.orbit {
width: 1px;
height: 1px;
position: relative;
overflow: hidden }
div.orbit>img {
position: absolute;
top: 0;
left: 0;
display: none;
width: 550;
text-align: center;
vertical-align: middle;
}
div.orbit>a {
border: none;
position: absolute;
top: 0;
left: 0;
line-height: 0;
display: none; }
.orbit>div {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
vertical-align: middle;
}
/* Note: If your slider only uses content or anchors, you're going to want to put the width and height declarations on the ".orbit>div" and "div.orbit>a" tags in addition to just the .orbit-wrapper */
/* TIMER
================================================== */
div.timer {
width: 40px;
height: 40px;
overflow: hidden;
position: absolute;
top: 10px;
right: 10px;
opacity: .6;
cursor: pointer;
z-index: 1001; }
span.rotator {
display: block;
width: 40px;
height: 40px;
position: absolute;
top: 0;
left: -20px;
background: url(orbit/rotator-black.png) no-repeat;
z-index: 3; }
span.mask {
display: block;
width: 20px;
height: 40px;
position: absolute;
top: 0;
right: 0;
z-index: 2;
overflow: hidden; }
span.rotator.move {
left: 0 }
span.mask.move {
width: 40px;
left: 0;
background: url(orbit/timer-black.png) repeat 0 0; }
span.pause {
display: block;
width: 40px;
height: 40px;
position: absolute;
top: 0;
left: 0;
background: url(orbit/pause-black.png) no-repeat;
z-index: 4;
opacity: 0; }
span.pause.active {
background: url(orbit/pause-black.png) no-repeat 0 -40px }
div.timer:hover span.pause,
span.pause.active {
opacity: 1 }
/* CAPTIONS
================================================== */
.orbit-caption {
display: none;
font-family: "HelveticaNeue", "Helvetica-Neue", Helvetica, Arial, sans-serif; }
.orbit-wrapper .orbit-caption {
background: #000;
background: rgba(0,0,0,.6);
z-index: 1000;
color: #fff;
text-align: center;
padding: 7px 0;
font-size: 13px;
position: absolute;
right: 0;
bottom: 0;
width: 100%; }
/* DIRECTIONAL NAV
================================================== */
div.slider-nav {
display: block }
div.slider-nav span {
width: 78px;
height: 100px;
text-indent: -9999px;
position: absolute;
z-index: 1000;
top: 50%;
margin-top: -50px;
cursor: pointer; }
div.slider-nav span.right {
background: url(orbit/right-arrow.png);
right: 0; }
div.slider-nav span.left {
background: url(orbit/left-arrow.png);
left: 0; }
/* BULLET NAV
================================================== */
.orbit-bullets {
position: absolute;
z-index: 1000;
list-style: none;
bottom: -40px;
left: 50%;
margin-left: -50px;
padding: 0; }
.orbit-bullets li {
float: left;
margin-left: 5px;
cursor: pointer;
color: #999;
text-indent: -9999px;
background: url(orbit/bullets.jpg) no-repeat 4px 0;
width: 13px;
height: 12px;
overflow: hidden; }
.orbit-bullets li.active {
color: #222;
background-position: -8px 0; }
.orbit-bullets li.has-thumb {
background: none;
width: 100px;
height: 75px; }
.orbit-bullets li.active.has-thumb {
background-position: 0 0;
border-top: 2px solid #000; }
Style1.css (стили страниц пользователя)
?@CHARSET "UTF-8";
#container {
width: 100%; /* Ширина макета */
margin: 0 auto; /* Выравниваем по центру */
align:center;
}
#header{
background-image: url("http://www.diplom/design/bigBanner.jpg");
height: 179px;
overflow: hidden;
}
#header1{
padding-top: 60px;
padding-left: 150px;
width: 350px;
height: 150px;
font-size: 20px;
color: orange;
font-family: Verdana,Arial,sans-serif;
float: left;
}
#container {
width: 1000px; /* Ширина макета */
margin: 0 auto; /* Выравниваем по центру */
align:center;
}
#header2{
float:left;
font-size:12px;
padding-left:245px;
padding-top:130px;
width:220px;
}
#path{
clear: both;
margin-top: 0px;
margin-bottom: 0px;
margin-left: 0px;
padding-left: 0px;
font-family: Verdana,Arial,sans-serif;
padding-top: 15px;
padding-bottom: 15px;
}
#menu {
width: 160px; /* Ширина левой колонки */
float: left; /*Прижимаем влево */
}
#content {
width: 240px; /* Ширина левой колонки */
float: left; /*Прижимаем влево */
padding-left: 120px;
padding-bottom: 30px;
padding-top: 1px;
align: center;
}
#content_wide {
width: 80%; /* Ширина левой колонки */
float: left; /*Прижимаем влево */
padding-left: 20px;
padding-bottom: 30px;
padding-top: 20px;
text-align: justify;
font-family: Verdana,Arial,sans-serif;
font-size: 14px;
}
#aside {
width: 440px; /* Ширина правой колонки */
float: left;
font-size: 5px;
}
#footer{
clear: both;
height: 80px;
width: 1000px;
background-image: url("design/buttomBanner.jpg");
}
#menu a {
color: black;
font-style: oblique;
font-family: Verdana,Arial,sans-serif;
font-size: 90%;
font-weight: bolder;
}
#region_select{
float: left;
width: 425px;
height: 400px;
}
Styles.css (стили администраторской части)
BODY {background-image:white;
font-family: Verdana, Arial, sans-serif; /* ???????? ????? ?? ???????? */
/* overflow: scroll;*/
}
.r1, .r2, .r3 /*opisanie klassov dlya okrugleniya blokov*/
{
display: block;
height:1px;
background-color: DeepSkyBlue;
}
.r3 {margin: 0 3px}
.r2 {margin: 0 2px}
.r1 {margin: 0 1px}
#all{margin: 0 auto;
padding: 0;
position: relative;
width: 1000px;}
#general
{
background-position: top right;
padding-bottom: 0;
margin: 0 auto;
clear:left;
/* overflow:auto;*/
/* display: inline-block;
display: inline;
zoom: 1;*/
/* position: relative;*/
}
#top { /* ??????? ????? ? ?????????? ???????? */
background-image:url(design/bigBanner.jpg);/* ???? ???? */
background-repeat: repeat-x;
background-position: top right;
border: solid 1px DeepSkyBlue; /* ????????? ????? */
padding: 5px 5 20px 5px; /* ???? ?????? ?????? */
/* margin-bottom: 15px; ?????????? ????? ?????????? ? ????????? */
font-size: 24;
font-style: cambria;
color:orange;
height:150px;
/* font-size: 16; font-style: oblique; color:#990066
height: 20%;background-color: white;*/
}
#menu { /* ????????? ?? ????? */
background-color: transparent;
/* background-image: url(images/verhniiblok.jpg); ???? ???? */
background-position: top right;
background-repeat: repeat-y;
/* background-position: top left;*/
height: 68%;
/*border: solid 1px black; ????????? ????? */
float: left; /* ?????????? ? ?????? ????? ?? ??????????? */
/* padding: 3px; ???? ?????? ?????? */
margin-right: 7%;
display: inline;
}
#articls { /* ????????? ?? ????? */
background-color: transparent;
/* background-image: url(images/verhniiblok.jpg); ???? ???? */
background-position: top right;
background-repeat: repeat-y;
/* background-position: top left;*/
height: 68%;
/*border: solid 1px black; ????????? ????? */
float: left; /* ?????????? ? ?????? ????? ?? ??????????? */
/* padding: 3px; ???? ?????? ?????? */
margin-right: 2%;
padding-top:20;
display: inline;
}
#menu A { /* ?????? ? ???? */
font-size: 90%; /* ?????? ?????? */
font-style: oblique;
color:black;
}
#content { /* ???????? ?????????? ???????? */
/* background-color: FloralWhite;*/
/* background-image: url(images/verhniiblok.jpg); ???? ???? */
background-position: top right;
border: solid 3px white; /* ????????? ????? */
margin-left: 17px; /* ?????? ????? */
margin-right: 25px;
margin-bottom: 60px;
/* padding: 5% 10% 25% 10%;*/
/*padding-left:7%;*/
/*padding-right:7%;*/
padding-top:3%;
/*margin-bottom: 15px; ?????? ????? */
/* height: 68%;*/
float: left;
display: inline;
width:730px !important;
font-size: 12;
font-style: italic;
color:SlateBlue;
}
#content_top { /* ???????? ?????????? ???????? */
/* background-color: FloralWhite;*/
/* background-image: url(images/verhniiblok.jpg); ???? ???? */
background-position: top right;
border: solid 3px white; /* ????????? ????? */
margin-left: 17px; /* ?????? ????? */
margin-right: 25px;
margin-bottom: 60px;
/* padding: 5% 10% 25% 10%;*/
/*padding-left:7%;*/
/*padding-right:7%;*/
padding-top:3%;
/*margin-bottom: 15px; ?????? ????? */
/* height: 68%;*/
float: left;
display: inline;
width:500px !important;
font-size: 12;
font-style: italic;
color:SlateBlue;
}
#bottom { /* ?????? ????? */
background-image:url(design/buttomBanner.jpg); /* ???? ???? */
background-position: top right;
font-size: 90%; /* ?????? ?????? */
/* padding: 3px; ???? ?????? ?????? */
height:80px;
/* position:fixed;
left: 0px;
bottom: 0px;*/
width: 100%;
/* float: left;*/
border: solid 2px DeepSkyBlue;
margin-bottom:0px;
padding-bottom: 1px;
padding-top: 1px;
margin-top: 1px;
}
H1 { /* ????????? ???????? */
text-align: center; /* ???????????? ?? ?????? */
font-size: 210%; /* ?????? ?????? */
/* font-family: "Times New Roman", Times, serif; ????? ? ????????? */
font-size: 16;
font-style: oblique;
color:#990066;
/* font-weight: normal; ?????????? ?????????? */
/* color: black; ???? ?????? */
/* padding: 0; ??????? ???????? ?????
margin: 0; ???????? ???????? ???????? */
}
#content P {
font-size: 90%; /* ?????? ?????? */
text-align: justify; /* ???????????? ?? ?????? */
padding: 10px; /* ???? ?????? ?????? */
margin: 0; /* ???????? ??????? */
}
#centring /*opisanie id=centring*/
{
display: block; /*opisivaet fonovuyu chast' kak blo4nuyu*/
margin-right: auto; /*otstup sprva ukazivaetsya avtomati4easki brauserom*/
margin-left: auto; /*sleva*/
}
.top_block{position: fixed;
left: 0;
top:0;
width: 100%;
height: 100%;
background-color:black;
z-index: 9;
opacity: 0.7;
}
.block{
position: absolute;
top: 5%;
left: 15%;
right: 15%;
background-color:white;
margin-right: 2px; /*otstup sprva ukazivaetsya avtomati4easki brauserom*/
margin-left: 2px;
margin-top: 2px;
z-index: 12;
}
/* #content{
height:100%;
width:100%;
border:1px solid black;
overflow-y:scroll;
}*/
.slide-container {
text-align:center;
margin:5px 5px 5px 5px;
}
.slideshow {
width:400px;
height:300px;
margin:auto;
position:relative;
}
.slideshow IMG {
position:absolute;
top:0;
left:0;
}
.photoBox
{
width:320px;
height:440px;
}
root {
display: block;
}
.leftimg
{
float: left;
margin: 7px 7px 2px 0px;
}
.clear
{
clear:both;
}
Menu.js
function hiddenLayer(elem) {
document.getElementById(elem).style.display = 'none';}
function showLayer(elem) {
document.getElementById(elem).style.display = 'block';}
highslide.css
.highslide-container div {
font-family: Verdana, Helvetica;
font-size: 10pt;
}
.highslide-container table {
background: none;
}
.highslide {
outline: none;
text-decoration: none;
}
.highslide img {
border: 2px solid silver;
}
.highslide:hover img {
border-color: gray;
}
.highslide-active-anchor img {
visibility: hidden;
}
.highslide-gallery .highslide-active-anchor img {
border-color: black;
visibility: visible;
cursor: default;
}
.highslide-image {
border-width: 2px;
border-style: solid;
border-color: white;
}
.highslide-wrapper, .highslide-outline {
background: white;
}
.glossy-dark {
background: #111;
}
.highslide-image-blur {
}
.highslide-number {
font-weight: bold;
color: gray;
font-size: .9em;
}
.highslide-caption {
display: none;
font-size: 1em;
padding: 5px;
/*background: white;*/
}
.highslide-heading {
display: none;
font-weight: bold;
margin: 0.4em;
}
.highslide-dimming {
/*position: absolute;*/
background: black;
}
a.highslide-full-expand {
background: url(graphics/fullexpand.gif) no-repeat;
display: block;
margin: 0 10px 10px 0;
width: 34px;
height: 34px;
}
.highslide-loading {
display: block;
color: black;
font-size: 9px;
font-weight: bold;
text-transform: uppercase;
text-decoration: none;
padding: 0px;
border: 1px solid white;
background-color: white;
background-image: url(graphics/loader.white.gif);
background-repeat: no-repeat;
background-position: 4px 4px;
height: 24px;
width: 24px;
}
a.highslide-credits,
a.highslide-credits i {
padding: 2px;
color: silver;
text-decoration: none;
font-size: 10px;
}
a.highslide-credits:hover,
a.highslide-credits:hover i {
color: white;
background-color: gray;
}
.highslide-move, .highslide-move * {
cursor: move;
}
.highslide-viewport {
display: none;
position: fixed;
width: 100%;
height: 100%;
z-index: 1;
background: none;
left: 0;
top: 0;
}
.highslide-overlay {
display: none;
}
.hidden-container {
display: none;
}
/* Example of a semitransparent, offset closebutton */
.closebutton {
position: relative;
top: -15px;
left: 15px;
width: 30px;
height: 30px;
cursor: pointer;
background: url(graphics/close.png);
/* NOTE! For IE6, you also need to update the highslide-ie6.css file. */
}
/*****************************************************************************/
/* Thumbnail boxes for the galleries. */
/* Remove these if you are not using a gallery. */
/*****************************************************************************/
.highslide-gallery ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.highslide-gallery ul li {
display: block;
position: relative;
float: left;
width: 106px;
height: 106px;
border: 1px solid silver;
background: #ededed;
margin: 2px;
line-height: 0;
overflow: hidden;
}
.highslide-gallery ul a {
position: absolute;
top: 50%;
left: 50%;
}
.highslide-gallery ul img {
position: relative;
top: -50%;
left: -50%;
}
html>/**/body .highslide-gallery ul li {
display: table;
text-align: center;
}
html>/**/body .highslide-gallery ul li {
text-align: center;
}
html>/**/body .highslide-gallery ul a {
position: static;
display: table-cell;
vertical-align: middle;
}
html>/**/body .highslide-gallery ul img {
position: static;
}
/*****************************************************************************/
/* Controls for the galleries. */
/* Remove these if you are not using a gallery */
/*****************************************************************************/
.highslide-controls {
width: 195px;
height: 40px;
background: url(graphics/controlbar-white.gif) 0 -90px no-repeat;
margin: 20px 15px 10px 0;
}
.highslide-controls ul {
position: relative;
left: 15px;
height: 40px;
list-style: none;
margin: 0;
padding: 0;
background: url(graphics/controlbar-white.gif) right -90px no-repeat;
}
.highslide-controls li {
float: left;
padding: 5px 0;
margin:0;
list-style: none;
}
.highslide-controls a {
background-image: url(graphics/controlbar-white.gif);
display: block;
float: left;
height: 30px;
width: 30px;
outline: none;
}
.highslide-controls a.disabled {
cursor: default;
}
.highslide-controls a.disabled span {
cursor: default;
}
.highslide-controls a span {
/* hide the text for these graphic buttons */
display: none;
cursor: pointer;
}
/* The CSS sprites for the controlbar - see http://www.google.com/search?q=css+sprites */
.highslide-controls .highslide-previous a {
background-position: 0 0;
}
.highslide-controls .highslide-previous a:hover {
background-position: 0 -30px;
}
.highslide-controls .highslide-previous a.disabled {
background-position: 0 -60px !important;
}
.highslide-controls .highslide-play a {
background-position: -30px 0;
}
.highslide-controls .highslide-play a:hover {
background-position: -30px -30px;
}
.highslide-controls .highslide-play a.disabled {
background-position: -30px -60px !important;
}
.highslide-controls .highslide-pause a {
background-position: -60px 0;
}
.highslide-controls .highslide-pause a:hover {
background-position: -60px -30px;
}
.highslide-controls .highslide-next a {
background-position: -90px 0;
}
.highslide-controls .highslide-next a:hover {
background-position: -90px -30px;
}
.highslide-controls .highslide-next a.disabled {
background-position: -90px -60px !important;
}
.highslide-controls .highslide-move a {
background-position: -120px 0;
}
.highslide-controls .highslide-move a:hover {
background-position: -120px -30px;
}
.highslide-controls .highslide-full-expand a {
background-position: -150px 0;
}
.highslide-controls .highslide-full-expand a:hover {
background-position: -150px -30px;
}
.highslide-controls .highslide-full-expand a.disabled {
background-position: -150px -60px !important;
}
.highslide-controls .highslide-close a {
background-position: -180px 0;
}
.highslide-controls .highslide-close a:hover {
background-position: -180px -30px;
}
Подобные документы
Общее представление социальной сети для дополнительного образования. Информационная модель спортивных школ по художественной гимнастики. Общая структура системы "Школа художественной гимнастики". Разработка информационной структуры web-приложения.
дипломная работа [4,9 M], добавлен 11.11.2014Технологии создания web-страниц. Появление Active Server Pages. Разработка динамического web-сайта на asp.net. Создание дизайна и каркаса сайта с использованием стандартных HTML таблиц. Проектирование базы данных на основе ado.net и подключение к ней.
контрольная работа [2,4 M], добавлен 24.05.2019Описание логической структуры таблиц базы данных для разработки web-приложения с помощью технологий ado.net и asp.net. Система меню, программы и модули, используемые в работе сайта. Класс, выполняющий операции и связующий информацию сайта с базой данной.
курсовая работа [104,5 K], добавлен 26.09.2012Анализ систем для создания сайта "Интеллектика". Архитектура и структура сайта; технические требования. Выбор базы данных. Процесс разработки приложения авторизации для просмотра закрытых научных проектов. Техническая документация для администратора.
дипломная работа [2,0 M], добавлен 19.01.2017Выбор программной среды. Система управления базами данных MySQL. Детский клуб: Hypertext Preprocessor. Определение целевого сегмента пользователей, их функции. Проектирование структуры базы данных. Разработка интерфейса web-сайта и пользовательской части.
дипломная работа [5,0 M], добавлен 19.01.2017Проектирование структуры и информационного содержания сайта. Анализ поисковой статистики и подбор синонимов. Целевая аудитория сайта. Реализация каркаса сайта. Разработка навигации и дизайна сайта с использованием css. Реализация интерактивности.
курсовая работа [10,7 M], добавлен 01.09.2016Особенности создания страниц на языке APS.NET, создание и формы обращение к базам данных. Интерфейс автоматического вывода определнного столбца базы данных в элементы управления. Структура базы данных, принцип работы страниц сайта, настройка приложения.
курсовая работа [387,3 K], добавлен 02.03.2010Создание электронного учебника в программе Adobe Dreamweaver 9 CS4 и текстовом редакторе Notepad по дисциплине "Информационная безопасность". Разработка индивидуального дизайна учебника, его верстка. Описание работы сайта. Затраты на его рекламу.
дипломная работа [2,2 M], добавлен 07.07.2012Задачи и стадии разработки автоматизированной информационной системы художественной школы. Описание предметной области с помощью бизнес-моделирования, использование диаграмм потоков данных DFD. Спецификация системы, логическая структура базы данных.
курсовая работа [281,9 K], добавлен 12.07.2011Создание автоматизированной системы по сбору и анализу статистических данных сайта. Принципы сбора статистических данных. Исследование информационных потоков. Обзор современных СУБД и языков программирования. Логическая и физическая модель базы данных.
дипломная работа [3,0 M], добавлен 08.07.2012