Skip to content

Commit 367d8a3

Browse files
committed
updated css
1 parent 6eb0ba0 commit 367d8a3

File tree

5 files changed

+152
-149
lines changed

5 files changed

+152
-149
lines changed

_sass/minima/_base.scss

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,3 +279,78 @@ table {
279279
-ms-overflow-style: -ms-autohiding-scrollbar;
280280
}
281281
}
282+
283+
.profile-pic {
284+
border-radius: 50%;
285+
width: 100px;
286+
height: 100px;
287+
object-fit: cover;
288+
margin-right: 20px;
289+
}
290+
291+
292+
/* Styling the header */
293+
.site-header .wrapper {
294+
display: flex;
295+
justify-content: space-between; /* Separate branding and navigation */
296+
align-items: center; /* Vertically align items */
297+
padding: 10px 20px;
298+
}
299+
300+
/* Styling the branding (logo and site title) */
301+
.branding {
302+
display: flex;
303+
align-items: center;
304+
}
305+
306+
.site-logo {
307+
height: 50px; /* Adjust the height of the logo as needed */
308+
margin-right: 10px; /* Space between logo and title */
309+
}
310+
311+
.site-title {
312+
font-size: 1.5em; /* Adjust font size of the site title */
313+
font-weight: bold;
314+
}
315+
316+
.site-footer .wrapper {
317+
display: flex;
318+
justify-content: space-between;
319+
align-items: center;
320+
padding: 20px 0;
321+
}
322+
323+
.footer-col-wrapper {
324+
display: flex;
325+
justify-content: space-between;
326+
width: 100%;
327+
}
328+
329+
.footer-col {
330+
flex: 1;
331+
padding: 0 10px;
332+
}
333+
334+
.footer-col p,
335+
.footer-col ul {
336+
margin: 0; /* Remove unnecessary margins */
337+
}
338+
339+
.social-links {
340+
display: flex;
341+
align-items: center;
342+
}
343+
344+
.contact-list {
345+
list-style: none;
346+
padding: 0;
347+
margin: 0;
348+
}
349+
350+
.publication {
351+
display: flex;
352+
flex-direction: column;
353+
margin-bottom: 50px; /* Increase this value to add more space between publications */
354+
border-bottom: 1px solid #ddd;
355+
padding-bottom: 15px;
356+
}

_site/assets/css/style.css

Lines changed: 74 additions & 73 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_site/assets/css/style.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_site/feed.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.3.4">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2024-10-14T12:30:11+02:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">Northernmost GraphML Group</title><subtitle>The Northermost GraphML group in the world, based in Tromsø, Norway.
1+
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.3.4">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2024-10-14T12:36:24+02:00</updated><id>http://localhost:4000/feed.xml</id><title type="html">Northernmost GraphML Group</title><subtitle>The Northermost GraphML group in the world, based in Tromsø, Norway.
22
</subtitle></feed>

assets/css/style.scss

Lines changed: 1 addition & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -6,77 +6,4 @@
66
"minima/skins/{{ site.minima.skin | default: 'classic' }}",
77
"minima/initialize";
88

9-
.profile-pic {
10-
border-radius: 50%;
11-
width: 100px;
12-
height: 100px;
13-
object-fit: cover;
14-
margin-right: 20px;
15-
}
16-
17-
18-
/* Styling the header */
19-
.site-header .wrapper {
20-
display: flex;
21-
justify-content: space-between; /* Separate branding and navigation */
22-
align-items: center; /* Vertically align items */
23-
padding: 10px 20px;
24-
}
25-
26-
/* Styling the branding (logo and site title) */
27-
.branding {
28-
display: flex;
29-
align-items: center;
30-
}
31-
32-
.site-logo {
33-
height: 50px; /* Adjust the height of the logo as needed */
34-
margin-right: 10px; /* Space between logo and title */
35-
}
36-
37-
.site-title {
38-
font-size: 1.5em; /* Adjust font size of the site title */
39-
font-weight: bold;
40-
}
41-
42-
.site-footer .wrapper {
43-
display: flex;
44-
justify-content: space-between;
45-
align-items: center;
46-
padding: 20px 0;
47-
}
48-
49-
.footer-col-wrapper {
50-
display: flex;
51-
justify-content: space-between;
52-
width: 100%;
53-
}
54-
55-
.footer-col {
56-
flex: 1;
57-
padding: 0 10px;
58-
}
59-
60-
.footer-col p,
61-
.footer-col ul {
62-
margin: 0; /* Remove unnecessary margins */
63-
}
64-
65-
.social-links {
66-
display: flex;
67-
align-items: center;
68-
}
69-
70-
.contact-list {
71-
list-style: none;
72-
padding: 0;
73-
margin: 0;
74-
}
75-
76-
.publication {
77-
display: flex;
78-
flex-direction: column;
79-
margin-bottom: 50px; /* Increase this value to add more space between publications */
80-
border-bottom: 1px solid #ddd;
81-
padding-bottom: 15px;
82-
}
9+

0 commit comments

Comments
 (0)