Skip to content

Commit

Permalink
mob
Browse files Browse the repository at this point in the history
  • Loading branch information
DEDROX2K committed Aug 4, 2024
1 parent 993778e commit a5d0d5c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 11 deletions.
26 changes: 17 additions & 9 deletions bsod.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,17 @@ body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
height: 100dvh;
margin: 0;
text-rendering: optimizeSpeed;
overflow-x: hidden;
background-image: radial-gradient(#0e1dc4, #010080 80%);
}

/* .h3 {
padding: 20px;
} */

body {
text-rendering: optimizeSpeed;
overflow-x: hidden;
background-image: radial-gradient(#0e1dc4, #010080 80%);

}


.bsdoinfo {
background-color: beige
Expand Down Expand Up @@ -79,6 +75,13 @@ mark {
cursor: crosshair;
}

@media (width > 480px) {

.mob-click-button {
display: none;
}
}

@media (max-width: 480px) {
.custom-container {
max-width: 200px;
Expand All @@ -87,7 +90,12 @@ mark {

.link-download {
width: 100%;
line-height: 50px;
line-height: 20px;
align-items: center;
text-align: center;
}

.pc-click-button {
display: none;
}
}
11 changes: 9 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,19 @@



<div class="custom-container choosebutton animate__animated animate__fadeInDown animate__slower">
<div
class="custom-container choosebutton animate__animated animate__fadeInDown animate__slower pc-click-button">
<h3>CLICK HERE^</h3>
<a href="ux.html" class="link-download">Product design/UX</a>
<a class='link-download' download href='/source-files/stylestage'>3D & Game design</a>
</div>
</div>

<div class="container mob-click-button choosebutton animate__animated animate__fadeInDown animate__slower">
<h3 class="text-align center">CLICK HERE^</h3>
<div href="ux.html" class="link-download">Product design/UX </div>
<div class='link-download' download href='/source-files/stylestage'>3D & Game design</div>

</div>
</body>


Expand Down

0 comments on commit a5d0d5c

Please sign in to comment.