Skip to content

Commit

Permalink
website
Browse files Browse the repository at this point in the history
  • Loading branch information
markpavlenko committed May 6, 2024
1 parent 2ae9977 commit 337cf27
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 1 deletion.
Binary file removed PyTermOS-Universal/imgs/PyTermOS.bmp
Binary file not shown.
Binary file added PyTermOS.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file added docs.html
Empty file.
18 changes: 17 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,25 @@
<meta charset="UTF-8">
<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=Poetsen+One&display=swap" rel="stylesheet">
<title>PyTermOS</title>
</head>
<body>

<nav>
<div class="divelements">
<h1>PyTermOS</h1>
<button class="docs"><a href="docs.html">PyTermOS Documentation</a></button>
</div>
</nav>
<div class="single">
<h1>PyTermOS</h1>
</div>
<div class="centerelements">
<h1>PyTermOS is a light and fast OS for RPi family.</h1>
<h1>And it will be your next OS.</h1>
</div>
<h1></h1>
</body>
</html>
29 changes: 29 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
a{
text-decoration: wavy;
color: black;
}
.divelements{
display: flex;
justify-content: space-between;
background-color: rgb(92, 140, 251);
border-radius: 18px;
}
body{
font-family: "Poetsen One", sans-serif;
background-color: rgb(182, 203, 251);
}
.centerelements{
display: flex;
flex-direction: column;
}
.single{
display: flex;
justify-content: center;
align-items: center;
}
button{
border-radius: 18px;
font-size: 20px;
background-color: rgb(199, 237, 255);
border: none;
}

0 comments on commit 337cf27

Please sign in to comment.