Skip to content

Commit

Permalink
the bottom bar "program icons" work
Browse files Browse the repository at this point in the history
  • Loading branch information
TheElevatedOne committed Nov 11, 2024
1 parent 388854d commit 7fb6f5c
Show file tree
Hide file tree
Showing 13 changed files with 1,087 additions and 5 deletions.
711 changes: 711 additions & 0 deletions css/default.css

Large diffs are not rendered by default.

Binary file added fonts/NotoSans-Italic-VariableFont.ttf
Binary file not shown.
Binary file added fonts/NotoSans-VariableFont.ttf
Binary file not shown.
Binary file added fonts/OpenSans-Italic-VariableFont.ttf
Binary file not shown.
Binary file added fonts/OpenSans-VariableFont.ttf
Binary file not shown.
51 changes: 51 additions & 0 deletions icons/close-hover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 40 additions & 0 deletions icons/close.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 51 additions & 0 deletions icons/maximize-hover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions icons/maximize.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
52 changes: 52 additions & 0 deletions icons/minimize-hover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 41 additions & 0 deletions icons/minimize.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
95 changes: 94 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<meta name="viewport" content="width=device-width, inition-scale=1">
<title>ELEVATED | Desktop</title>
<link rel="shortcut icon" href="./logo/logo.png" type="image/x-icon">
<link rel="stylesheet" href="./css/default.css">
Expand Down Expand Up @@ -98,6 +98,99 @@
</div>
</div>
</div>
<div class="window" id="window">
<div class="win-info" id="win-info">
<div class="title-bar" id="title-bar">
<div class="img" id="img" title="Info"></div>
<div class="span">
<span>Untitled - Info</span>
</div>
<div class="radio">
<div class="min"></div>
<div class="max"></div>
<div class="exit"></div>
</div>
</div>
</div>
<div class="win-git" id="win-git">
<div class="title-bar" id="title-bar">
<div class="img" id="img" title="Info"></div>
<div class="span">
<span>Repositories - Github</span>
</div>
<div class="radio">
<div class="min"></div>
<div class="max"></div>
<div class="exit"></div>
</div>
</div>
</div>
<div class="win-art" id="win-art">
<div class="title-bar" id="title-bar">
<div class="img" id="img" title="Info"></div>
<div class="span">
<span>Untitled - Art</span>
</div>
<div class="radio">
<div class="min"></div>
<div class="max"></div>
<div class="exit"></div>
</div>
</div>
</div>
<div class="win-vape" id="win-vape">
<div class="title-bar" id="title-bar">
<div class="img" id="img" title="Info"></div>
<div class="span">
<span>ELEVATED | Vape Liquids</span>
</div>
<div class="radio">
<div class="min"></div>
<div class="max"></div>
<div class="exit"></div>
</div>
</div>
</div>
<div class="win-music" id="win-music">
<div class="title-bar" id="title-bar">
<div class="img" id="img" title="Info"></div>
<div class="span">
<span>Music</span>
</div>
<div class="radio">
<div class="min"></div>
<div class="max"></div>
<div class="exit"></div>
</div>
</div>
</div>
<div class="win-mine" id="win-mine">
<div class="title-bar" id="title-bar">
<div class="img" id="img" title="Info"></div>
<div class="span">
<span>ELEVATED | Minecraft</span>
</div>
<div class="radio">
<div class="min"></div>
<div class="max"></div>
<div class="exit"></div>
</div>
</div>
</div>
<div class="win-wall" id="win-wall">
<div class="title-bar" id="title-bar">
<div class="img" id="img" title="Info"></div>
<div class="span">
<span>Wallpaper - System Settings</span>
</div>
<div class="radio">
<div class="min"></div>
<div class="max"></div>
<div class="exit"></div>
</div>
</div>
</div>
</div>
<div class="bottom-bar">
<div title="Info" class="appman-info" id="info">
<input type="checkbox" name="info" id="ch-info" onclick="uncheck(this)">
Expand Down
Loading

0 comments on commit 7fb6f5c

Please sign in to comment.