Skip to content

Commit

Permalink
Add book time with me
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelvicnt committed Jan 29, 2024
1 parent 172798a commit a81a08f
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ To deploy and verify changes locally, run the `gulp` command to pickup CSS style

## Setup

GitHub actions was set up following [this post](https://jekyllrb.com/docs/continuous-integration/github-actions/)m and the redirect fromg GitHub pages to [manuelvivo.dev](https://manuelvivo.dev) following [this one](https://dev.to/trentyang/how-to-setup-google-domain-for-github-pages-1p58).
GitHub actions was set up following [this post](https://jekyllrb.com/docs/continuous-integration/github-actions/) and the redirect from GitHub pages to [manuelvivo.dev](https://manuelvivo.dev) following [this one](https://dev.to/trentyang/how-to-setup-google-domain-for-github-pages-1p58).

## Live Demo

Expand Down
3 changes: 1 addition & 2 deletions _includes/navigation.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<ul class="nav" role="menu">
<li class="nav-home" role="menuitem"><a href="{{site.baseurl}}">Home</a></li>
<li class="nav-book" role="menuitem"><a href="https://topmate.io/manuelvivo" target="_blank">🗓️ Book a 1:1 with me!</a></li>
<li class="nav-talks" role="menuitem"><a href="{{site.baseurl}}tag/architecture/">Arch</a></li>
<li class="nav-talks" role="menuitem"><a href="{{site.baseurl}}tag/coroutines/">Coroutines</a></li>
<li class="nav-talks" role="menuitem"><a href="{{site.baseurl}}tag/dagger/">Dagger</a></li>
<li class="nav-talks" role="menuitem"><a href="{{site.baseurl}}tag/hilt/">Hilt</a></li>
<li class="nav-talks" role="menuitem"><a href="{{site.baseurl}}tag/talks/">Talks</a></li>
<li class="nav-publicspeaking" role="menuitem"><a href="{{site.baseurl}}publicspeaking/">Public Speaking</a></li>
<li class="nav-about" role="menuitem"><a href="{{site.baseurl}}about/">About</a></li>
<li class="nav-gallery" role="menuitem"><a href="{{site.baseurl}}gallery/">Gallery</a></li>
Expand Down
10 changes: 5 additions & 5 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
<!-- Base Meta -->
{% include dynamic_title.html %}
<title>{% if title %}{{ title }}{% elsif page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>

<!-- This tag outputs SEO meta+structured data and other important settings -->
{% include head.html %}
{% seo %}

<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Styles'n'Scripts -->
Expand Down Expand Up @@ -38,11 +43,6 @@
}
</style>
<![endif]-->

<!-- This tag outputs SEO meta+structured data and other important settings -->
{% include head.html %}
{% seo %}

</head>
<body class="{% if paginator.page > 1 %}paged archive-template{% elsif page.class %}{{ page.class }}{% else %}home-template{% endif %}">

Expand Down
2 changes: 1 addition & 1 deletion assets/built/screen.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/built/screen.css.map

Large diffs are not rendered by default.

17 changes: 16 additions & 1 deletion assets/css/screen.css
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,13 @@ The knock-on effect of this is ugly browser-scroll bars at the bottom, so 80px o
list-style: none;
}

.nav .nav-book {
border-radius: 12px;
background: #fff;
margin: 0 10px 0 10px;
opacity: 0.92;
}

.nav li {
display: block;
margin: 0;
Expand All @@ -268,14 +275,22 @@ The knock-on effect of this is ugly browser-scroll bars at the bottom, so 80px o
margin: 0;
padding: 10px 12px;
color: #fff;
opacity: 0.8;
opacity: 0.9;
}

.nav li a:hover {
text-decoration: none;
opacity: 1;
}

.nav .nav-book a {
color: #000;
}

.nav .nav-book a:hover {
opacity: 1;
}

.site-nav-right {
flex-shrink: 0;
display: flex;
Expand Down

0 comments on commit a81a08f

Please sign in to comment.