-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
36 lines (31 loc) · 751 Bytes
/
styles.css
File metadata and controls
36 lines (31 loc) · 751 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
31
32
33
34
35
36
body {
font-family: 'Roboto', sans-serif;
}
h1, h2, h3 {
font-family: 'Poppins', sans-serif;
}
.apply-btn {
background-color: #f97316; /* Orange color */
padding: 15px 30px;
color: white;
font-size: 1.25rem;
font-weight: 700;
border-radius: 8px;
transition: background-color 0.3s ease;
}
.apply-btn:hover {
background-color: #c2410c; /* Darker orange */
}
.card {
background-color: #4f46e5; /* Violet color */
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
width: 250px;
text-align: center;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}