35(0813)
30강 네이버 e스포츠 3
학습 내용
html
<div class="right">
<div id="esport-news-view">
<h2>많이 본 뉴스</h2>
<ol>
<li>
<a href="#" class="esport-flex-between">
<div class="image-wrap">
<img src="https://via.placeholder.com/84x48">
<span class="rank">1</span>
</div>
<h3>[LCK 서머] KT 덕분에 방긋 웃은 담원과 T1</h3>
</a>
</li>
</ol>
</div>
</div>
css
#esport-news-view {
padding: 20px;
border: solid 1px grey;
border-radius: 10px;
}
#esport-news-view h2 {
font-size: 18px;
}
#esport-news-view ol {
margin-top: 20px;
}
#esport-news-view li {
margin-bottom: 8px;
}
#esport-news-view li:last-child {
margin-bottom: 0;
}
#esport-news-view li a {
/*display: block;*/
}
#esport-news-view li .image-wrap {
overflow: hidden;
position: relative;
width: 84px;
height: 48px;
border: solid 1px rgba(0, 0, 0, .04);
border-radius: 4px;
}
#esport-news-view li .image-wrap img {
position: absolute;
width: 100%;
height: 100%;
}
#esport-news-view li .image-wrap .rank {
position: absolute;
background-color: #4e41db;
border-bottom-right-radius: 4px;
padding: 4px 10px;
top: 0;
left: 0;
font-size: 13px;
color: #fff;
font-weight: 800;
}
#esport-news-view li h3 {
display: -webkit-box;
overflow: hidden;
width: 218px;
max-height: 38px;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
font-size: 14px;
line-height: 19px;
}
html
<div id="esport-schedule">
<h2>e스포츠 경기 일정/결과</h2>
<div class="schedule-wrap">
<div class="schedule-header esport-flex-between">
<button class="arrow arrow-left"></button>
<span>08.13 금</span>
<button class="arrow arrow-right"></button>
</div>
<div class="schedule-body">
<ul>
<li>
<h3>2021 LCK 서머 정규시즌 2R</h3>
<div class="status-wrap esport-flex-center">
<span class="status">진행중</span>
<span class="time">13:00</span>
</div>
</li>
<li>
<h3>2021 와일드 리프트 라이벌즈 DAY 3</h3>
<div class="status-wrap esport-flex-center">
<span class="status">진행중</span>
<span class="time">15:00</span>
</div>
</li>
</ul>
</div>
</div>
</div>
css
#esport-schedule h2 {
font-size: 18px;
}
#esport-schedule .schedule-wrap {
margin-top: 15px;
border: solid 1px grey;
border-radius: 4px;
}
#esport-schedule .schedule-wrap .schedule-header {
padding: 14px 15px;
border-bottom: solid 1px grey;
}
#esport-schedule .schedule-wrap .schedule-header .arrow {
width: 20px;
height: 20px;
}
#esport-schedule .schedule-wrap .schedule-header .arrow.arrow-left {
background-color: yellow;
}
#esport-schedule .schedule-wrap .schedule-header .arrow.arrow-right {
background-color: greenyellow;
}
#esport-schedule .schedule-wrap .schedule-header span {
position: relative;
font-size: 18px;
font-weight: 800;
top: 3px;
}
#esport-schedule .schedule-body {
padding: 17px 0;
}
#esport-schedule .schedule-body li {
/*padding: 17px 0;*/
}
#esport-schedule .schedule-body li:first-child:after {
content: "";
display: block;
width: calc(100% - 40px);
height: 1px;
background-color: rgba(0, 0, 0, .05);
margin: 17px auto;
}
#esport-schedule .schedule-body li h3 {
font-size: 14px;
margin-bottom: 12px;
text-align: center;
}
#esport-schedule .schedule-body li .status-wrap {}
#esport-schedule .schedule-body li .status-wrap:hover {
cursor: pointer;
background-color: yellow;
}
#esport-schedule .schedule-body li .status-wrap .status {
background-color: rgba(244, 0, 0, .1);
color: red;
font-size: 11px;
font-weight: 500;
border-radius: 3px;
margin-right: 4.5px;
padding: 2px 4px;
}
#esport-schedule .schedule-body li .status-wrap .time {
position: relative;
top: 1px;
font-size: 15px;
font-weight: 700;
}
font 서체 적용
css
* {
font-family: Arial, Time, sans-serif;
}
sans-serif : 모든 브라우저에서 사용 가능
여러가지 font 서체를 설정해놓는 이유는 브라우저 마다 가능한 서체가 다르기 때문
google font 적용방법
구글링을 하면 폰트 서체에 따라 크기와 굵기 별로 미리 확인할 수 있다.
사용할 서체를 선택해서 link 태그를 복사해서 사용하고, 아래에 css 코드도 똑같이 복사해서 적용해주면 된다.
font 정보를 웹에서 가져오게 되는 것임
적용된 것을 확인할 수 있다.
서체가 달라진 것을 확인하기 위해서 일부러 조금 독특한 서체를 선택했는데 내가 페이지를 만들면서 설정해놓은 값 부분 중에 설정이 잘 안 맞는 부분이 있어서 깨지는 것도 확인할 수 있었다.
강의 마지막에 알려주신 부분이지만 페이지를 만들 때 보통 처음부터 폰트를 설정해놓고 그에 맞게 크기와 굵기를 설정할 것 같아서 문제가 없을 것 같다.
어려웠던 점 & 해결 방법
크게 어려운 부분은 없었고, 폰트 서체를 설정하는 방법을 새롭게 배워서 좋았다.
학습 소감
다음에 페이지를 만들 때 서체를 미리 적용하고 만드는 것도 좋을 것 같고, 필요한 부분만 다르게 설정해서 하는 방법도 한번 도전해 보고 싶다. 9월에 팀 프로젝트를 하면 써먹어보도록 해야겠다. 어떤 방법으로 진행될지는 모르겠지만 팀 프로젝트인만큼 도움이 될 수 있도록 미리 복습을 많이 해놓아야 할 것 같다.
Author And Source
이 문제에 관하여(35(0813)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@iamjeongminlee/350813저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)