📩 친구 요청 보내기
++
📥 친구 요청 받기
+받은 요청이 없습니다.
+diff --git a/static/css/style.css b/static/css/style.css index 0ecb128..55c852c 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -84,4 +84,57 @@ input { margin-top: 20px; text-align: center; font-size: 14px; +} + +/* 드롭다운 전체 감싸는 영역 */ +.dropdown { + position: relative; + display: inline-block; +} + +/* 드롭다운 버튼 스타일 (기존 login-btn 활용) */ +.dropbtn { + padding: 10px 20px; + background-color: #f9f9f9; + border: 1px solid #333; + cursor: pointer; + font-weight: bold; + border-radius: 4px; +} + +/* 마우스 올리면 나타날 박스 */ +.dropdown-content { + display: none; + position: absolute; + right: 0; + background-color: white; + min-width: 140px; + box-shadow: 0px 8px 16px rgba(0,0,0,0.1); + border: 1px solid #ddd; + border-radius: 8px; + z-index: 10; + margin-top: 5px; +} + +/* 드롭다운 안의 개별 버튼들 */ +.dropdown-content button { + color: #333; + padding: 12px 16px; + text-decoration: none; + display: block; + width: 100%; + border: none; + background: none; + text-align: left; + cursor: pointer; + font-size: 14px; +} + +.dropdown-content button:hover { + background-color: #f1f1f1; +} + +/* 마우스 올릴 때 보여주기 */ +.dropdown:hover .dropdown-content { + display: block; } \ No newline at end of file diff --git a/templates/dashboard.html b/templates/dashboard.html new file mode 100644 index 0000000..a0256ac --- /dev/null +++ b/templates/dashboard.html @@ -0,0 +1,39 @@ + + +
+ +| 일 | 월 | 화 | 수 | 목 | 금 | 토 | +
|---|
받은 요청이 없습니다.
+