add stuff
This commit is contained in:
parent
f48e257462
commit
8cf39d9bc7
9 changed files with 155 additions and 77 deletions
57
CS/index.html
Normal file
57
CS/index.html
Normal file
|
@ -0,0 +1,57 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>CS/</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: black;
|
||||
color: green;
|
||||
font-family: monospace;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: flex-start;
|
||||
}
|
||||
h1 {
|
||||
color: lightgreen;
|
||||
}
|
||||
.terminal {
|
||||
width: 80%;
|
||||
margin-top: 20px;
|
||||
text-align: left;
|
||||
}
|
||||
.command {
|
||||
color: lightblue;
|
||||
}
|
||||
.path {
|
||||
color: white;
|
||||
}
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
li {
|
||||
margin: 5px 0;
|
||||
}
|
||||
a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="terminal">
|
||||
<ul>
|
||||
<li><p><span class="command">CS/</span></li>
|
||||
<li><a href="/ProblemSolvingProcess/">Problem Solving Process</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue