diff --git a/public/index.html b/public/index.html index fced1dd..6667338 100644 --- a/public/index.html +++ b/public/index.html @@ -23,6 +23,22 @@ .header h1 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #3A332D; line-height: 1.2; } .header-line { width: 40px; height: 2px; background: #C17F59; margin: 10px auto 0; border-radius: 1px; } + /* User bar */ + .user-bar { + display: flex; align-items: center; justify-content: center; gap: 10px; + margin-bottom: 18px; padding: 8px 14px; border-radius: 10px; + background: #FFF; box-shadow: 0 1px 3px rgba(0,0,0,0.04); + } + .user-bar-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; } + .user-bar-name { font-size: 13px; font-weight: 600; color: #3A332D; } + .user-bar-label { font-size: 11px; color: #B0A89E; } + .btn-logout { + margin-left: auto; border: none; background: #F5F0EB; border-radius: 6px; + padding: 4px 10px; font-size: 11px; font-weight: 500; color: #8B7E74; + cursor: pointer; font-family: 'DM Sans', sans-serif; + } + .btn-logout:hover { background: #EAE3DB; color: #5C524A; } + /* Cards */ .card { background: #FFF; border-radius: 14px; padding: 16px; margin-bottom: 14px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); } .card-title { font-size: 11px; font-weight: 600; color: #8B7E74; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.08em; } @@ -58,9 +74,7 @@ .cal-day-num { font-size: 12px; font-weight: 400; color: #5C524A; text-align: right; padding-right: 2px; display: block; } .cal-day.today .cal-day-num { font-weight: 700; color: #C17F59; } .cal-day-dots { display: flex; flex-wrap: wrap; gap: 2px; margin-top: 2px; } - .dot { - width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; - } + .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; } .dot.planned { opacity: 0.5; border: 1.5px dashed; background: transparent !important; } /* Legend */ @@ -75,7 +89,6 @@ display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 8px; background: #FDFBF9; margin-bottom: 6px; } - .booking-color { width: 3px; height: 100%; min-height: 36px; border-radius: 2px; flex-shrink: 0; } .booking-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; } .booking-info { flex: 1; min-width: 0; } .booking-name { font-size: 13px; font-weight: 600; color: #3A332D; } @@ -94,17 +107,22 @@ .empty-state { text-align: center; padding: 30px; color: #B0A89E; font-style: italic; } /* Comments */ - .comments-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; max-height: 300px; overflow-y: auto; } + .comments-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; max-height: 400px; overflow-y: auto; } .comment { padding: 10px 14px; border-radius: 10px; background: #FDFBF9; - border-left: 3px solid #ccc; + border-left: 3px solid #ccc; position: relative; } .comment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; } .comment-author { font-size: 12px; font-weight: 600; } .comment-time { font-size: 10px; color: #B0A89E; } .comment-text { font-size: 13px; color: #5C524A; line-height: 1.5; } + .comment-delete { + border: none; background: none; cursor: pointer; font-size: 12px; + color: #D4756B; padding: 2px 4px; border-radius: 4px; margin-left: 8px; + opacity: 0.6; + } + .comment-delete:hover { opacity: 1; } .comment-form { display: flex; gap: 8px; align-items: flex-end; } - .comment-form select { width: 100px; } .comment-form input { flex: 1; padding: 8px 12px; border-radius: 8px; border: 1px solid #E8E0D8; background: #FFF; font-size: 13px; font-family: 'DM Sans', sans-serif; @@ -123,14 +141,24 @@ position: fixed; inset: 0; background: #F5F0EB; display: flex; align-items: center; justify-content: center; z-index: 100; } - .login-box { text-align: center; } - .login-box input { + .login-box { text-align: center; width: 280px; } + .login-box input, .login-box select { padding: 10px 16px; border-radius: 8px; border: 1px solid #E8E0D8; - font-size: 14px; font-family: 'DM Sans', sans-serif; width: 220px; - margin: 12px 0; text-align: center; + font-size: 14px; font-family: 'DM Sans', sans-serif; width: 100%; + margin-bottom: 10px; text-align: center; background: #FFF; color: #3A332D; } - .login-box .btn-send { display: block; width: 220px; margin: 0 auto; padding: 10px; } + .login-box .btn-send { display: block; width: 100%; padding: 10px; } .login-error { font-size: 12px; color: #D4756B; margin-top: 8px; } + .login-members { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 16px 0; } + .login-member-btn { + display: flex; align-items: center; gap: 6px; + padding: 8px 14px; border-radius: 10px; border: 2px solid #E8E0D8; + background: #FFF; cursor: pointer; font-family: 'DM Sans', sans-serif; + font-size: 13px; font-weight: 500; color: #5C524A; transition: all 0.15s ease; + } + .login-member-btn:hover { border-color: #C17F59; } + .login-member-btn.selected { border-color: #C17F59; background: #FDF6F0; font-weight: 600; } + .login-member-dot { width: 10px; height: 10px; border-radius: 50%; } .footer { text-align: center; font-size: 10px; color: #C8BFB5; padding: 0 0 20px; } @@ -140,8 +168,10 @@