Skip to content

Simple website terminal styled, written in pure HTML/CSS/Javascript.

License

Notifications You must be signed in to change notification settings

sbdeveloper90/termsite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TERMSITE - terminal styled website

Simple website terminal styled, written in pure HTML/CSS/Javascript.

Inspired by

Useful Links


COLOR PALETTE

  • #282a37 #282a37 - background
  • #6087ae #6087ae - system logo
  • #cca8fb #cca8fb - folder path
  • #5cf58d #5cf58d - github info
  • #ff91d0 #ff91d0 - system
  • #6187ac #6187ac - timestamp
  • #cb266d #cb266d - cursor
  • #d3d7d0 #d3d7d0 - text regular
  • #ffffff #ffffff - text bold
  • #0051ad #0051ad - text selection

POWERLEVEL10K RAINBOW STYLE

<div id="pl10k">
    <div id="pl10k_logo"><i class="nf nf-fa-linux"></i></div>
    <div id="pl10k_path"><i class="nf nf-fa-folder"></i>&nbsp;netlify/public_html</div>
    <div id="pl10k_git"><i class="nf nf-dev-github_alt"></i>&nbsp;<i class="nf nf-dev-git_branch"></i>&nbsp;main</div>
</div>
/* powerlevel10k rainbow style */
#pl10k {
  display: flex;
  margin-right: 20px;
}
#pl10k #pl10k_logo,
#pl10k #pl10k_path,
#pl10k #pl10k_git {
  display: flex;
  align-items: center;
  justify-content: center;
  height:22px;
  position:relative;
  text-align:center;
  line-height:1.5em;
  font-size: 13px;
}
#pl10k #pl10k_logo {
  background-color:var(--color-system-logo);
  color:var(--color-text-bold);
  width:25px;
}
#pl10k #pl10k_path {
  background-color:var(--color-folder-path);
  color:var(--color-background);
  width:220px;
}
#pl10k #pl10k_git {
  background-color:var(--color-github-info);
  color:var(--color-background);
  width:110px;
}
#pl10k #pl10k_logo::after,
#pl10k #pl10k_path::after,
#pl10k #pl10k_git::after {
  content:"";
  position:absolute;
  height:0;
  width:0;
  left:100%;
  top:0;
  border:11px solid transparent;
}
#pl10k #pl10k_logo::after {
  border-left: 11px solid var(--color-system-logo);
  z-index: 999;
}
#pl10k #pl10k_path::after {
  border-left: 11px solid var(--color-folder-path);
  z-index: 998;
}
#pl10k #pl10k_git::after {
  border-left: 11px solid var(--color-github-info);
  z-index: 997;
}
/* end powerlevel10k rainbow style */

About

Simple website terminal styled, written in pure HTML/CSS/Javascript.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published