Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 25 additions & 2 deletions css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -511,13 +511,36 @@ body {
}

.profile-btn {
padding: 8px 16px;
border: none;
padding: 8px 18px;
border: 1.5px solid transparent;
border-radius: var(--border-radius-md);
background: var(--color-text-primary);
color: var(--color-background-primary);
cursor: pointer;
font-weight: 600;
font-family: inherit;
font-size: 13px;
letter-spacing: 0.01em;
transition: background 0.6s ease,
color 0.6s ease,
border-color 0.6s ease,
box-shadow 0.6s ease,
transform 0.6s ease;
}

.profile-btn:hover {
background: #f0f0ee;
color: var(--color-text-primary);
border-color: var(--color-text-primary);
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
transform: scale(1.0);
cursor: pointer;
}

.profile-btn:active {
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
background: #e4e4e0;
border-color: var(--color-text-primary);
}

/* Footer */
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>StudyPlan</title>
<link rel="stylesheet" href="/css/index.css">
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/x-icon" href="public/favicon.ico" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
Expand Down