-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (46 loc) · 987 Bytes
/
style.css
File metadata and controls
58 lines (46 loc) · 987 Bytes
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
/* Navbar */
.navbar {
background-color: #3498db; /* Royal Blue */
}
.navbar-brand {
color: #ffffff; /* White */
}
/* News Type */
#newsType h4 {
color: #e74c3c; /* Alizarin Crimson */
}
/* News Cards */
.card {
background-color: #ffffff; /* White */
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Light shadow */
}
.card-title {
color: #333333; /* Dark Gray */
}
.text-primary {
color: #2980b9; /* Belize Hole */
}
.text-muted {
color: #7f8c8d; /* Silver */
}
.btn-dark {
background-color: #34495e; /* Wet Asphalt */
color: #ffffff; /* White */
}
.btn-dark:hover {
background-color: #2c3e50; /* Midnight Blue */
}
/* Footer */
.navbar-dark .navbar-nav .nav-link {
color: #7f8c8d; /* Silver */
}
.navbar-dark .navbar-nav .nav-link:hover {
color: #ffffff; /* White */
}
.text-white {
color: #ffffff; /* White */
}
.text-warning {
color: #f39c12; /* Sunflower */
}