-
Notifications
You must be signed in to change notification settings - Fork 0
/
todayatree.html
105 lines (100 loc) · 2.46 KB
/
todayatree.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>o_O tree of chuck O_o</title>
<style>
ul.tree a{
color: black;
text-decoration: none;
}
ul.tree a:hover{
color: white;
background-color: black;
}
ul{
list-style: none;
}
li.li-navigation{
margin-left: 106px;
}
li.li-header{
font-family: Arial, Helvetica, sans-serif;
color: white;
background-color: magenta;
font-size: larger;
display: inline-block;
text-align: left;
}
li.li-header a{
font-family: Arial, Helvetica, sans-serif;
color: white;
background-color: magenta;
font-size: larger;
display: inline-block;
text-align: left;
text-decoration: none;
}
.ul-container {
align-content: left;
}
ul.tree, ul.tree ul {
list-style: none;
margin: 0;
padding: 0;
}
ul.tree ul {
margin-left: 10px;
}
ul.tree li {
margin: 0;
padding: 0 7px;
line-height: 20px;
color: black;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
border-left:1px solid rgb(100,100,100);
}
ul.tree li:last-child {
border-left:none;
}
ul.tree li:before {
position:relative;
top:-0.3em;
height:2em;
width:80px;
color:white;
border-bottom:1px solid rgb(100,100,100);
content:"";
display:inline-block;
left:-7px;
}
ul.tree li:last-child:before {
border-left:1px solid rgb(100,100,100);
}
</style>
</head>
<body>
<div class="ul-container">
<ul>
<li class="li-header"> <a href="https://chuckroth.github.io/todayatree.html"> chuck roth </a> </li>
<li class="li-navigation">
<ul class="tree">
<li><a href="https://chuckroth.github.io/works.html">works</a>
</li>
<li><a href="https://chuckroth.github.io">about</a>
</li>
<li><a href="https://chuckroth.github.io/store.html">store</a>
</li>
<li><a href="https://www.instagram.com/watergh0st/">news</a>
</li>
<li><a href="https://www.instagram.com/watergh0st/">press</a>
</li>
</ul>
</li>
</ul>
</div>
</body>
</html>