This commit is contained in:
adrianvic 2025-10-29 23:58:08 +00:00
commit 077d8b5b12
20 changed files with 395 additions and 38 deletions

View file

@ -100,6 +100,14 @@
overflow-y: auto;
}
.projectInfoGitHubReleases.less {
overflow: hidden;
display: -webkit-box;
line-clamp: 2;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical
}
@media only screen and (max-width: 1280px) {
#projectImagesAndInfo {
flex-direction: column;

View file

@ -50,8 +50,8 @@ main {
}
/* main:last-child {
margin-bottom: 0px;
padding-bottom: 0px;
margin-bottom: 0px;
padding-bottom: 0px;
} */
button {
@ -70,6 +70,8 @@ code {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
border-radius: 2px;
display: inline-block;
max-width: 100%;
overflow-x: auto;
}
input, select {
@ -174,11 +176,12 @@ hr {
}
.featuredProjectSubtitle {
overflow: hidden;
width: 100%;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical
overflow: hidden;
width: 100%;
display: -webkit-box;
line-clamp: 2;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical
}
.featuredProjectSubtitle {
@ -238,7 +241,7 @@ h1, h2, h3 {
0%,100% {
background-position: 0 0;
}
50% {
background-position: 100% 0;
}
@ -248,25 +251,25 @@ h1, h2, h3 {
#everythingHelper {
flex-direction: column;
}
aside {
width: 100%;
}
#projectTitle {
font-size: larger;
}
#headerLinksAndTitle {
flex-direction: row;
}
#headerLinks {
margin-left: 2em;
}
}
@media only screen and (max-width: 300px) {
}