style update

This commit is contained in:
zyqunix 2024-11-29 16:37:29 +01:00
parent 5738f9f43e
commit ddd3f29e26
2 changed files with 61 additions and 35 deletions

View file

@ -5,7 +5,7 @@ body {
flex-direction: column; flex-direction: column;
min-height: 100vh; min-height: 100vh;
margin: 0; margin: 0;
font-family: 'Hack', monospace; font-family: monospace;
font-size: 1rem; font-size: 1rem;
background-color: #2a2a2a; background-color: #2a2a2a;
color: #f0f0f0; color: #f0f0f0;

View file

@ -1,29 +1,21 @@
@font-face { /* Global Styles */
font-family: 'Hack';
src: url(fonts/Hack-Regular.ttf) format('truetype');
font-weight: normal;
font-style: normal;
}
body { body {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
height: 100%;
min-height: 100%;
font-family: monospace;
font-size: small;
background-color: #2a2a2a;
transition: background-color 0.3s, color 0.3s;
color: #f0f0f0;
flex-direction: column; flex-direction: column;
overflow-x: hidden; min-height: 100vh;
margin: 0; margin: 0;
font-family: monospace;
font-size: 1rem;
background-color: #2a2a2a;
color: #f0f0f0;
overflow-x: hidden;
} }
html { html {
height: 100%; height: 100%;
min-height: 100%;
} }
::selection { ::selection {
@ -31,12 +23,7 @@ html {
color: #2a2a2a; color: #2a2a2a;
} }
img { /* Topbar Styles */
user-select: none;
perspective: 1000px;
transform-origin: center;
transition: transform 0.1s ease;
}
.topbar { .topbar {
display: flex; display: flex;
@ -47,7 +34,7 @@ img {
max-width: 100vw; max-width: 100vw;
position: fixed; position: fixed;
background-color: rgba(59, 59, 59, 0.885); background-color: rgba(59, 59, 59, 0.885);
backdrop-filter: blur(3px); backdrop-filter: blur(5px);
font-size: large; font-size: large;
top: 0; top: 0;
border-bottom: 1px solid rgba(70, 70, 70, 0.885); border-bottom: 1px solid rgba(70, 70, 70, 0.885);
@ -55,13 +42,7 @@ img {
overflow-x: hidden; overflow-x: hidden;
} }
.theme-button { /* Welcome Section Styles */
cursor: pointer;
background: none;
border: none;
transition: 0.3s;
margin-left: 30px;
}
.welcome { .welcome {
text-align: center; text-align: center;
@ -69,7 +50,6 @@ img {
width: 60vw; width: 60vw;
max-width: 1920px; max-width: 1920px;
line-height: 1.4; line-height: 1.4;
padding-bottom: 25px;
padding-top: 60px; padding-top: 60px;
box-sizing: border-box; box-sizing: border-box;
overflow-wrap: break-word; overflow-wrap: break-word;
@ -83,6 +63,8 @@ img {
margin: 0 0 10px 0; margin: 0 0 10px 0;
} }
/* Tools Section Styles */
.tools-main { .tools-main {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
@ -90,12 +72,11 @@ img {
justify-content: center; justify-content: center;
min-height: 10vh; min-height: 10vh;
max-width: 80vw; max-width: 80vw;
margin-bottom: 50px !important; margin-bottom: 100px;
} }
.tool-div { .tool-div {
bottom: 20px !important; bottom: 20px !important;
padding: 1vh 3vw;
background-color: rgba(75, 75, 75, 1); background-color: rgba(75, 75, 75, 1);
border: 2px solid rgba(80, 80, 80, 1); border: 2px solid rgba(80, 80, 80, 1);
border-radius: 7px; border-radius: 7px;
@ -109,6 +90,8 @@ img {
max-width: 90vw; max-width: 90vw;
width: 50vw; width: 50vw;
box-shadow: 0 4px 10px rgba(16, 16, 16, 0.5); box-shadow: 0 4px 10px rgba(16, 16, 16, 0.5);
scale: 0.79;
margin-bottom: -100px;
} }
.tool-header { .tool-header {
@ -120,7 +103,7 @@ img {
.tool-desc { .tool-desc {
margin: 5px; margin: 5px;
font-weight: normal; font-weight: normal;
max-width: 60%; max-width: 90%;
} }
.tool-media { .tool-media {
@ -146,6 +129,8 @@ img {
border-color: rgb(90, 150, 115); border-color: rgb(90, 150, 115);
} }
/* Slideshow Styles */
.slideshow-container { .slideshow-container {
position: relative; position: relative;
width: 90vw; width: 90vw;
@ -160,3 +145,44 @@ img {
border-radius: 10px; border-radius: 10px;
object-fit: contain; object-fit: contain;
} }
/* Theme Button Styles */
.theme-button {
cursor: pointer;
background: none;
border: none;
transition: 0.3s;
margin-left: 30px;
}
/* Media Queries */
@media (max-width: 768px) {
.main {
width: 95%;
}
h2 {
font-size: 1.5rem;
}
.project-div {
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
body {
font-size: 0.9rem;
}
h2 {
font-size: 1.2rem;
}
.project-div {
padding: 15px;
font-size: 0.85rem;
}
}