-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
90 lines (76 loc) · 2.32 KB
/
Copy pathabout.css
File metadata and controls
90 lines (76 loc) · 2.32 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
body {
background: #0c0c0c;
color: #eee;
font-family: "Poppins", sans-serif;
}
.navbar {
background: #0c0c0c !important;
border-bottom: 1px solid rgba(255, 215, 0, 0.18);
padding: 1rem 2.5rem;
}
.navbar-brand {
font-weight: 700;
color: #ffd700 !important;
letter-spacing: 2px;
}
.nav-link {
color: #ddd !important;
margin: 0 8px;
padding: 5px 12px !important;
border-radius: 4px;
transition: 0.25s;
}
.nav-link:hover {
background: rgba(255, 215, 0, 0.15);
color: #ffd700 !important;
}
.nav-login {
background: linear-gradient(45deg, #ffd700, #b8930b);
color: #000 !important;
font-weight: 600;
border-radius: 4px;
padding: 7px 14px !important;
box-shadow: 0 0 8px rgba(255,215,0,0.4);
}
.nav-login:hover {
background: #fff;
box-shadow: 0 0 12px #fff;
}
h2 {
color: #ffd700;
font-weight: 600;
letter-spacing: 1px;
margin-bottom: 25px;
}
.section-box {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,215,0,0.08);
border-radius: 8px;
padding: 25px;
margin-bottom: 35px;
}
.team-card {
background: rgba(255,255,255,0.05) !important;
border: 1px solid rgba(255,215,0,0.1) !important;
border-radius: 10px;
transition: 0.3s;
}
.team-card:hover {
box-shadow: 0 0 18px rgba(255,215,0,0.28);
transform: translateY(-3px);
}
.team-card img {
border-radius: 10px 10px 0 0;
}
.card-title {
color: #ffd700;
font-weight: 600;
}
.footer {
text-align: center;
opacity: 0.7;
font-size: .8rem;
padding: 20px;
border-top: 1px solid rgba(255,215,0,0.15);
margin-top: 60px;
}