-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
70 lines (59 loc) · 1.18 KB
/
styles.css
File metadata and controls
70 lines (59 loc) · 1.18 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
:root {
--primary-color: #0d6efd;
--bg-light: #f8f9fa;
--bg-dark: #212529;
--text-light: #f8f9fa;
--text-dark: #212529;
}
body {
scroll-behavior: smooth;
transition: background-color 0.3s, color 0.3s;
}
.dark-mode {
background-color: var(--bg-dark);
color: var(--text-light);
}
#home{
height: 100vh;
}
.navbar, .footer {
background-color: var(--primary-color);
}
.section-title {
font-size: 2rem;
font-weight: bold;
margin-bottom: 1rem;
}
.rounded-circle{
width: 180px;
height: 180px;
object-fit: cover;
border-radius: 50%;
border: 4px solid #0d6efd;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.skills i {
font-size: 2rem;
margin: 0.5rem;
}
.project-card img {
transition: transform 0.3s ease;
}
.project-card img:hover {
transform: scale(1.05);
}
.carousel-item blockquote {
font-size: 1.1rem;
}
.back-to-top {
position: fixed;
bottom: 20px;
right: 20px;
background: var(--primary-color);
color: #fff;
border: none;
border-radius: 50%;
padding: 10px 14px;
display: none;
cursor: pointer;
}