Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Создан HTML5 интерфейс вывода данных #24

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions laborproductivity/output/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="styles/style.css">
<title>HTML5</title>
<meta charset="utf-8">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js">
</script>
<![endif]-->
</head>
<body>


<header>
<center><h1>Производительность труда</h1></center>
</header>

<nav>
<ul>
<li><a href="">Ввод данных</a></li>|
<li><a href="">Помощь</a></li>
</ul>
</nav>

<article>
<h2>Вывод данных:</h2>
<ul>
<li>Прибыльность</li>
<li>Отдача от капитала</li>
<li>Производительность труда</li>
<li>Совокупная Факторная Производительность (СФП)</li>
<li>Ratios</li>
</ul>
</article>


<footer>
Проект <b>InfoCulture</b>
</footer>

</body>
</html>
3 changes: 3 additions & 0 deletions laborproductivity/output/information.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Это HTML интерфейс вывода данных о производительности труда. Он будет интегрирован в PHP приложение.

Денисов Арсений
37 changes: 37 additions & 0 deletions laborproductivity/output/styles/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
background-repeat: no-repeat;
background-attachment: scroll;
background: linear-gradient(40deg,#45cafc,#303f9f);
font-family: Verdana, sans-serif;
font-size: 0.8em;
}


header, nav, section, article, footer {
border-radius: 10px;
font-family: Calibri;
font-size: 1.5em;
border: 1px solid grey;
margin: 1em;
padding: 8px;
background: white;
-webkit-box-shadow: inset 0 0 15px #888888;
-moz-box-shadow: inset 0 0 15px #888888;
box-shadow: inset 0 0 15px #888888;
}


nav ul {
margin: 0;
padding: 0;
}

nav ul li {
display: inline;
margin: 5px;
}