Skip to content

Commit

Permalink
[FEAT] Header 생성 및 색상 조정
Browse files Browse the repository at this point in the history
logo에는 transition 0.5s, 나머지 items에는 일반 호버 효과 적용
  • Loading branch information
alittlekitten committed Sep 23, 2021
1 parent 4d8424b commit 3a403db
Show file tree
Hide file tree
Showing 22 changed files with 3,114 additions and 470 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,5 @@ dist

# TernJS port file
.tern-port

no
16 changes: 8 additions & 8 deletions bin/www
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
* Module dependencies.
*/

var app = require('../app');
var debug = require('debug')('bookathon-e:server');
var http = require('http');
const app = require('../app');
const debug = require('debug')('bookathon-e:server');
const http = require('http');

/**
* Get port from environment and store in Express.
*/

var port = normalizePort(process.env.PORT || '3000');
const port = normalizePort(process.env.PORT || '3000');
app.set('port', port);

/**
* Create HTTP server.
*/

var server = http.createServer(app);
const server = http.createServer(app);

/**
* Listen on provided port, on all network interfaces.
Expand Down Expand Up @@ -58,7 +58,7 @@ function onError(error) {
throw error;
}

var bind = typeof port === 'string'
const bind = typeof port === 'string'
? 'Pipe ' + port
: 'Port ' + port;

Expand All @@ -82,8 +82,8 @@ function onError(error) {
*/

function onListening() {
var addr = server.address();
var bind = typeof addr === 'string'
const addr = server.address();
const bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port;
debug('Listening on ' + bind);
Expand Down
Loading

0 comments on commit 3a403db

Please sign in to comment.