-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (103 loc) · 2.49 KB
/
index.html
File metadata and controls
118 lines (103 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!doctype html>
<html class="no-js" lang="ru">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Страницы проекта</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
<style>
body {
padding: 0 0 0 40px;
margin: 0;
font-family: Arial;
font-size: 16px;
color: #555;
}
a {
text-decoration: none;
color: #ccc;
}
a.done {
color: #2fa4e7;
pointer-events: all;
}
a:hover {
border-bottom: 1px solid;
}
/* a:visited {
color: #9933cc;
}*/
ol {
-webkit-column-count: 3;
-moz-column-count: 3;
-column-count: 3;
counter-reset: heading;
padding: 0;
}
li {
margin-bottom: 5px;
list-style: none;
page-break-inside:avoid;
}
li:before {
counter-increment: heading;
content: counter(heading) ".";
font-size: 14px;
color: #aaa;
display: inline-block;
width: 25px;
margin-right: 5px;
text-align: right;
}
li.bond:before {
color: #6BD07A;
}
li.kuz:before {
color: #E02A16;
}
li.bez:before {
color: #DE47D8;
}
.legend {
position: absolute;
top: 20px;
right: 20px;
}
.author{
display: inline-block;
margin: 0;
}
@media only screen and (max-width: 1023px){
ol {
-webkit-column-count: 3;
-moz-column-count: 3;
-column-count: 3;
}}
@media only screen and (max-width: 767px){
ol {
-webkit-column-count: 2;
-moz-column-count: 2;
-column-count: 2;
}}
@media only screen and (max-width: 479px) {
ol {
-webkit-column-count: 1;
-moz-column-count: 1;
-column-count: 1;
}}
</style>
</head>
<body>
<h3>Страницы проекта: </h3>
<div class="legend">
Верстка:
<p class="author" style="color: #6BD07A;">Бондаренко</p> /
</div>
<ol>
<li class="bond"><a class="" href="_html/index.php">Главная</a></li>
</ol>
</body>
</html>