Skip to content

Commit 09753be

Browse files
authored
Create custom.css
1 parent 0de4881 commit 09753be

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed

files/assets/css/custom.css

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
/*CSS from HamPUG website. 25-03-06 - Flogged to make the navigation drop-downs work better - Ian 2025-08-15*/
2+
3+
/*Set height of logo*/
4+
#logo {
5+
height: 50px;
6+
}
7+
8+
/*****************************************************************************/
9+
10+
/*Move Navigation bar theme that's desired to the bottom.*/
11+
12+
/*****************************************************************************/
13+
/* Yellow theme*/
14+
/* #ffff00 is a bright yellow colour RGB(255, 255, 0 */
15+
.navbar {
16+
background-color: #aaaa00 !important;
17+
}
18+
19+
/* Default colour of the text on the navigation bar - dark yellow
20+
Increase the font-size of nav buttons - 2025-03-06 Leave font-size */
21+
.nav-link, .dropdown-item {
22+
color: #ffff00 !important;
23+
background-color: #aaaa00 !important;
24+
/*font-size: 100%; */
25+
}
26+
27+
/* Colour of the text on the navigation bar when hover and drop-down */
28+
.nav-link:hover, .dropdown-item:hover {
29+
color: white !important;
30+
}
31+
/*****************************************************************************/
32+
/* Blue theme */
33+
/* #386e7b is a bright yellow colour RGB(255, 255, 0 */
34+
.navbar {
35+
background-color: #0000aa !important;
36+
}
37+
38+
/* Default colour of the text on the navigation bar - dark yellow
39+
Increase the font-size of nav buttons - 2025-03-06 Leave font-size */
40+
.nav-link, .dropdown-item {
41+
color: #ccccff !important;
42+
background-color: #0000aa !important;
43+
/*font-size: 100%; */
44+
}
45+
46+
/* Colour of the text on the navigation bar when hover and drop-down */
47+
.nav-link:hover, .dropdown-item:hover {
48+
color: white !important;
49+
}
50+
51+
/*****************************************************************************/
52+
/* Teal theme #386e7b is a dark green colour RGB(56, 110, 123) */
53+
.navbar {
54+
background-color: #386e7b !important;
55+
}
56+
57+
/* Default colour of the text on the navigation bar
58+
b8f0fd = 186,240,253. A lighter version of 56,110,123 by 130 units for each colour
59+
Increase the font-size of nav buttons - 2025-03-06 Leave font-size */
60+
.nav-link, .dropdown-item {
61+
color: #b8f0fd !important;
62+
background-color: #386e7b !important;
63+
/*font-size: 100%; */
64+
}
65+
66+
/* Colour of the text on the navigation bar when hover and drop-down */
67+
.nav-link:hover, .dropdown-item:hover {
68+
color: white !important;
69+
}
70+
71+
/*****************************************************************************/

0 commit comments

Comments
 (0)