Skip to content

Commit 82a6184

Browse files
neotagamatsuda
authored andcommitted
RubyKaigi 2026
1 parent cdaa750 commit 82a6184

4 files changed

Lines changed: 13 additions & 1 deletion

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/* For RubyKaigi 2026 */
2+
:root {
3+
--body-bg: #F9EFEC;
4+
--text-color: #000;
5+
}
6+
7+
h1, h2, h3 {
8+
font-family: var(--font-family-outfit);
9+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
@import "./variables.css";
22
@import "./layout.css";
33
@import "./bootstrap.css";
4+
5+
@import "./2026.css"

app/views/layouts/_navbar.html.haml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.navbar.navbar-expand-lg.navbar-default.fixed-top
22
.container-fluid
33
- if current_event
4-
= link_to "#{current_event.name} CFP", event_path(current_event), class: 'navbar-brand'
4+
= link_to "RubyKaigi 2026", event_path(current_event), class: 'navbar-brand'
55
- else
66
= link_to "CFP App", events_path, class: 'navbar-brand'
77
%button.navbar-toggler{ type: "button", data: { bs_toggle: "collapse", bs_target: ".navbar-collapse" }, aria: { controls: "navbarNav", expanded: "false", label: "Toggle navigation" } }

app/views/layouts/application.html.haml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
%link{rel:'preconnect', href:'//fonts.gstatic.com', crossorigin: ''}
1212
= stylesheet_link_tag "//fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,400,600"
1313
= stylesheet_link_tag '//fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap'
14+
= stylesheet_link_tag '//fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap'
1415

1516
= javascript_include_tag 'application', 'data-turbo-track': 'reload', type: 'module'
1617

0 commit comments

Comments
 (0)