-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (81 loc) · 1.39 KB
/
style.css
File metadata and controls
91 lines (81 loc) · 1.39 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
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color:rgb(29, 43, 54) ;
padding: 15px 40px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 100;
margin-bottom: 20px;
}
.logo {
font-size: 24px;
font-weight: bold;
color: #fcfcfc;
}
.nav-links {
list-style: none;
display: flex;
gap: 25px;
color: #fcfcfc;
}
.nav-links .sign-in {
color:rgb(255, 175, 28);
}
.nav-links .sign-in:hover {
color:rgb(255, 166, 0);
}
.nav-links li a {
text-decoration: none;
color: #fcfcfc;
font-weight: 500;
transition: color 0.3s;
}
.nav-links li a:hover {
color: #007BFF;
}
.feedbackpara{
position: fixed;
bottom: 0;
left:0;
width: 100%;
background-color: #f8f9fa;
color:black;
text-align: center;
padding: 2px;
}
.feedbackpara .btn {
background-color: #007bff;
border: none;
color: white;
font-size: 18px;
padding: 12px 28px;
border-radius: 10px;
cursor: pointer;
transition: 0.3s ease;
}
.feedbackpara .btn:hover {
background-color: #0056b3;
}
h1{
text-align: center;
}
.logo{
align-items: center;
justify-items: center;
display: flex;
flex-direction: column;
}
.card {
border: 2px solid black;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.card-img-top {
height: 250px;
width: 100%;
object-fit: cover;
}