codestates / codestates/mindcaptor-client
[Dev Log] 김재헌 / 2021-04-29
- Dominant language
- JavaScript
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
> ### 오늘은 어떻게 프로젝트에 기여했나요?
> Waiting Page를 제작하고 전체적인 css 작업을 했다. 그리고 팀 프로젝트에 맞는 로고와 사용할 배경화면을 찾아서 몇 개의 후보를 간추렸고 모든 페이지에 대한 간단한 라우팅 작업을 했다.
> ### 오늘의 프로젝트에서 힘든 점은 무엇인가요?
> * css로 버튼 제작
>
```js
button::after {
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
button {
background: none;
border: 3px solid #fff;
border-radius: 5px;
font-weight: bold;
text-transform: uppercase;
position: relative;
}
button::before,
button::after {
background: #fff;
content: '';
position: absolute;
z-index: -1;
}
button:hover {
color: #efab00;
}
```
>
> ### 내일은 프로젝트에 기여하기 위해 무엇을 해야 하나요?
> 1. [ ] In Game Page 제작
> 2. [ ] socket.io 활용방법 찾기
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.