Skip to content

Commit

Permalink
updating responsiveness for mobile devices
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyDevla authored Mar 15, 2024
1 parent e098b82 commit 0cd9d7e
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<!doctype html>
<html>

<head>
<title>web-Image-Viewer</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="logo.png" rel="icon">
<link href="logo.png" rel="apple-touch-icon">

<style>
html {

}

* {
box-sizing: border-box;
Expand Down Expand Up @@ -132,7 +132,6 @@

function paddingImages() {
let images = document.getElementsByTagName("img");
//let rows = document.getElementById
if (document.getElementById("padding_images").checked) {
for (image of images) {
image.style.padding = '5px 5px';
Expand Down Expand Up @@ -194,7 +193,7 @@

<header class="header_main">

<h1>A simple an responsive web image album viewer</h1>
<h1>A simple & responsive web image album viewer</h1>

<section class="section_menu">
<input type="checkbox" onchange="roundedCorners()" id="rounded_corners" name="rounded_corners"
Expand All @@ -211,7 +210,6 @@ <h1>A simple an responsive web image album viewer</h1>
</section>
</header>


<div class="row">
<div class="column" id="column0">

Expand All @@ -228,4 +226,4 @@ <h1>A simple an responsive web image album viewer</h1>
</div>
</body>

</html>
</html>

0 comments on commit 0cd9d7e

Please sign in to comment.