UXUI 웹디자인 과정_과제/1달차

[UXUI 웹디자인] 1달차 과제_9 / 쇼핑몰 박스 꾸미기

 

https://ninefloor.github.io/web-practice/work/9/

 

완성된 모습

 


hover를 이용한 꾸미기

 

<!DOCTYPE html>

<html lang="ko">

<head>
    <meta charset="UTF-8" />
    <link rel="stylesheet" type="text/css" href="./css/style.css">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css">
</head>

<body>
    <div id="wrap">
        <div id="superdeal">
            <ul>
                <li>
                    <a href="#">
                        <img src="./images/kimchisoup.png" alt="김치찌개">
                        <span class="item">김치찌개</span><span class="price">5,000원</span>
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="./images/natto.jpg" alt="낫토">
                        <span class="item">낫토</span><span class="price">1,000원</span>
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="./images/softtofu.jpg" alt="순두부찌개">
                        <span class="item">순두부찌개</span><span class="price">6,000원</span>
                    </a>
                </li>
            </ul>
        </div>
        <div id="overseas">
            <span class="title">오늘의 추천 특가</span>
            <ul>
                <li>
                    <a href="#">
                        <img src="./images/oliveoil.jpg" alt="올리브오일">
                        <span class="item">올리브오일</span><span class="price">12,000원</span>
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="./images/yogurt.jpg" alt="요거트">
                        <span class="item">요거트</span><span class="price">8,000원</span>
                    </a>
                </li>
                <li>
                    <a href="#">
                        <img src="./images/kimchi.jpg" alt="김치">
                        <span class="item">김치</span><span class="price">20,000원</span>
                    </a>
                </li>
            </ul>
        </div>
        <div id="sns">
            <ul>
                <li>
                    <a href="#">
                        <span style="color: magenta;"><i class="fab fa-instagram fa-3x"></i></span>
                    </a>
                </li>
                <li>
                    <a href="#">
                        <span style="color: blue;"><i class="fab fa-facebook fa-3x"></i></span>
                    </a>
                </li>
                <li>
                    <a href="#">
                        <span style="color: red;"><i class="fab fa-youtube fa-3x"></i></span>
                    </a>
                </li>
            </ul>
        </div>
    </div>
</body>

</html>

HTML

 


/* 예제용 기본 속성 시작 */

* {
  margin: 0;
  padding: 0;
  font-family: "Gmedium";
}
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
body {
  padding: 10px;
  box-sizing: border-box;
}
h1 {
  margin-top: 10px;
}

@font-face {
  src: url("../fonts/GmarketSansTTFMedium.ttf");
  font-family: "Gmedium";
}
@font-face {
  src: url("../fonts/GmarketSansTTFLight.ttf");
  font-family: "Glight";
}
@font-face {
  src: url("../fonts/GmarketSansTTFBold.ttf");
  font-family: "Gbold";
}

/* 예제용 기본 속성 끝 */

#wrap {
  width: 500px;
  height: 600px;
  background-color: gray;
  margin: 0 auto;

  position: relative;
}

#superdeal {
  width: 400px;
  height: 150px;
  background-color: aliceblue;

  position: absolute;
  left: 50px;
  top: 50px;

  padding-left: 20px;
  padding-top: 10px;
  box-sizing: border-box;
}

#superdeal ul li {
  float: left;
  margin-right: 5px;
  color: bisque;
}
#superdeal ul li a img {
  width: 100px;
  height: 100px;
  border-radius: 70%;
}
#superdeal .item {
  font-size: 12px;
  text-align: center;
  display: block;
  color: black;
}

#superdeal .price {
  font-size: 14px;
  font-family: "Gbold";
  font-weight: bold;
  text-align: center;
  display: block;
  color: black;
}

#overseas {
  width: 400px;
  height: 200px;
  background-color: antiquewhite;

  position: absolute;
  left: 50px;
  top: 200px;

  padding-left: 20px;
  padding-top: 5px;
  box-sizing: border-box;
  position: relative;
}

#overseas .title {
  display: block;
  font-family: "Gbold";
  font-size: 25px;
  margin: 5px 0 3px;

  position: relative;
  left: 170px;
}

#overseas ul li {
  float: left;
  border: 1px solid gray;
  border-radius: 8px;
  margin-right: 10px;
  padding: 5px;
  box-sizing: border-box;
}

#overseas ul li a img {
  width: 100px;
  height: 100px;
  border-radius: 70%;
}
#overseas ul li a img:hover{
  background-color: white;
  opacity: 0.7;
}

#overseas ul li a .item {
  font-size: 14px;
  text-align: center;
  display: block;
  color: black;
}

#overseas ul li a .price {
  font-size: 16px;
  font-family: "Gbold";
  font-weight: bold;
  text-align: center;
  display: block;
  color: black;
}

#sns {
  width: 200px;
  height: 100px;
  background-color: aqua;

  position: absolute;
  left: 250px;
  top: 450px;
}
#sns ul {
  padding: 20px 0 0 20px;
}
#sns ul li {
  float: left;
  margin-right: 10px;
}

CSS