Skip to content

Commit 797856e

Browse files
committed
completed
1 parent 15a41ee commit 797856e

File tree

11 files changed

+35
-20
lines changed

11 files changed

+35
-20
lines changed

AI Image generator/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
</svg>
5656

5757
<header>
58-
<h1>ParvAi Image Generator</h1>
58+
<h1>Parv Ai Image Generator</h1>
5959
</header>
6060
<section class="images-section"></section>
6161
<section class="bottom-section"></section>

Calculator/style.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ form input.equal {
5454

5555
form input.operator {
5656
color: #bcffd0;
57-
}
57+
}

Countdown Timer/script.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Set the target date and time for the countdown
2-
const targetDate = new Date("July 3, 2023 15:00:00").getTime();
2+
const targetDate = new Date("Oct 10, 2023 15:00:00").getTime();
33

44
// Update the countdown every second
55
const countdownInterval = setInterval(() => {

Countdown Timer/style.css

+6-4
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ h2 {
8484
margin-bottom: 20px;
8585
letter-spacing: 2px;
8686
text-transform: uppercase;
87+
color: aqua;
88+
8789
}
8890

8991
#timer {
@@ -95,22 +97,22 @@ h2 {
9597
padding: 30px;
9698
}
9799

98-
#timer > div {
100+
#timer>div {
99101
text-align: center;
100102
margin: 0 20px;
101103
}
102104

103-
#timer > div > span {
105+
#timer>div>span {
104106
display: block;
105107
font-size: 60px;
106108
font-weight: bold;
107109
color: #fff;
108110
}
109111

110-
#timer > div > span:last-child {
112+
#timer>div>span:last-child {
111113
font-size: 20px;
112114
margin-top: -10px;
113115
color: #000;
114116
text-transform: uppercase;
115117
letter-spacing: 2px;
116-
}
118+
}

Dictionary/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<div class="container">
1111
<h1>Dictionary</h1>
1212
<input type="text" id="wordInput" placeholder="enter a word" />
13-
<button id="meaning"></button>
13+
<button id="meaning">Search</button>
1414
</div>
1515
<script src="script.js"></script>
1616
</body>

Dictionary/style.css

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ body {
66
align-items: center;
77
height: 100vh;
88
margin: 0;
9+
background-color: #007bff;
910
}
1011

1112
.container {
@@ -20,7 +21,7 @@ input {
2021
button {
2122
padding: 10px 20px;
2223
font-size: 16px;
23-
background-color: #007bff;
24+
background-color: #04ae64;
2425
color: #fff;
2526
border: none;
2627
cursor: pointer;
@@ -29,4 +30,4 @@ button {
2930
#meaning {
3031
margin-top: 20px;
3132
font-size: 18px;
32-
}
33+
}

Dino game/style.css

+6-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ body {
55
justify-content: center;
66
align-items: center;
77
min-height: 100vh;
8-
background-color: #f7f7f7;
8+
background-color: #23cd64;
9+
}
10+
11+
* {
12+
background-color: #23cd64;
913
}
1014

1115
.game-container {
@@ -40,4 +44,4 @@ body {
4044
right: 10px;
4145
font-size: 24px;
4246
font-weight: bold;
43-
}
47+
}

Double Click heart/style.css

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ body {
4040
animation: clicking 0.8s linear forwards;
4141
}
4242

43+
4344
@keyframes clicking {
4445
30% {
4546
opacity: 1;

Guessmynumber/style.css

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
body {
22
text-align: center;
33
margin-top: 100px;
4+
background-color: lightblue;
45
}
56

67
h1 {
@@ -17,4 +18,4 @@ input {
1718

1819
button {
1920
margin-top: 10px;
20-
}
21+
}

Image Slider/style.css

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ body {
33
text-align: center;
44
margin: 0;
55
padding: 0;
6+
background-color: #2A9D8F;
67
}
78

89
.slider-container {
@@ -24,7 +25,7 @@ body {
2425

2526
.nav-button {
2627
padding: 10px 20px;
27-
background-color: #333;
28+
background-color: #E76F51;
2829
color: #fff;
2930
border: none;
3031
cursor: pointer;
@@ -40,4 +41,4 @@ body {
4041

4142
#next {
4243
right: 0;
43-
}
44+
}

MemeGenrator/style.css

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1+
* {
2+
background-color: #a8dadc;
3+
}
4+
15
.meme-generator {
26
font-family: "Roboto", sans-serif;
37
text-align: center;
8+
49
}
510

611
.meme-generator img {
@@ -11,8 +16,8 @@
1116
.meme-generator .generate-meme-btn {
1217
padding: 8px 20px;
1318
border: none;
14-
border-left: 4px solid #222;
15-
border-right: 4px solid #222;
19+
border-left: 4px solid #ffffff;
20+
border-right: 4px solid #ffffff;
1621
margin: 24px 0;
1722
font-size: 20px;
1823
color: #f64d4d;
@@ -23,11 +28,11 @@
2328

2429
.meme-generator .generate-meme-btn:hover {
2530
padding: 8px 36px;
26-
border-left: 8px solid #222;
27-
border-right: 8px solid #222;
31+
border-left: 8px solid #ffffff;
32+
border-right: 8px solid #ffffff;
2833
letter-spacing: 3px;
2934
}
3035

3136
.meme-generator .meme-author {
3237
margin: 8px;
33-
}
38+
}

0 commit comments

Comments
 (0)