-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (47 loc) · 1.24 KB
/
index.html
File metadata and controls
53 lines (47 loc) · 1.24 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
---
layout: post
title: Home
---
<style>
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
transition: 0.3s;
width: 40%;
background-color: ghostwhite;
margin-right: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
color: black;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
cursor: pointer;
}
.container {
padding: 2px 16px;
}
</style>
<div style="display: flex">
<div class="card" onclick="location.href='/all-in-one/leetcode.html';">
<img src="./assets/img/lc.jpeg" alt="Avatar" style="width: 100%" />
<div class="container">
<h4><b>LeetCode Problems</b></h4>
<p>刷题明天见,刷题天天见</p>
</div>
</div>
<div class="card" onclick="location.href='/all-in-one/ood.html';">
<img src="./assets/img/ood.jpeg" alt="Avatar" style="width: 100%" />
<div class="container">
<h4><b>OOD</b></h4>
<p>面向现实吧</p>
</div>
</div>
<div class="card" onclick="location.href='/all-in-one/system_design.html';">
<img src="./assets/img/sd.jpeg" alt="Avatar" style="width: 100%" />
<div class="container">
<h4><b>System Design</b></h4>
<p>设计一下吧</p>
</div>
</div>
</div>