[실전 프로젝트] CSS 작업 + 폰트 적용
본문 바로가기
항해 중/8-13주차 실전 프로젝트

[실전 프로젝트] CSS 작업 + 폰트 적용

by 은돌1113 2022. 1. 3.

오늘 한 일

1) 첫 로그인 시 알림 설정 팝업창 CSS 구현

2) 로그인 유도 팝업창 CSS 구현

3) 로그인 / 회원가입 CSS 구현

4) 드롭다운 기능 수정

5) 구글 폰트에서 폰트 검색 및 import 해오기

// src/static/styles/GlobarStyle.js

import { createGlobalStyle } from "styled-components";

const GlobalStyle = createGlobalStyle`

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,300;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500&display=swap');

@font-face {
  font-family: 'Roboto', sans-serif;
  src: url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,300;1,400;1,500&display=swap')
    format("woff");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+0041-005A, U+0061-007A;
}

@font-face {
  font-family: 'Noto Sans KR', sans-serif;
  src: url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500&display=swap')
    format("woff");
  font-weight: normal;
  font-style: normal;
  unicode-range: U+AC00-U+D7A3;
}

  * {
    margin: 0;
    padding: 0;  
    font-family: 'Roboto', 'Noto Sans KR', sans-serif;
  }

  body {
    box-sizing: border-box;
  }
`;

export default GlobalStyle;
더보기

댓글