35(0813)

17413 ワード

30強NAVER e Sports 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;
}

フォントフォントの適用


css
* {
	font-family: Arial, Time, sans-serif;
}
sans-serif:すべてのブラウザで使用可能
さまざまなフォントフォントを設定するのは、ブラウザごとに可能なフォントが異なるためです.

Google fontの適用方法


Googleはフォントの大きさと太さに基づいてフォントを事前に確認することができます.
使用するフォントを選択し、linkラベルをコピーして使用し、以下でもcssコードをコピーして適用すればいいです.
Webからフォント情報をインポート



適用を確認できます.
フォントの変化を確認するために、わざと少しユニークなフォントを選びましたが、ページを作成するときに設定した値の部分には、設定が不適切な箇所があるので、破られることも確認できます.
講義の最後に教えてくれた部分ですが、ページを作るときは最初からフォントを設定し、それに応じて大きさや太さを設定するのが普通なので問題ないと思います.
難点と解決方法
あまり難しくなく、フォントの設定方法を再学習できて嬉しいです.
学習の心得.
次回ページを作るときは、フォントを事前に適用して作るのもいいですし、必要な部分だけ設定する方法にも挑戦したいです.9月にチームプランを作ったらやってみますどのような方法で進められるか分かりませんが、チームプロジェクトなので、事前に復習しておくと役に立つと思います.