Skip to content

Commit

Permalink
add not resposive warninig
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddharthmarko committed Nov 24, 2023
1 parent 0027e2c commit 817f6a3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Portfolio/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="not-responsive">
This page is currently under development and may not be fully responsive. Please use a screen width greater than 1200px
for optimal viewing experience.
</h1>
<div class="mouse"></div>
<div class="portfolio">
<div class="navigate">
Expand Down
15 changes: 15 additions & 0 deletions Portfolio/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ body {
/* border: 1px solid white; */
max-height: 500px;
}
.not-responsive {
display: none;
}
a {
text-decoration: none;
}
Expand Down Expand Up @@ -172,3 +175,15 @@ li {
.box:hover .project-img > img {
border: 1px solid white;
}

@media screen and (max-width: 1220px) {
body {
background-color: white;
}
.not-responsive {
display: block;
}
.portfolio {
display: none;
}
}

0 comments on commit 817f6a3

Please sign in to comment.