-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.scss
95 lines (82 loc) · 2.55 KB
/
theme.scss
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
92
93
94
95
/*-- scss:defaults --*/
// scss-docs-start gray-color-variables
$white: #fff !default;
$gray-100: #f8f9fa !default;
$gray-200: #e9ecef !default;
$gray-300: #dee2e6 !default;
$gray-400: #ced4da !default;
$gray-500: #adb5bd !default;
$gray-600: #6c757d !default;
$gray-700: #495057 !default;
$gray-800: #343a40 !default;
$gray-900: #212529 !default;
$black: #000 !default;
$blueblack: #002e4e !default;
$greenblue: #2c7da0 !default;
// scss-docs-end gray-color-variables
// The page text color
$body-color: $gray-400;
// The page background color
$body-bg: $greenblue;
// Define a light blue color
$dark-blue: #001a2c !default; // Light blue background
$gray-800: #66707a; // Optional gray color for borders
// Style the bio and image container
#bio-section {
background-color: $dark-blue; // Light blue background
padding: 20px;
margin: 20px auto;
max-width: 800px;
border-radius: 10px; // Optional: rounded corners
border: 1px solid $gray-300; // Optional: add a border for better definition
display: flex;
align-items: flex-start; // Align the content within the container
text-align: justify;
}
/* Adjust the profile image */
.profile-image {
width: 150px;
height: auto;
margin-right: 20px; /* Space between image and text */
border-radius: 10px; /* Slight rounding */
}
/* Hero heading section */
#hero-heading {
text-align: justify;
flex: 1; /* Ensures the text takes up the remaining space next to the image */
}
/* Make sure that links, headings, and strong text are also white */
#bio-section a,
#bio-section h1,
#bio-section h2{
color: #ffffff; /* Ensure all text elements, including strong and headings, are white */
}
#bio-section strong {
color: #cca000; /* Gold color for strong text */
}
/* Apply styling to the entire footer */
.footer {
background-color: $dark-blue !important; /* Dark blue background */
padding: 20px !important;
text-align: center !important;
width: 100% !important;
}
/* Style the container that holds the footer links */
.nav-footer {
background-color: $dark-blue !important; /* Dark blue background */
gap: 10px !important; /* Space between links */
}
/* Style the individual footer links */
.nav-footer-center a {
color: #cca000 !important; /* Gold text */
text-decoration: none !important; /* Remove underline */
gap: 30px !important; /* Space between icon and text */
}
.nav-footer-center a:hover {
color: #b8860b !important; /* Darker gold on hover */
}
/* Style the icons */
.nav-footer-center i {
font-size: 2em !important; /* Increase icon size */
color: #cca000 !important; /* Gold icons */
}