Skip to content

Commit d38c7e4

Browse files
committed
update menu
1 parent 1402019 commit d38c7e4

13 files changed

Lines changed: 90 additions & 107 deletions

File tree

assets/scss/_custom.scss

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// This file is empty within the template
22
// You can use it to override CSS from within your project
33
a, .content a {
4-
color: #00A0A0;
4+
color: #0aa8a7;
55
border-bottom: 1px dotted #ececec;
66
}
77

88
a:hover, .content a:hover {
9-
color: #00A0A0;
9+
color: #0aa8a7;
1010
border-bottom: 1px solid #ececec;
1111
}
1212

@@ -277,7 +277,7 @@ button.svelte-la9dd4 {
277277
position: relative;
278278
z-index: 1;
279279
transition: .2s ease;
280-
background-color: #00A0A0;
280+
background-color: #0aa8a7;
281281
color: #fff;
282282
box-shadow: none;
283283
height: inherit;
@@ -325,7 +325,7 @@ button.svelte-la9dd4:disabled {
325325
}
326326

327327
.cite-icons i:hover {
328-
color: #00A0A0;
328+
color: #0aa8a7;
329329
}
330330

331331
.cite-text {
@@ -409,7 +409,7 @@ button.svelte-la9dd4:disabled {
409409
.video-container {
410410
position: relative;
411411
width: 100%;
412-
padding-bottom: 56.25%; /* 16:9のアスペクト比 */
412+
padding-bottom: 56.25%;
413413
height: 0;
414414
overflow: hidden;
415415
border-radius: 2px;
@@ -551,14 +551,14 @@ button.svelte-la9dd4:disabled {
551551

552552
&:focus {
553553
outline: none;
554-
border-color: #00A0A0;
554+
border-color: #0aa8a7;
555555
}
556556
}
557557

558558
button {
559559
white-space: nowrap;
560560
background: none;
561-
color: #00A0A0;
561+
color: #0aa8a7;
562562
border: none;
563563
padding: 6px 0;
564564
font-size: 14px;
@@ -582,7 +582,7 @@ button.svelte-la9dd4:disabled {
582582
.btn-link {
583583
display: inline-flex;
584584
align-items: center;
585-
color: #00A0A0;
585+
color: #0aa8a7;
586586
font-size: 14px;
587587
font-weight: 500;
588588
text-decoration: none;
@@ -596,7 +596,7 @@ button.svelte-la9dd4:disabled {
596596
}
597597

598598
&:hover {
599-
color: darken(#00A0A0, 10%);
599+
color: darken(#0aa8a7, 10%);
600600
text-decoration: none;
601601

602602
i {
@@ -690,7 +690,7 @@ body.has-notice {
690690
}
691691

692692
.btn-link {
693-
color: darken(#00A0A0, 10%);
693+
color: darken(#0aa8a7, 10%);
694694

695695
i {
696696
transform: translateX(3px);
@@ -796,7 +796,6 @@ body.has-notice {
796796
}
797797
}
798798

799-
// YouTubeの動画コンテナ
800799
.video-container {
801800
position: relative;
802801
width: 100%;
@@ -871,7 +870,7 @@ body.has-notice {
871870
z-index: 1;
872871

873872
&:hover {
874-
color: #00A0A0;
873+
color: #0aa8a7;
875874
}
876875
}
877876

@@ -907,7 +906,6 @@ body.has-notice {
907906
}
908907
}
909908

910-
// YouTubeの動画コンテナ
911909
.video-container {
912910
position: relative;
913911
width: 100%;

assets/scss/_search.scss

Lines changed: 52 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,63 @@
11
.search-container {
2-
position: relative;
3-
padding: 10px 15px;
4-
}
2+
position: relative;
3+
}
4+
5+
#search-input {
6+
width: 100px;
7+
padding: 8px 12px;
8+
border: 1px solid #ddd;
9+
border-radius: 4px;
10+
font-size: 14px;
511

6-
#search-input {
7-
width: 100px;
8-
padding: 8px 12px;
9-
border: 1px solid #ddd;
10-
border-radius: 4px;
11-
font-size: 14px;
12+
&:focus {
13+
outline: none;
14+
border-color: #0aa8a7;
15+
box-shadow: 0 0 0 0.2rem rgba(10, 168, 167, 0.25);
1216
}
13-
14-
.search-results {
15-
display: none;
16-
position: absolute;
17-
top: 100%;
18-
left: 15px;
19-
right: -200px;
20-
min-width: 300px;
21-
background: white;
22-
border: 1px solid #ddd;
23-
border-radius: 4px;
24-
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
25-
max-height: 400px;
26-
overflow-y: auto;
27-
z-index: 1000;
17+
}
2818

29-
.search-result-item {
30-
display: block;
31-
padding: 10px;
32-
text-decoration: none;
33-
color: inherit;
34-
border-bottom: 1px solid #eee;
19+
.search-results {
20+
display: none;
21+
position: absolute;
22+
top: 100%;
23+
left: 15px;
24+
right: -200px;
25+
min-width: 300px;
26+
margin-top: 15px;
27+
margin-left: -10px;
28+
background: white;
29+
border: 1px solid #ddd;
30+
border-radius: 4px;
31+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
32+
max-height: 400px;
33+
overflow-y: auto;
34+
z-index: 1000;
3535

36-
&:hover {
37-
background: #f5f5f5;
38-
}
36+
.search-result-item {
37+
display: block;
38+
padding: 10px;
39+
text-decoration: none;
40+
color: inherit;
41+
border-bottom: 1px solid #eee;
3942

40-
.search-result-title {
41-
font-weight: bold;
42-
margin-bottom: 5px;
43-
}
43+
&:hover {
44+
background: #f5f5f5;
45+
}
4446

45-
.search-result-summary {
46-
font-size: 0.9em;
47-
color: #666;
48-
}
47+
.search-result-title {
48+
font-weight: bold;
49+
margin-bottom: 5px;
4950
}
5051

51-
.no-results {
52-
padding: 10px;
53-
text-align: center;
52+
.search-result-summary {
53+
font-size: 0.9em;
5454
color: #666;
5555
}
56-
}
56+
}
57+
58+
.no-results {
59+
padding: 10px;
60+
text-align: center;
61+
color: #666;
62+
}
63+
}

assets/scss/_variables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Color Variables
2-
$primary-color: #00A0A0;
2+
$primary-color: #0aa8a7;
33
$text-color: #777;
44
$text-color-dark: #222;
55
$body-color: #fff;

content/en/_index.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fetchYoutubeVideos: true
88
<div class="container">
99
<div class="row align-items-center">
1010
<div class="col-lg-8 mr-auto">
11-
<h1 style="font-size: 40px; color: white; text-align: left; margin: 0;">Welcome to the InnerSource Commons</h1>
11+
<h1 style="font-size: 40px; color: white; text-align: left; margin: 20px 0px;">Welcome to the InnerSource Commons</h1>
1212
</div>
1313
<div class="col-lg-4">
1414
{{< upcoming-event-card style="banner" >}}
@@ -47,12 +47,9 @@ fetchYoutubeVideos: true
4747
<div class="row">
4848
<div class="col-12 mb-4">
4949
<div class="video-container">
50-
<iframe src="https://www.youtube.com/embed/kkxRvNP31K8?si=Lmqas3O0XmhzGRL5" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
50+
<iframe src="https://www.youtube.com/embed/cVpcjrU4TLI?si=KJrdnYseg-49Km_w" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
5151
</div>
5252
</div>
53-
<div class="col-12">
54-
{{< upcoming-event-card >}}
55-
</div>
5653
</div>
5754
</div>
5855
</div>

content/fr/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ fetchYoutubeVideos: true
4343
</div>
4444
<div class="col-md-5 my-auto">
4545
<div class="video-container">
46-
<iframe src="https://www.youtube.com/embed/kkxRvNP31K8?si=Lmqas3O0XmhzGRL5" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
46+
<iframe src="https://www.youtube.com/embed/cVpcjrU4TLI?si=KJrdnYseg-49Km_w" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
4747
</div>
4848
</div>
4949
</div>

content/ja/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ fetchYoutubeVideos: true
4343
</div>
4444
<div class="col-md-5 my-auto">
4545
<div class="video-container">
46-
<iframe src="https://www.youtube.com/embed/kkxRvNP31K8?si=Lmqas3O0XmhzGRL5" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
46+
<iframe src="https://www.youtube.com/embed/cVpcjrU4TLI?si=KJrdnYseg-49Km_w" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
4747
</div>
4848
</div>
4949
</div>

content/pt-br/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ fetchYoutubeVideos: true
4343
</div>
4444
<div class="col-md-5 my-auto">
4545
<div class="video-container">
46-
<iframe src="https://www.youtube.com/embed/kkxRvNP31K8?si=Lmqas3O0XmhzGRL5" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
46+
<iframe src="https://www.youtube.com/embed/cVpcjrU4TLI?si=KJrdnYseg-49Km_w" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
4747
</div>
4848
</div>
4949
</div>

data/news.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1+
2+
13
- content: "Does your organization want to host InnerSource Summit 2025? Click [here](https://bit.ly/4fchanz) to apply or contact us at [info@innersourcecommons.org](mailto:info@innersourcecommons.org) to find out more"
24
active: true
35
type: "light"
46

5-
- content: "Join us on Tuesday, February 18th, 9am GMT / 10am CET / 2:30pm IST / 8pm AEDT, when Dr. Christian DeFeo and Ben Butcher, from Shell, will discuss [Project Fleming: An Open Source Discovery Tool](https://bit.ly/ISCFeb18)"
7+
- content: "Join us on Tuesday, March 18th, 9am GMT / 10am CET / 2:30pm IST / 8pm AEDT, when Carsten Hoffmann, from DB Systel GmbH, will discuss [InnerSource@DB: A Story About Open Source Practices at Deutsche Bahn](https://bit.ly/ISCMar18)"
68
active: true
79
type: "primary"
810

11+
- content: "Join us on Tuesday, February 18th, 9am GMT / 10am CET / 2:30pm IST / 8pm AEDT, when Dr. Christian DeFeo and Ben Butcher, from Shell, will discuss [Project Fleming: An Open Source Discovery Tool](https://bit.ly/ISCFeb18)"
12+
active: false
13+
type: "primary"
14+
915
- content: "INNERSOURCE SUMMIT 2024 - book your ticket for November 20th and 21st"
1016
url: "https://bit.ly/ISCSUM24"
1117
active: false

0 commit comments

Comments
 (0)