-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
116 lines (107 loc) · 3.45 KB
/
homepage.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"></meta>
<title>Chien-Lin home</title>
<style type="text/css">
.body
{
margin: 0px;
}
.cover
{
display: block;
margin-left: auto;
margin-right: auto;
width: 100%;
height: 90px;
opacity: 0.5;
}
.article-container
{
margin-top: 80px;
font-family: "serif"; /*宋體*/
margin-left: 18%;
}
.article-date
{
font-size: 16px;
}
.link-unstyled
{
text-decoration: none;
color:indigo;
}
.article-list
{
margin-left: 3%;
padding: 5px;
line-height: 150%;
}
.link-unstyled:hover
{
color: lightcoral;
}
ul
{
list-style: none;
}
ul.cover-bar-list
{
float: right;
margin-right: 50px;
font-weight: bold;
font-family: "MS Serif";
text-decoration: none;
}
ul.cover-bar-list li
{
/*new find selector*/
display: inline-block;
padding: 2px;
}
/*
ul.cover-bar-list li:hover
{
background-color:rgba(150, 166, 238, 0.883);
color:black;
}*/
ul.cover-bar-list li a.cover-link-unstyled
{
text-decoration: none;
padding: 5px;
color: black;
}
ul.cover-bar-list li a.cover-link-unstyled:hover
{
background-color:rgba(12, 13, 15, 0.883);
opacity: 0.7;
color:white;
}
</style>
</head>
<body class="body">
<img class="cover" src="images/cover5.jpg" ></img>
<ul class="cover-bar-list">
<li><a class="cover-link-unstyled" href="homepage.html">Home</a></li>
<li><a class="cover-link-unstyled" href="">Categories</a></li>
<li><a class="cover-link-unstyled" href="">Archives</a></li>
<li><a class="cover-link-unstyled" href="website_growth.html">Growth</a></li>
<li><a class="cover-link-unstyled" href="">About</a></li>
</ul>
<div class="article-container">
<div class="article-date">2021年5月20日(四)</div>
<div class="article-list">
<a class="link-unstyled" href="articles/install_gpu_anaconda.txt">
深度學習工具:安裝nvidia-driver與anaconda
</a><br/>
<a class="link-unstyled" href="articles/nvidia-driver_cuda_cudnn.txt">
深度學習筆記:nvidia-driver、cuda、cudnn之間的連帶關係
</a><br/>
<a class="link-unstyled" href="articles/install_realsense.txt">
安裝筆記:realsense D400系列(D435、D455)
</a><br/>
</div>
</div>
</body>
</html>