Skip to content

Commit

Permalink
Merge pull request #15 from OpenTechne/13-tiny-details-not-working-as…
Browse files Browse the repository at this point in the history
…-planned

Style that broke in the discover page fixed
  • Loading branch information
Artentii committed Jul 22, 2023
2 parents 0d77354 + c0146cc commit 249de7f
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 2 deletions.
41 changes: 40 additions & 1 deletion css/immersive.css
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,42 @@ body {
opacity: 1;
}
}
/* MEDIA QUERIES */

/* MEDIA QUERY FOR HEADER SHARED BY ALL PAGES */
/* MENU & HEADER */
@media screen and (max-width: 770px) {
.Header-signature {
display: none;
}
.Nav-link {
font-size: 4rem;
}
}
@media screen and (max-width: 600px) {
.Nav-link {
font-size: 4rem;
}
.Nav-img {
display: none;
}
.Header-li {
transition: none;
}
.Header-li:hover .Nav-link {
animation: none;
}
}
@media screen and (max-width: 525px) {
.Nav-link {
font-size: 3rem;
}
}
@media screen and (max-width: 400px) {
.Nav-link {
font-size: 2.5rem;
}
}
/* MEDIA QUERIES - Making the design RESPONSIVE*/
@media screen and (max-width: 750px) {
.Immersive-btn{
Expand Down Expand Up @@ -419,11 +454,15 @@ body {
.Immersive-p{
font-size: .9rem;
}
.Immersive-btn{
border-radius: 1.5rem;
}
.Immersive-btn:hover{
background-color: #ffd147;
border-color: #3a6ed1;
color: #3a6ed1;
box-shadow: 1px 1px 1px #22488f;
text-shadow: .5px .5px .5px #22488f;
text-shadow: none;
transform: none;
}
}
6 changes: 5 additions & 1 deletion css/loving.css
Original file line number Diff line number Diff line change
Expand Up @@ -445,11 +445,15 @@ body {
.Loving-p {
font-size: 0.9rem;
}
.Loving-btn{
border-radius: 1.5rem;
}
.Loving-btn:hover {
background-color: #ffd147;
border-color: #3a6ed1;
color: #3a6ed1;
box-shadow: 1px 1px 1px #22488f;
text-shadow: 0.5px 0.5px 0.5px #22488f;
text-shadow: none;
transform: none;
}
}
3 changes: 3 additions & 0 deletions css/vicentslife.css
Original file line number Diff line number Diff line change
Expand Up @@ -597,5 +597,8 @@ body {
.Column-frame {
border-color: #ffd147;
}
.Main{
height: 75vh;
}
}
/* ---- Fin de las Media Queries ---- */

0 comments on commit 249de7f

Please sign in to comment.