-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
140 lines (127 loc) · 3.17 KB
/
index.html
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
<head>
<title>Marian13 Static Content</title>
<!-- https://www.w3schools.com/css/css_rwd_viewport.asp -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Nunito' rel='stylesheet'>
<style type="text/css">
/**
* https://codepen.io/willpower/pen/pJKdej
* https://www.cssportal.com/scss-to-css/
*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
padding: 50px;
font-family: 'Nunito', sans-serif;
}
ul {
margin-left: 20px;
}
.wtree li {
list-style-type: none;
margin: 10px 0 10px 10px;
position: relative;
}
.wtree li:before {
content: "";
position: absolute;
top: -10px;
left: -20px;
border-left: 1px solid #ddd;
border-bottom: 1px solid #ddd;
width: 20px;
height: 15px;
}
.wtree li:after {
position: absolute;
content: "";
top: 5px;
left: -20px;
border-left: 1px solid #ddd;
border-top: 1px solid #ddd;
width: 20px;
height: 100%;
}
.wtree li:last-child:after {
display: none;
}
.wtree li span {
display: block;
border: 1px solid #ddd;
padding: 10px;
color: #888;
text-decoration: none;
}
</style>
<style type="text/css">
/**
* https://developer.mozilla.org/en-US/docs/Learn/CSS/Styling_text/Styling_links
* https://materializecss.com/color.html
*/
a {
outline: none;
text-decoration: none;
padding: 2px 1px 0;
}
a:link {
color: #2196f3 ;
}
a:visited {
color: #673ab7;
}
a:focus {
border-bottom: 1px solid #42a5f5;
}
a:hover {
border-bottom: 1px solid;
background: #e3f2fd ;
}
a:active {
background: #90caf9;
}
</style>
</head>
<body>
<!-- https://codepen.io/willpower/pen/pJKdej -->
<a href="https://github.com/marian13/static_content">marian13/static_content</a>
<ul class="wtree">
<li>
<span>
Convenient Service
</span>
<ul>
<li>
<span>Diagrams</span>
<ul>
<li>
<span>
<a href="./convenient_service/diagrams/method_middlewares_sequence_diagram.html">Method Middlewares Sequence Diagram</a>
</span>
</li>
<li>
<span>
<a href="./convenient_service/diagrams/components_graph.html">Components Graph</a>
</span>
</li>
</ul>
</li>
<li>
<span>Presentations</span>
<ul>
<li>
<span>
<a href="./convenient_service/presentations/all_in_one/index.html">All-in-One Presentation</a>
</span>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</body>
</html>