initial commit
This commit is contained in:
commit
c54266f1d7
3 changed files with 78 additions and 0 deletions
BIN
image.gif
Normal file
BIN
image.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 600 KiB |
37
index.html
Normal file
37
index.html
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
<!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">
|
||||||
|
<link rel="stylesheet" href="style.css">
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Comfortaa&display=swap" rel="stylesheet">
|
||||||
|
<title>~</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<img src="image.gif">
|
||||||
|
<h1>~/</h1>
|
||||||
|
<div class="bookmark-conatiner">
|
||||||
|
<div class="bookmarks">
|
||||||
|
<h2>reddit</h2>
|
||||||
|
<li><a href="https://reddit.com/r/awwnime">r/awwnime</a></li>
|
||||||
|
<li><a href="https://reddit.com/r/MechanicalKeyboards">r/futurology</a></li>
|
||||||
|
<li><a href="https://reddit.com/r/MechanicalKeyboards">r/mechanicalkeyboards</a></li>
|
||||||
|
</div>
|
||||||
|
<div class="bookmarks">
|
||||||
|
<h2>play</h2>
|
||||||
|
<li><a href="https://monkeytype.com">monkeytype</a></li>
|
||||||
|
<li><a href="https://youtube.com">youtube</a></li>
|
||||||
|
<li><a href="https://tetr.io">tetr.io</a></li>
|
||||||
|
</div>
|
||||||
|
<div class="bookmarks">
|
||||||
|
<h2>dev</h2>
|
||||||
|
<li><a href="https://github.com">github</a></li>
|
||||||
|
<li><a href="https://devdocs.io">devdocs</a></li>
|
||||||
|
<li><a href="https://stackoverflow.com/">stackoverflow</a></li>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
41
style.css
Normal file
41
style.css
Normal file
|
|
@ -0,0 +1,41 @@
|
||||||
|
body {
|
||||||
|
background: #35363a;
|
||||||
|
color: whitesmoke;
|
||||||
|
font-family: 'Comfortaa', cursive;
|
||||||
|
text-align: center;
|
||||||
|
margin: 7em;
|
||||||
|
margin-top: 6em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
color: cyan
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: .5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
float: left;
|
||||||
|
margin-left: 10%;
|
||||||
|
max-width: 30%;
|
||||||
|
height: auto;
|
||||||
|
border-radius: 2%;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: hotpink
|
||||||
|
}
|
||||||
|
|
||||||
|
.bookmark-container {
|
||||||
|
padding: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bookmarks {
|
||||||
|
width: 20%;
|
||||||
|
display: inline-block;
|
||||||
|
padding: 2em;
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue