whatisthis?

html_pr13) style.css Code Review 본문

카테고리 없음

html_pr13) style.css Code Review

thisisyjin 2021. 11. 10. 18:45

https://mywebproject.tistory.com/124

 

HTML 훈련 - (13) Music Player

 Music Player REFERENCE (style.css / app.js) https://github.com/rohjs/bugless-101/tree/master/html-practice/13-music-player 김버그의 HTML&CSS는 재밌다 - 구름EDU HTML&CSS를 한번에! 탄탄한 개념이해..

mywebproject.tistory.com

 

 

 

* {
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1f2d3d;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  background-color: #f8f9fa;
}

body::after {
  content: "kimbug©";
  display: block;
  margin-top: 50px;
  color: #1f2d3d;
  font-size: 12px;
  font-weight: 600;
}

ul,
li {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}

.sr-only {
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: -1;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}

.music-player {
  width: 100%;
  max-width: 540px;
  padding: 20px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.05);
}

.music-play-item {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  width: 100%;
}

.music-album-cover {
  width: 50px;
  height: 50px;
  border-radius: 3px;
  margin-right: 16px;
}

.music-info {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #e5e5e5;
  cursor: pointer;
}

.music-info * {
  transition: opacity 120ms;
}

.music-info:hover * {
  opacity: 0.6;
}

.music-play-item:last-child .music-info {
  border-bottom: 1px solid #e5e5e5;
}

.music-info-detail * {
  font-weight: 400;
}

.music-info-detail h1 {
  font-size: 16px;
  line-height: 1.2;
  color: #383838;
}

.music-info-detail strong {
  display: block;
  font-size: 14px;
  color: #8e8e93;
}

.music-playtime {
  font-size: 14px;
  color: #909095;
}

 

 

 

 


REFERENCE (style.css / app.js)

https://github.com/rohjs/bugless-101/tree/master/html-practice/13-music-player

 

 

 

김버그의 HTML&CSS는 재밌다 - 구름EDU

HTML&CSS를 한번에! 탄탄한 개념이해부터 실습까지 한 강의로 끝내기, 실무 가능한 실력으로 😎

edu.goorm.io

 

강의내용 (X)
github 코드 위주로 작성하였습니다.

추후 비공개 처리 예정,