Skip to content

Commit 03bc758

Browse files
authored
Merge pull request #4 from coderdojo-japan/add-date-to-news
add `date published` to news article
2 parents f9ff7ed + 59f040e commit 03bc758

File tree

1 file changed

+35
-25
lines changed

1 file changed

+35
-25
lines changed

index.html

Lines changed: 35 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -70,24 +70,24 @@
7070
color: #f7f7f7;
7171
padding-top: 0.5em;
7272
padding-bottom: 0.5em;
73-
}
74-
75-
.button {
76-
background-color: #2275ca;
77-
color: #f7f7f7;
78-
border-radius: 0.5em;
79-
border: 1px solid;
80-
padding-left: 1em;
81-
padding-right: 1em;
82-
padding-bottom: 0.5em;
83-
padding-top: 0.5em;
84-
text-decoration: none;
85-
display: inline-block;
86-
}
8773

88-
.button:hover {
89-
background-color: #f7f7f7;
90-
color: #333;
74+
.button {
75+
background-color: #2275ca;
76+
color: #f7f7f7;
77+
border-radius: 0.5em;
78+
border: 1px solid;
79+
padding-left: 1em;
80+
padding-right: 1em;
81+
padding-bottom: 0.5em;
82+
padding-top: 0.5em;
83+
text-decoration: none;
84+
display: inline-block;
85+
86+
&:hover {
87+
background-color: #f7f7f7;
88+
color: #333;
89+
}
90+
}
9191
}
9292

9393
.my-0 {
@@ -118,16 +118,25 @@
118118
max-width: 700px;
119119
font-size: min(22px, 2.7vw);
120120
text-align: left;
121-
}
122121

123-
.news-section h2 {
124-
margin-top: 0;
125-
font-size: 1.2em;
126-
color: #2275ca;
127-
}
122+
h2 {
123+
margin-top: 0;
124+
font-size: 1.2em;
125+
color: #2275ca;
126+
}
127+
128+
ul {
129+
padding-left: 1.2em;
128130

129-
.news-section ul {
130-
padding-left: 1.2em;
131+
time {
132+
font-size: 0.75em;
133+
134+
&::before {
135+
content: '»';
136+
padding-right: 0.25em;
137+
}
138+
}
139+
}
131140
}
132141
</style>
133142
</head>
@@ -148,6 +157,7 @@ <h2>ニュース</h2>
148157
<ul>
149158
<li>
150159
<strong>『DojoCon Japan 2025 プログラミングコンテスト』の開催が決定しました!</strong><br>
160+
<time datetime="2025-07-05">2025-07-05</time><br>
151161
ニンジャの皆さんの作品を広く募集します。ViscuitやScratchなどのプログラミング作品や電子工作、またデジタルアートなどもOK。<br>
152162
優秀作品はDojoCon Japan 2025当日に会場で発表することができます。<br>
153163
詳しくは続報をお待ちください。

0 commit comments

Comments
 (0)