Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
29 changes: 9 additions & 20 deletions assets/css/timer.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,17 @@
}


@media screen and (min-width: 550px) {
@media screen and (max-width: 550px) {

#clockdiv > div {
padding: 10px;
margin: 0 20px;
#wrapper #particles-js > div{
margin-top: 100px;
}
#wrapper h1{
font-size: 70px;
margin-left: 10px !important;
margin-right: 10px !important;
}
#wrapper #clockdiv{
margin: 2rem 0;
}
}

Expand All @@ -74,13 +77,7 @@
margin: 0 1.5rem;
}
}
@media screen and (max-width: 782px) {

#wrapper {
padding: 30px;
margin: 176px 1.5rem 0px 1.5rem;
}
}



#wrapper div{
Expand All @@ -94,14 +91,6 @@
width: 100%;
}

/* #particles-js div, #particles-js canvas {
position: absolute;
} */

/* #particles-js div{
z-index: 10;
margin-top: 100px;
} */

#particles-js > div{
width: 100%;
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
16 changes: 16 additions & 0 deletions backend/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
const express = require("express");
const app = express();
const path = require('path');

app.use(express.static(path.join(__dirname,'../assets')));

app.get('/',(req,res)=>{
res.redirect('/index.html')
})

app.get('/index.html',(req,res)=>{
res.sendFile(path.join(__dirname, '../', 'index.html'));
})

const port = process.env.PORT || 80;
app.listen(port , ()=> console.log(`Server is running on port :${port}`))
12 changes: 12 additions & 0 deletions backend/node_modules/.bin/mime

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions backend/node_modules/.bin/mime.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions backend/node_modules/.bin/mime.ps1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading