Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions _includes/menu-header.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,15 @@
<a class="nav-link" href="{{site.baseurl}}/current-projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{site.baseurl}}/tags">Tags</a>
<a class="nav-link" href="{{site.baseurl}}/new-to-ruby">New to Ruby?</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{site.baseurl}}/new-to-ruby">New to Ruby?</a>
<a class="nav-link discord-button" href="https://discord.gg/DnafVbEh">
<svg fill="none" height="32" viewBox="0 0 32 32" width="32" xmlns="http://www.w3.org/2000/svg">
<path
d="m20.5047 3.87149c-.3126.55521-.5935 1.12957-.8487 1.71668-2.4251-.36375-4.8948-.36375-7.3263 0-.2488-.58711-.536-1.16147-.8488-1.71668-2.2782.38929-4.4991 1.07213-6.60504 2.03577-4.173678 6.18384-5.30323 12.20824-4.741638 18.14964 2.444238 1.8061 5.181988 3.1846 8.098458 4.0652.65728-.8806 1.23806-1.8188 1.73585-2.7952-.94455-.351-1.85714-.7913-2.73143-1.3018.22975-.166.45309-.3383.6701-.5042 5.1246 2.4122 11.0595 2.4122 16.1904 0 .217.1787.4404.351.6701.5042-.8743.5168-1.7869.9508-2.7377 1.3082.4978.9764 1.0785 1.9145 1.7358 2.7952 2.9165-.8807 5.6542-2.2528 8.0985-4.0588.6637-6.8923-1.136-12.8656-4.7545-18.15603-2.0995-.96366-4.3204-1.64651-6.5987-2.02942zm-9.8215 16.52871c-1.57623 0-2.88455-1.4295-2.88455-3.1972 0-1.7678 1.25721-3.2037 2.87815-3.2037 1.621 0 2.9101 1.4423 2.8846 3.2037-.0255 1.7613-1.2699 3.1972-2.8782 3.1972zm10.6321 0c-1.5827 0-2.8782-1.4295-2.8782-3.1972 0-1.7678 1.2572-3.2037 2.8782-3.2037 1.6208 0 2.9036 1.4423 2.878 3.2037-.0254 1.7613-1.2699 3.1972-2.878 3.1972z"
fill="currentColor"></path>
</svg>
Discord
</a>
</li>
2 changes: 2 additions & 0 deletions _pages/hack-nights.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ excerpt: Join us the first Tuesday of every month
A monthly meetup of fellow Rubyists. Come sit around the virtual campfire as we discuss ruby news, current projects people are working on, and provide help with questions you have. We're a group of friendly folks open to people of all background and experience levels. Whether you're a first timer or an experienced developer, come join us!

We meet the first Tuesday of every month. You can [RSVP here](https://www.meetup.com/charlotte-rb/events)

We also have a discord available [here](https://discord.gg/DnafVbEh) to hangout, ask for help, or post memes.
2 changes: 1 addition & 1 deletion _pages/new-to-ruby.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ Official Charlotte Ruby Homepage: [charlotte-ruby.github.io](http://charlotte-ru

Charlotte Ruby Meetup Page: [meetup.com/charlotte-rb](http://meetup.com/charlotte-rb)

Charlotte Ruby Slack Channel: [charlotte-ruby.slack.com](https://charlotte-ruby.slack.com)
Charlotte Ruby Discord: [https://discord.gg/DnafVbEh](https://discord.gg/DnafVbEh)

Not around the Charlotte Area and looking for user groups nearby? Check [here](https://www.ruby-lang.org/en/community/user-groups/)
19 changes: 15 additions & 4 deletions assets/css/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -788,12 +788,12 @@ a.a2a_i, i.a2a_i, .a2a_menu a.a2a_i:visited, .a2a_menu a.a2a_more {
div.a2a_full_footer {display:none;}
@media (min-width: 1920px) {
html {font-size:17px;}
.container, .container-lg {
.container, .container-lg {
width: 1280px;
max-width: 1280px;
}
h6,.h6 {
font-size: 1.1rem;
h6,.h6 {
font-size: 1.1rem;
}
article {
font-size:1.24rem;
Expand All @@ -802,4 +802,15 @@ div.a2a_full_footer {display:none;}
height:280px !Important;
}
}


.discord-button {
border-radius: 3px;
font-weight: 500;
color: #fff !important;
background-color: rgb(88, 101, 242);
transition: background-color .17s ease,color .17s ease;

&:hover {
background-color: rgb(71, 82, 196);
}
}
Loading