-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
30 lines (27 loc) · 766 Bytes
/
style.css
File metadata and controls
30 lines (27 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* Apply Inter font across the page */
body {
font-family: "Inter", sans-serif;
}
/* Toggle button style using Tailwind utilities manually */
.toggle-button {
display: flex;
flex: 1;
padding: 0.75rem 1rem;
text-align: center;
cursor: pointer;
border-radius: 0.5rem;
transition-property: background-color, color;
transition-duration: 200ms;
transition-timing-function: ease-in-out;
background-color: #e5e7eb; /* gray-200 */
color: #374151; /* gray-700 */
}
.toggle-button:hover {
background-color: #d1d5db; /* gray-300 */
}
.toggle-button input[type="radio"]:checked + span {
background-color: #2563eb; /* blue-600 */
color: white;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
border-radius: 0.5rem;
}