-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Praveen-Prabhu/deployment
Deployment
- Loading branch information
Showing
6 changed files
with
132 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<title>Independence Day 2023</title> | ||
<link rel ="icon" href = "icon.png" type = "image/x-icon"> | ||
<title>New Year 2024</title> | ||
<link rel="icon" href="icon.png" type="image/x-icon"> | ||
<link rel="stylesheet" href="style.css"> | ||
<script src="script.js"></script> | ||
<link rel="manifest" href="manifest.json"> | ||
</head> | ||
<body> | ||
</head> | ||
|
||
<body> | ||
<img src=""> | ||
<div class="container"> | ||
<h2><span>Countdown to</span>Independence Day 2023</h2> | ||
<div class="countdown"> | ||
<div id="day">-</div> | ||
<div id="hour">-</div> | ||
<div id="minute">-</div> | ||
<div id="second">-</div> | ||
</div> | ||
<h2><span>Countdown to</span>New Year 2024</h2> | ||
<div class="countdown"> | ||
<div id="day">-</div> | ||
<div id="hour">-</div> | ||
<div id="minute">-</div> | ||
<div id="second">-</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<title>Independence Day 2023</title> | ||
<link rel ="icon" href = "icon.png" type = "image/x-icon"> | ||
<title>New Year 2024</title> | ||
<link rel="icon" href="icon.png" type="image/x-icon"> | ||
<link rel="stylesheet" href="style.css"> | ||
<script src="script.js"></script> | ||
<link rel="manifest" href="manifest.json"> | ||
</head> | ||
<body> | ||
</head> | ||
|
||
<body> | ||
<img src=""> | ||
<div class="container"> | ||
<h2><span>Countdown to</span>Independence Day 2023</h2> | ||
<div class="countdown"> | ||
<div id="day">-</div> | ||
<div id="hour">-</div> | ||
<div id="minute">-</div> | ||
<div id="second">-</div> | ||
</div> | ||
<h2><span>Countdown to</span>New Year 2024</h2> | ||
<div class="countdown"> | ||
<div id="day">-</div> | ||
<div id="hour">-</div> | ||
<div id="minute">-</div> | ||
<div id="second">-</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,99 +1,98 @@ | ||
@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900'); | ||
|
||
* | ||
{ | ||
margin: 0; | ||
padding: 0; | ||
font-family: 'Poppins', sans-serif; | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
font-family: 'Poppins', sans-serif; | ||
} | ||
body | ||
{ | ||
display: flex; | ||
background-image: url("https://bing.biturl.top/?resolution=1920&format=image&index=0&mkt=zh-CN"); | ||
height: 100%; | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
background-attachment: fixed; | ||
background-blend-mode: hard-light; | ||
|
||
body { | ||
display: flex; | ||
background-image: url("https://bing.biturl.top/?resolution=1920&format=image&index=0&mkt=zh-CN"); | ||
height: 100%; | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
background-attachment: fixed; | ||
background-blend-mode: hard-light; | ||
} | ||
.container | ||
{ | ||
position: absolute; | ||
top: 80px; | ||
left: 100px; | ||
right: 100px; | ||
bottom: 80px; | ||
background-attachment: fixed; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
flex-direction: column; | ||
box-shadow: 0 50px 50px rgba(0,0,0,0.5), | ||
0 0 0 100px rgba(0,0,0,.1); | ||
|
||
.container { | ||
position: absolute; | ||
top: 80px; | ||
left: 100px; | ||
right: 100px; | ||
bottom: 80px; | ||
background-attachment: fixed; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
flex-direction: column; | ||
box-shadow: 0 50px 50px rgba(0, 0, 0, 0.5), | ||
0 0 0 100px rgba(0, 0, 0, .1); | ||
} | ||
.container h2 | ||
{ | ||
text-align: center; | ||
font-size: 8em; | ||
line-height: 1em; | ||
color: #333; | ||
letter-spacing: 20px; | ||
margin-top: -80px; | ||
|
||
.container h2 { | ||
text-align: center; | ||
font-size: 8em; | ||
line-height: 1em; | ||
color: #333; | ||
letter-spacing: 20px; | ||
margin-top: -80px; | ||
|
||
} | ||
.container h2 span | ||
{ | ||
display: block; | ||
font-weight: 300; | ||
letter-spacing: 20px; | ||
font-size: 0.5em; | ||
|
||
.container h2 span { | ||
display: block; | ||
font-weight: 300; | ||
letter-spacing: 20px; | ||
font-size: 0.5em; | ||
} | ||
.countdown | ||
{ | ||
display: flex; | ||
margin-top: 50px; | ||
|
||
.countdown { | ||
display: flex; | ||
margin-top: 50px; | ||
} | ||
.countdown div | ||
{ | ||
position: relative; | ||
width: 100px; | ||
height: 100px; | ||
line-height: 100px; | ||
text-align: center; | ||
background: #333; | ||
color: #fff; | ||
margin: 0 15px; | ||
font-size: 3em; | ||
font-weight: 500; | ||
|
||
.countdown div { | ||
position: relative; | ||
width: 100px; | ||
height: 100px; | ||
line-height: 100px; | ||
text-align: center; | ||
background: #333; | ||
color: #fff; | ||
margin: 0 15px; | ||
font-size: 3em; | ||
font-weight: 500; | ||
} | ||
.countdown div:before | ||
{ | ||
content: ''; | ||
position: absolute; | ||
bottom: -30px; | ||
left: 0; | ||
width: 100%; | ||
height: 35px; | ||
background: #ff0; | ||
color: #333; | ||
font-size: 0.35em; | ||
line-height: 35px; | ||
font-weight: 300; | ||
|
||
.countdown div:before { | ||
content: ''; | ||
position: absolute; | ||
bottom: -30px; | ||
left: 0; | ||
width: 100%; | ||
height: 35px; | ||
background: #ff0; | ||
color: #333; | ||
font-size: 0.35em; | ||
line-height: 35px; | ||
font-weight: 300; | ||
} | ||
.countdown #day:before | ||
{ | ||
content: 'Days'; | ||
|
||
.countdown #day:before { | ||
content: 'Days'; | ||
} | ||
.countdown #hour:before | ||
{ | ||
content: 'Hours'; | ||
|
||
.countdown #hour:before { | ||
content: 'Hours'; | ||
} | ||
.countdown #minute:before | ||
{ | ||
content: 'Minutes'; | ||
|
||
.countdown #minute:before { | ||
content: 'Minutes'; | ||
} | ||
.countdown #second:before | ||
{ | ||
content: 'Seconds'; | ||
|
||
.countdown #second:before { | ||
content: 'Seconds'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters