-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
74 lines (62 loc) · 1.48 KB
/
header.css
File metadata and controls
74 lines (62 loc) · 1.48 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
/* header.css */
/* Background color and padding */
header {
background-color: #343a40;
padding: 10px 20px;
}
/* Navbar brand (logo) styling */
header .navbar-brand {
font-size: 1.5rem;
font-weight: bold;
color: #ffffff;
}
/* Navbar link styling */
header .navbar-nav .nav-link {
color: #ffffff;
text-decoration: none;
list-style: none; /* Remove bullet points */
text-align: center; /* Center align the text */
display: inline-block; /* Display the links horizontally */
}
/* Navbar link hover effect */
header .navbar-nav .nav-link:hover {
color: #a8a8a8;
}
/* Navbar toggle button styling */
header .navbar-toggler {
border-color: #ffffff;
}
/* Navbar toggle icon styling */
header .navbar-toggler-icon {
background-color: #ffffff;
}
/* Navbar collapse menu styling */
header .collapse.navbar-collapse {
justify-content: center; /* Center align the menu items */
}
/* Navbar menu item spacing */
header .navbar-nav .nav-item:not(:last-child) {
margin-right: 15px;
}
/* 3 Rows Across */
header .row-across {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
/* 4 Rows Down */
header .row-down {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
}
/* Adjust the spacing between items in rows */
header .row-across > * {
margin: 10px;
}
/* Adjust the spacing between rows */
header .row-down > * {
margin-bottom: 10px;
}