Skip to content
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
37 changes: 37 additions & 0 deletions all.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
@import 'blocks/b-content/b-content.css';
@import 'blocks/b-head/b-head.css';
@import 'blocks/b-head/__titleLarge/b-head__titleLarge.css';
@import 'blocks/b-head/__titleSmall/b-head__titleSmall.css';
@import 'blocks/b-list/b-list.css';
@import 'blocks/b-list-item/b-list-item.css';
@import 'blocks/b-list-item/__paragraph/b-list-item__paragraph.css';
@import 'blocks/b-list-item/__title/b-list-item__title.css';
@import 'blocks/b-table/b-table.css';
@import 'blocks/b-table/__item/b-table__item.css';
@import 'blocks/b-table/__item/_size/b-table__item_size_large.css';
@import 'blocks/b-table/__item/_size/b-table__item_size_small.css';

html, body, div, span, applet, object, iframe,
header, section, article, footer,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td
{
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
BODY
{
background: #efefef;
font-family: Calibri;
}
89 changes: 89 additions & 0 deletions anketa.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<!DOCTYPE html>
<html>
<head>
<title>������ ���������</title>
<link rel="stylesheet" href="all.css">
</head>
<body>
<div class="b-content">

<div class="b-head">
<span class="b-head__titleSmall">������ ���������</span>
<span class="b-head__titleLarge">���� "���������� �����������"</span>
</div>

<table class="b-table">
<tr>
<td class="b-table__item_size_small">�������, ���:</td>
<td class="b-table__item_size_large">�������� �����</td>
</tr>
<tr>
<td class="b-table__item_size_small">E-mail:</td>
<td class="b-table__item_size_large"><a href="mailto:[email protected]">[email protected]</a></td>
</tr>
<tr>
<td class="b-table__item_size_small">�������:</td>
<td class="b-table__item_size_large">+7 952 72 952 61</td>
</tr>
<tr>
<td class="b-table__item_size_small">���, ���������, �������������:</td>
<td class="b-table__item_size_large">����, ����, ���������� ����������, ������� ����������� � ��������� ����������</td>
</tr>
<tr>
<td class="b-table__item_size_small">��� �����������:</td>
<td class="b-table__item_size_large">2010</td>
</tr>
<tr>
<td class="b-table__item_size_small">��� ���������:</td>
<td class="b-table__item_size_large">��� ����� :)</td>
</tr>
</table>
<div class="b-list">
<div class="b-list-item">
<span class="b-list-item__title">����� ����� ����������������, ����������,
����� ���������� �� �����������? ����� � ��� ���� ������������?</span>
<div class="b-list-item__paragraph">
<a href="http://acm.timus.ru/author.aspx?id=69236" target="_blank">
����� ACM-�������</a> �� <i>�������</i>, �� ������ ���� ������
������������ � <i>��</i>, <i>������</i> � <i>���������</i>.
</div>
<div class="b-list-item__paragraph">
��� ������ ��������� Notepad++, � ���� ������� ����� ����������
Zenburn.
</div>
</div>
<div class="b-list-item">
<span class="b-list-item__title">���� ������</span>
<div class="b-list-item__paragraph">
���
</div>
</div>
<div class="b-list-item">
<span class="b-list-item__title">���� ���������� ��</span>
<div class="b-list-item__paragraph">
������ �������� �����������, � ���� �� ����� �������� � ��������
� �������� ���� ����� �������������
<a href="http://urfuclub.ru" target="_blank">urfuclub.ru</a>.
</div>
<div class="b-list-item__paragraph">
� ���, � ����� ������� � ������� �����, ������� ��� ���� �����
������ <a href="http://lam3run.do.am" target="_blank">lam3run.do.am</a>.
</div>
</div>
<div class="b-list-item">
<span class="b-list-item__title">������ �� ������ ������� �������
� ����� "���������� �����������"?</span>
<div class="b-list-item__paragraph">
��������� ���������������� ������ � ���������� ����������� � ������.
</div>
</div>
<div class="b-list-item">
<span class="b-list-item__title">������ �� ������ � ������?</span>
<div class="b-list-item__paragraph">
������ �� ����, ������� �������� �� �����, � ��� ����������.
</div>
</div>
</div>
</div>
</body>
</html>
11 changes: 11 additions & 0 deletions blocks/b-content/b-content.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.b-content
{
width: 700px;
margin: auto;
margin-top: 30px;
margin-bottom: 30px;
border-radius: 6px 6px 6px 6px;
padding: 40px 30px 0 30px;
background: #fff;
border: 2px solid #ccc;
}
6 changes: 6 additions & 0 deletions blocks/b-head/__titleLarge/b-head__titleLarge.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.b-head__titleLarge
{
display: block;
font-size: 28px;
font-weight: bold;
}
5 changes: 5 additions & 0 deletions blocks/b-head/__titleSmall/b-head__titleSmall.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.b-head__titleSmall
{
display: block;
font-size: 20px;
}
4 changes: 4 additions & 0 deletions blocks/b-head/b-head.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.b-head
{
height: 100px;
}
5 changes: 5 additions & 0 deletions blocks/b-list-item/__paragraph/b-list-item__paragraph.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.b-list-item__paragraph
{
margin: 4px 0 0 2px;
font-family: Calibri;
}
4 changes: 4 additions & 0 deletions blocks/b-list-item/__title/b-list-item__title.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.b-list-item__title
{
font: 17px Tahoma, sans-serif;
}
5 changes: 5 additions & 0 deletions blocks/b-list-item/b-list-item.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.b-list-item
{
display: list-item;
margin: 10px 0 20px 0;
}
4 changes: 4 additions & 0 deletions blocks/b-list/b-list.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.b-list
{
margin: 30px 0 50px 5px;
}
6 changes: 6 additions & 0 deletions blocks/b-table/__item/_size/b-table__item_size_large.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.b-table__item_size_large
{
width: 540px;
padding: 6px 4px 6px 4px;
font-size: 17px;
}
6 changes: 6 additions & 0 deletions blocks/b-table/__item/_size/b-table__item_size_small.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.b-table__item_size_small
{
width: 160px;
padding: 6px 4px 6px 4px;
font: 17px Tahoma, sans-serif;
}
5 changes: 5 additions & 0 deletions blocks/b-table/__item/b-table__item.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.b-table__item
{
font-size: 17px;
padding: 8px 4px 8px 4px;
}
4 changes: 4 additions & 0 deletions blocks/b-table/b-table.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.b-table
{
margin-bottom: 30px;
}