Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
berlintay authored Aug 10, 2024
1 parent c135809 commit 9851a80
Showing 1 changed file with 53 additions and 95 deletions.
148 changes: 53 additions & 95 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,59 +1,65 @@
:root {
--main-bg-color: #1f1f28;
--main-text-color: #dcd7ba;
--accent-color: #7e9cd8;
--highlight-color: #957fb8;
--terminal-green: #00FF00;
}

body, html {
background-color: var(--main-bg-color);
color: var(--main-text-color);
margin: 0;
padding: 0;
font-family: 'IBM Plex Mono', monospace;
background-color: #1f1f28;
color: #dcd7ba;
height: 100%;
}

#ascii-header {
color: var(--highlight-color);
text-align: center;
margin: 20px 0;
#boot-screen {
position: fixed;
width: 100%;
height: 100%;
background-color: black;
display: flex;
justify-content: center;
align-items: center;
}

#links {
#main-interface {
display: flex;
flex-direction: column;
align-items: center;
height: 100%; /* Ensure the main interface takes full height */
}

#ascii-header {
color: #957fb8;
text-align: center;
}

#links a {
color: var(--accent-color);
text-decoration: none;
transition: color 0.3s ease;
#trending-container {
position: absolute;
top: 20px;
right: 20px;
background-color: rgba(0, 0, 0, 0.8);
color: #00FF00;
padding: 15px;
border: 1px solid #00FF00;
border-radius: 5px;
width: 300px;
max-height: 400px;
overflow-y: auto;
}

#links a:hover {
color: var(--highlight-color);
#trending-repos .repo {
margin-bottom: 10px;
}

#terminal-prompt {
position: absolute;
top: 150px;
left: 20px;
#links {
text-align: center;
margin-top: 20px;
}

#trending-container {
position: absolute;
top: 10px;
right: 10px;
color: var(--terminal-green);
font-family: monospace;
background-color: rgba(0, 0, 0, 0.8);
padding: 10px;
border: 1px solid var(--terminal-green);
max-width: 300px;
border-radius: 5px;
#links a {
color: #7e9cd8;
text-decoration: none;
margin: 0 10px;
}

.repo-item {
margin-bottom: 5px;
color: var(--terminal-green);
#links a:hover {
color: #957fb8;
}

#terminal {
Expand All @@ -79,74 +85,26 @@ body, html {
color: #7e9cd8;
}


#command-input {
background-color: transparent;
border: none;
color: var(--main-text-color);
color: #dcd7ba;
font-family: 'IBM Plex Mono', monospace;
font-size: 16px;
outline: none;
caret-color: var(--main-text-color);
}

.window {
position: absolute;
background-color: var(--main-bg-color);
border: 1px solid var(--highlight-color);
padding: 10px;
min-width: 200px;
z-index: 1000;
display: none;
}

.window-header {
background-color: var(--accent-color);
color: var(--main-bg-color);
padding: 5px;
cursor: move;
}

.window-content {
padding: 10px;
color: var(--main-text-color);
width: 100%;
caret-color: #dcd7ba;
}

#taskbar {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: var(--main-bg-color);
color: var(--main-text-color);
background-color: #1f1f28;
color: #dcd7ba;
padding: 10px;
border-top: 1px solid #957fb8;
display: flex;
align-items: center;
padding: 5px;
border-top: 1px solid var(--highlight-color);
}

.taskbar-item {
margin-right: 10px;
cursor: pointer;
}

#trending-repos .repo {
padding: 10px 0;
border-bottom: 1px solid #444;
}

#trending-repos .repo:last-child {
border-bottom: none;
}

#trending-repos .repo h3 {
margin: 0;
font-size: 1em;
color: #61dafb;
}

#trending-repos .repo p {
margin: 5px 0 0;
font-size: 0.85em;
color: #ccc;
justify-content: center;
}

0 comments on commit 9851a80

Please sign in to comment.