-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (51 loc) · 1.17 KB
/
style.css
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
/* Overall body styling */
body {
background-image: url('https://source.unsplash.com/1600x900/?weather');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
color: white;
}
/* Navbar styling */
.navbar {
background-color: rgba(255, 255, 255, 0.8);
text-align: center;
font-weight: bold;
font-size: 24px;
}
.navbar-brand, .nav-link, .nav-item {
color: #000;
}
.navbar-brand:hover, .nav-link:hover, .nav-item:hover {
color: #007bff;
}
.custom-submit {
color: black;
}
/* Card styling */
.card {
background-color: rgba(255, 255, 255, 0.8);
margin-bottom: 1.5rem;
color: #000;
}
.card-header {
background-color: rgba(0, 123, 255, 0.8);
color: white;
}
.card img {
max-height: 200px;
object-fit: cover;
}
/* Table styling */
.table-responsive {
background-color: rgba(255, 255, 255, 0.8);
color: #000;
}
/* Form styling */
.form-control, .btn {
background-color: rgba(255, 255, 255, 0.8);
}
/* Heading styling */
h1, h2 {
color: white;
}