-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (65 loc) · 1.35 KB
/
style.css
File metadata and controls
80 lines (65 loc) · 1.35 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
75
76
/*----------------ADDING WHITE SPACE-------------*/
.title {
margin-top: 2em !important;
margin-bottom: 0.75em;
}
.section h1,
.section h2,
.section h3,
.section h4,
.section h5 {
padding-top: 3em !important; /*adding so much padding because theme adds a margin-top: -65px by default */
margin-bottom: 0.75em;
}
#header.fluid-row::before {
content: "";
height: 150px;
width: 150px;
float: right;
background-image: url("image.png");
background-size: contain;
background-position: center center;
background-repeat: no-repeat;
}
/* links */
a {
color: #8FBC8B;
}
a:hover {
color: #SeaGreen; /* darker color when hovering */
}
.sidebar-bio {
position: absolute;
top: 120px;
right: 40px;
width: 350px;
padding: 15px;
background-color: #f3f3f3;
border-left: 3px solid #aaa;
font-size: 1.3em;
border-radius: 8px;
}
.sidebar-bio a {
text-decoration: none;
color: #SeaGreen;
}
.sidebar-bio i {
margin-right: 8px; /* Adjust this to your preferred space */
}
.profile-pic {
width: 100%;
border-radius: 50%;
margin-bottom: 10px;
}
/* Widen the main body container */
body .container {
max-width: 100%;
width: 100%;
padding: 0 40px;
box-sizing: border-box;
}
/* Main content area — give space for sidebar */
.main-content {
max-width: 700px;
margin-right: 300px; /* Leave space for sidebar */
}