Skip to content

woorifisa-service-dev-4th/frontend-1st-woori-invest-web

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

30 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ’» 우리 투자 증ꢌ UI κ°œμ„ 

πŸŽ₯ Demo

1st-demo.mp4

πŸ‘¨πŸ»β€πŸ’» Implement

@keyframes μ• λ‹ˆλ©”μ΄μ…˜ 적용

image

SVG νƒœκ·Έλ₯Ό ν™œμš©ν•œ κ·Έλž˜ν”„ κ΅¬ν˜„

image

πŸ’πŸ» Team

ν™©μœ ν™˜ μ‘°ν˜„μ‹ ν™©ν˜œμ˜ 쑰윀주

@yxhwxn

@1223v

@HyeYoung-Hwang

@iamyuunzo

🏒 Convention

πŸ’ Commit Example

  • Feat: Add user authentication
  • Fix: Resolve null pointer exception
  • Docs: Update installation guide
Tag Type content
Feat κΈ°λŠ₯(feature)
Docs λ¬Έμ„œ μž‘μ—… (documentation)
Fix 버그 μˆ˜μ •
Hotfix κΈ΄κΈ‰ 버그 μˆ˜μ •
Refactor μ½”λ“œ λ¦¬νŒ©ν„°λ§(가독성 ν–₯상)
Chore 관리(maintain), 핡심 λ‚΄μš©μ€ μ•„λ‹Œ 기타 λ³€κ²½

🎯 ν˜‘μ—…μ„ μœ„ν•œ CSS μ»¨λ²€μ…˜ κ°€μ΄λ“œλΌμΈ

CSS ν˜‘μ—…μ„ 효율적으둜 ν•˜κΈ° μœ„ν•΄μ„œλŠ” 일관성 있고 μ΄ν•΄ν•˜κΈ° μ‰¬μš΄ μ½”λ“œ μŠ€νƒ€μΌμ΄ μ€‘μš”ν•©λ‹ˆλ‹€. μ•„λž˜λŠ” λŒ€ν‘œμ μΈ CSS μ»¨λ²€μ…˜κ³Ό λͺ¨λ²” μ‚¬λ‘€μž…λ‹ˆλ‹€.

πŸ“š CSS μž‘μ„± μŠ€νƒ€μΌ κ°€μ΄λ“œ


βœ… 1. 파일 ꡬ쑰

  • 디렉터리 ꡬ쑰 μ˜ˆμ‹œ:
/styles
│── base/         /* μ΄ˆκΈ°ν™”, 곡톡 μŠ€νƒ€μΌ */
│── components/   /* λ²„νŠΌ, μΉ΄λ“œ, λͺ¨λ‹¬ λ“± μ»΄ν¬λ„ŒνŠΈ */
│── layouts/      /* λ ˆμ΄μ•„μ›ƒ κ΄€λ ¨ μŠ€νƒ€μΌ (헀더, ν‘Έν„°, κ·Έλ¦¬λ“œ) */
│── pages/        /* νŽ˜μ΄μ§€λ³„ μŠ€νƒ€μΌ */
│── themes/       /* 닀크λͺ¨λ“œ, 라이트λͺ¨λ“œ λ“± ν…Œλ§ˆ */
│── utils/        /* μœ ν‹Έλ¦¬ν‹° 클래슀 */
│── main.css      /* λͺ¨λ“  CSS νŒŒμΌμ„ λΆˆλŸ¬μ˜€λŠ” 메인 파일 */

βœ… 2. λͺ…λͺ… κ·œμΉ™

  • Block: 독립적인 μ»΄ν¬λ„ŒνŠΈ
  • Element: λΈ”λ‘μ˜ 일뢀인 μžμ‹ μš”μ†Œ
  • Modifier: 블둝 λ˜λŠ” μš”μ†Œμ˜ λ³€ν˜•

μ˜ˆμ‹œ:

/* Block */
.button {
    padding: 10px;
    background-color: #0078d4;
}

/* Element */
.button__icon {
    margin-right: 5px;
}

/* Modifier */
.button--primary {
    background-color: #1abc9c;
}

HTML μ˜ˆμ‹œ:

<button class="button button--primary">
    <span class="button__icon">πŸ”</span>
    Search
</button>

βœ… 3. μ½”λ“œ ν¬λ§·νŒ…

  1. λ“€μ—¬μ“°κΈ°: 2 λ˜λŠ” 4 슀페이슀(νŒ€ κ·œμΉ™μ— 맞좀)
  2. λŒ€κ΄„ν˜Έ: μ—¬λŠ” {λŠ” 속성 블둝 λ°”λ‘œ 뒀에 μœ„μΉ˜
  3. 속성 μ •λ ¬: 속성은 논리적 μˆœμ„œλ‘œ μ •λ ¬

쒋은 예:

.button {
    display: inline-block;
    padding: 10px;
    font-size: 14px;
    color: white;
    background-color: #0078d4;
    border-radius: 4px;
}

βœ… 4. 주석

  1. μ„Ήμ…˜ 주석:
/* ========================================
   COMPONENT: BUTTON
======================================== */
  1. μ„€λͺ… 주석:
/* Primary button for call-to-action */
.button--primary {
    background-color: #1abc9c;
}

βœ… 5. 폰트

  • ν”„λ‘œμ νŠΈμ— μ‚¬μš©λ˜λŠ” ν°νŠΈλŠ” @importλ₯Ό 톡해 μ™ΈλΆ€ μŠ€νƒ€μΌμ‹œνŠΈλ₯Ό λΆˆλŸ¬μ™€ μ‚¬μš©ν•©λ‹ˆλ‹€.
  • 폰트 μž„ν¬νŠΈ μ˜ˆμ‹œ:
@import url("https://static.toss.im/tps/main.css");
@import url("https://static.toss.im/tps/others.css");
  • 폰트 적용 μ˜ˆμ‹œ:
body {
    font-family: 'Tossface', sans-serif;
}

βœ… 6. 컬러 κ°€μ΄λ“œλΌμΈ

색상 이름 HEX μ½”λ“œ μš©λ„
κΈ°λ³Έ 배경색 #f9fafc νŽ˜μ΄μ§€ 및 μ„Ήμ…˜ λ°°κ²½
κΈ°λ³Έ ν…μŠ€νŠΈ 색상 #000 κΈ°λ³Έ ν…μŠ€νŠΈ
μ„œλΈŒ ν…μŠ€νŠΈ 색상 #555 보쑰 ν…μŠ€νŠΈ
κ°•μ‘° 색상 #0078d4 λ²„νŠΌ 및 μ£Όμš” 링크
κ°•μ‘° 색상 (μ§„ν•œ) #1abc9c μ£Όμš” κ°•μ‘° μš”μ†Œ
음수 κ°•μ‘° 색상 #d32f2f ν•˜λ½ 데이터 및 μ•Œλ¦Ό
μ–‘μˆ˜ κ°•μ‘° 색상 #1976d2 μƒμŠΉ 데이터 및 μ•Œλ¦Ό
보쑰 κ°•μ‘° 색상 #4caf50 ν™œμ„±ν™” μƒνƒœ
λΉ„ν™œμ„± 색상 #bbb4b4 λΉ„ν™œμ„±ν™” μš”μ†Œ
μΉ΄λ“œ 배경색 #f2f4f6 μΉ΄λ“œ 및 블둝 λ°°κ²½
경계선 색상 #e0e0e0 μ„Ήμ…˜ ꡬ뢄선 및 경계
보쑰 배경색 #f5f5f5 ν•„ν„° 및 λ²„νŠΌ λ°°κ²½
μ„œλΈŒ ν…μŠ€νŠΈ 색상 #8b95a1 μ„œλΈŒ 메뉴 ν…μŠ€νŠΈ
차트 κ°•μ‘° 색상 #3182f6 차트 μ£Όμš” 데이터 포인트

🎨 색상 μ‚¬μš© μ˜ˆμ‹œ

body {
  background-color: #f9fafc;
  color: #000;
}

.menu-item.active {
  border-bottom: 3px solid #000;
}

.rate-change.positive {
  color: #d32f2f;
}

.rate-change.negative {
  color: #1976d2;
}

.footer {
  background-color: #f9fafc;
  border-top: 1px solid #e0e0e0;
}

🏒 LightHouse

image

  • 이미지 νƒœκ·Έμ— lazy loading을 μΆ”κ°€ ν›„ λžœλ”λ§ μ΅œμ ν™”λ₯Ό ν•¨μœΌλ‘œμ¨ 이미지 디코딩을 λΉ„λ™κΈ°μ μœΌλ‘œ ν•˜λ„λ‘ μΆ”κ°€ν•˜μ—¬ μ„±λŠ₯을 ν–₯μƒμ‹œμΌ°μŠ΅λ‹ˆλ‹€.
  • toss 폰트λ₯Ό μ™ΈλΆ€μ—μ„œ import ν•¨μœΌλ‘œμ¨ μ„œλ“œνŒŒν‹° λ₯Ό μ‚¬μš©ν•˜λŠ”μ μ—μ„œ 좔가적 κ°œμ„  μ‚¬ν•­μœΌλ‘œ 폰트 νŒŒμΌμ„ zip으둜 λ°›μ•„ 외뢀에 μ˜μ‘΄ν•˜μ§€ μ•Šλ„λ‘ κ³ λ €ν•˜κ³  μžˆμŠ΅λ‹ˆλ‹€.
  • meta νƒœκ·Έμ˜ description, keyword, contentλ₯Ό μΆ”κ°€ν•˜μ—¬ 웹접근성을 ν–₯상.
  • μ €μ‹œλ ₯μžλ“€μ΄ μ‚¬μš©ν•˜λŠ” μŠ€ν¬λ¦°λ¦¬λ”κ°€ 잘 ꡬ동할 수 μžˆλ„λ‘ img νƒœκ·Έ 등에 ν•„μˆ˜μ μœΌλ‘œ alt, aria-** μ†μ„±μœΌλ‘œ μ„€λͺ… μΆ”κ°€

About

πŸ’» 우리 투자 증ꢌ UI κ°œμ„ 

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •