소개
게시글
질문&답변
John Ahn 따라하며 배우는 리액트 A-Z 질문
해결했는데 만약 이글을 보시는 분이 있다면 이걸 따라하시면 찾으실 수 있을거라고 생각이 듭니다.강의 리스트에서 상단에 "강의 소스 코드" 누르면 하얀화면에 목차 옆에 강의자료 다운로드 하시고 반디집으로 압축풀어서 해당 디렉토리에 들어가신 후 vscode에 css만 넣고 복사하신후 필요한 곳에 붙여넣기 하시면 됩니다. 저도 git있나 찾아봤지만 git으로도 안보이고 강사님이 댓글 달아주신거 몇 개 봤는데 구글 드라이브 들어가면 해당 자료 없네요 ㅜㅜ 위 방법 해보시고 안되시면 댓글 남겨주세요.
- 0
- 1
- 279
질문&답변
이미지 배너 만들기
.banner { color: white; object-fit: contain; height: 448px; } @media (min-width: 1500px) { .banner { position: relative; height: 600px; } .banner--fadeBottom { position: absolute; bottom: 0; width: 100%; height: 40rem; } } @media (max-width: 768px) { .banner__contents { width: min-content !important; padding-left: 2.3rem; margin-left: 0px !important; } .banner__description { font-size: 0.8rem !important; width: auto !important; } .info { text-align: start; padding-right: 1.2rem; } .space { margin-left: 6px; } .banner__button { font-size: 0.8rem !important; border-radius: 4px !important; } } .banner__contents { margin-left: 40px; padding-top: 140px; height: 190px; } .banner__title { font-size: 3rem; font-weight: 800; padding-bottom: 0.5rem; } .banner__description { width: 45rem; line-height: 1.3; padding-top: 1rem; font-weight: 500; font-size: 1rem; max-width: 400px; height: 80px; } .banner--fadeBottom { height: 7.4rem; background-image: linear-gradient( 180deg, transparent, rgba(37, 37, 37, 0.61), #111 ); } .banner__buttons { display: flex; flex-direction: row; } .banner__button { display: flex; flex-direction: row; justify-content: start; align-items: center; cursor: pointer; outline: none; border: none; font-size: 1rem; font-weight: 700; border-radius: 0.2vw; padding: 0.4rem 1.8rem 0.4rem 1rem; margin-right: 1rem; } .banner__button:hover { color: #000; background-color: rgba(170, 170, 170, 0.9); transition: all 0.2s; } .play { background-color: white; color: black; } .info { background-color: rgba(109, 109, 110, 0.7); color: white; } .info:hover { background-color: rgb(74, 74, 74); color: white; } .space { margin-left: 4px; }
- 0
- 3
- 543