-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprojectn1.css
More file actions
108 lines (100 loc) · 1.79 KB
/
projectn1.css
File metadata and controls
108 lines (100 loc) · 1.79 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
body {
font-family: 'Segoe UI', sans-serif;
background-color: #f9f9f9;
scroll-behavior: smooth;
}
section {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
}
#blogs{
background-color: #0f172a !important;
}
.navbar .nav-link {
color: #fff !important;
margin: 0 10px;
font-weight: 500;
position: relative;
}
.navbar .nav-link::after {
content: "";
width: 0%;
height: 2px;
background: #0dcaf0;
position: absolute;
left: 0;
bottom: -4px;
transition: 0.3s;
}
.navbar .nav-link:hover::after {
width: 100%;
}
.frontpage {
position: relative;
color: white;
text-align: center;
}
.home-bg {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
object-fit: cover;
filter: blur(6px) brightness(0.6);
z-index: 0;
}
.frontpage .overlay {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(12, 31, 58, 0.5);
z-index: 1;
}
.frontpage .content {
position: relative;
z-index: 2;
}
.home-img {
width: 100%;
height: 100vh;
object-fit: cover;
filter: blur(6px) brightness(0.6);
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
#head {
color: #fff;
}
.git-card {
border-radius: 12px;
border: 2px solid #0a192f;
transition: 0.3s;
}
.git-card:hover {
transform: translateY(-10px);
box-shadow: 0px 6px 16px rgba(0,0,0,0.2);
}
.profile-card {
border-radius: 12px;
overflow: hidden;
}
.profile-img {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
border: 4px solid #64ffda;
}
/* 🔹 All buttons styled to GitNexus brand color */
.btn {
background-color: #0dcaf0 !important;
border: none !important;
color: #fff !important;
}
.btn:hover {
background-color: #0bb8dc !important;
color: #fff !important;
}