-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (48 loc) · 1.53 KB
/
style.css
File metadata and controls
52 lines (48 loc) · 1.53 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* style.css */
/* Using Poppins font imported in index.html */
body {
font-family: 'Poppins', sans-serif;
background-color: #f3f4f6;
min-height: 100vh;
display: flex;
flex-direction: column;
}
main {
flex-grow: 1;
}
/* Note: Since Tailwind is included via CDN,
many of the classes below are redundant, but kept for clarity
if you decide to use a custom build process later. */
/* Primary Button is not used in the final UX but kept for style reference */
.btn-primary {
background-color: #3b82f6;
color: white;
font-weight: 600; /* Increased weight for Poppins */
padding: 0.75rem 1.5rem;
border-radius: 9999px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
0 2px 4px -1px rgba(0, 0, 0, 0.06);
transition: background-color 0.2s ease-in-out,
transform 0.2s ease-in-out;
}
.btn-primary:hover {
background-color: #2563eb;
transform: translateY(-2px); /* Stronger hover effect */
box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3), 0 4px 6px -2px rgba(37, 99, 235, 0.1);
}
/* Secondary Button is largely replaced by Tailwind classes but kept for reference */
.btn-secondary {
background-color: #6b7280;
color: white;
font-weight: 600;
padding: 0.5rem 1rem;
border-radius: 9999px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
0 2px 4px -1px rgba(0, 0, 0, 0.06);
transition: background-color 0.2s ease-in-out,
transform 0.2s ease-in-out;
}
.btn-secondary:hover {
background-color: #4b5563;
transform: translateY(-1px);
}