Skip to content

Commit

Permalink
MJH
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsegal11 committed Apr 7, 2024
1 parent f8b6f2a commit 199d38a
Show file tree
Hide file tree
Showing 7 changed files with 59 additions and 4 deletions.
Binary file added colors-game/assets/home page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 22 additions & 1 deletion colors-game/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,30 @@ h1 {
text-align: center;
font-size: 62px;
text-shadow: 1px 1px #771b2c;
margin-left: 33%;
}

p {
font-weight: bold;
color: #771b2c;
}
}

.header{

display: flex;
flex-direction: row;

}

.menu-img {
width: 10vh;
height: 10vh;
border-radius: 10%;
background-color: rgba(255, 255, 255, 0.5);
margin-top: 0px;
margin-left: 0px;
cursor: pointer;
-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}
6 changes: 5 additions & 1 deletion colors-game/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@
</head>

<body onload="checkStorage(); drawScreen();" onunload="saveStorage()">
<h1>COLORS GAME</h1>
<div class="header">
<div class="nav-list-item" title="דף הבית"><a href="../index.html"><img class="menu-img img0"
src="assets/home page.png"></a></div>
<h1>COLORS GAME</h1>
</div>
<div class="flex">
<div class="flex-col">
<div id="sqr1"></div>
Expand Down
Binary file added cows-and-bulls/images/home page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions cows-and-bulls/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ h1 {
font-size: 70px;
margin: 1rem;
margin-bottom: 0;
margin-left: 30%;
}

#message {
Expand Down Expand Up @@ -158,3 +159,22 @@ h1 {
transform: translate(1px, -2px) rotate(-1deg);
}
}

.header{

display: flex;
flex-direction: row;
}

.menu-img {
width: 10vh;
height: 10vh;
border-radius: 10%;
background-color: rgba(255, 255, 255, 0.5);
margin-top: 0px;
margin-left: 0px;
cursor: pointer;
-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}
14 changes: 12 additions & 2 deletions cows-and-bulls/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,18 @@
<title>COWS & BULLS</title>
</head>
<body>
<h1>cows and bulls</h1>
<p id="message">you have no errors</p>
<div class="header">


<div class="nav-list-item" title="דף הבית"><a href="../index.html"><img class="menu-img img0"
src="images/home page.png"></a></div>

<h1>cows and bulls</h1>
<p id="message">you have no errors</p>


</div>

<div class="container">
<div class="row">
<div class="con">
Expand Down
Binary file added memory-game/images/home page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 199d38a

Please sign in to comment.