-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (90 loc) · 1.78 KB
/
style.css
File metadata and controls
108 lines (90 loc) · 1.78 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
/* Custom button style */
.btn-custom {
background-color: #000000;
color: white;
font-weight: bold;
border-radius: 5px;
}
.btn-custom:hover {
background-color: #121312;
}
/* Custom card hover effect */
.card:hover {
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Custom navbar background */
.navbar {
background-color: #181818;
}
.navbar a {
color: #1f1d1d !important;
}
.navbar a:hover {
color: #fffafa !important;
}
/* Section header style */
h2 {
font-size: 2.5rem;
color: #333;
margin-bottom: 20px;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #f9f9f9;
color: #333;
margin: 0;
padding: 0;
}
/* Navbar Styling */
.navbar {
background: linear-gradient(90deg, #ff7e5f, #feb47b);
position: sticky;
top: 0;
z-index: 1000;
}
.navbar .navbar-brand,
.navbar .nav-link {
color: white !important;
}
.navbar .nav-link:hover, .btn:hover {
color: #f1f1f1 !important;
background-color: #555 !important;
transition: all 0.3s ease-in-out;
}
.navbar-toggler {
border-color: #fff !important;
}
.navbar-toggler-icon {
background-color: #fff !important;
}
/* Section Padding and Spacing */
section {
padding: 60px 0;
margin: 0 auto;
background: linear-gradient(45deg, #9573b9, #21252b);
color: white;
}
/* Card Hover Effect */
.card {
border-radius: 10px;
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
}
/* Footer Styling */
footer {
background-color: #222;
color: white;
padding: 30px 0;
}
footer a {
color: #ff7e5f;
text-decoration: none;
}
footer a:hover {
color: #feb47b;
}