-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (87 loc) · 2.43 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
<!DOCTYPE html>
<html>
<head>
<title>lcharvol.github.io</title>
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<style>
body
{
background-color:rgb(39,40,34);
font-family: 'Nunito', sans-serif;
color:white;
padding-left:50px;
padding-top:50px;
}
#term a
{
position: relative;
color:white;
width:100%;
text-decoration: none;
left:20px;
}
#term a p
{
position: relative;
margin:0;
}
body h1
{
position:relative;
text-align: center;
margin-bottom:50px;
}
#term
{
background-color:black;
position:relative;
border-radius:5px;
width:500px;
}
#term_header
{
position:relative;
background-color:rgb(205,205,205);
width:calc(100% - 10px);
height:20px;
border-radius:5px 5px 0 0;
padding-left:10px;
}
#content
{
position: relative;
width:100%;
}
#content div
{
position: relative;
width:100%;
padding-left:10px;
padding-top:5px;
padding-bottom:5px;
}
.circle
{
position: relative;
display: inline-block;
border-radius: 100px;
width:10px;
height:10px;
}
</style>
</head>
<body>
<h1>Lcharvol.github.io</h1>
<div id="term">
<div id="term_header">
<div class="circle" style="background-color:rgb(231, 76, 60);"></div>
<div class="circle" style="background-color:rgb(241, 196, 15);"></div>
<div class="circle" style="background-color:rgb(46, 204, 113);"></div>
</div>
<div id="content">
<div><a href="2048/2048.html" ><p> ~/ 2048_Vanilla JS</p></a></div>
<div><a href="tetris/tetris.html"><p>~/ Tetris_Vanilla JS</p></a></div>
</div>
</div>
</body>
</html>