Skip to content

Commit d5b97cf

Browse files
authored
Merge pull request #9 from kcs1959/yuitof
Update introduction section styles
2 parents bb81eff + fe47e00 commit d5b97cf

File tree

2 files changed

+40
-4
lines changed

2 files changed

+40
-4
lines changed

index.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ <h1>KCS について</h1>
3030

3131
>>>>>>> 239acb37e1bc92cc5b2a8955e52d315ed998183a
3232
</body>
33-
<h1>KCSとは</h1>
34-
<p><b>KCSは慶應義塾大学で唯一のコンピュータサークルであり、日本で最も歴史の長いコンピュータサークルです。個人やグループで興味のある技術の習得や勉強会や、矢上祭や三田祭の展示物の制作が主な活動です。</b></p>
35-
<p><b>多くのメンバーがプログラミングを行っていますが、音楽や3Dモデルの製作も行っています。</b></p>
36-
33+
<div id="introduction">
34+
<h1>KCSとは</h1>
35+
<p><b>KCSは慶應義塾大学で唯一のコンピュータサークルであり、日本で最も歴史の長いコンピュータサークルです。個人やグループで興味のある技術の習得や勉強会や、矢上祭や三田祭の展示物の制作が主な活動です。</b></p>
36+
<p><b>多くのメンバーがプログラミングを行っていますが、音楽や3Dモデルの製作も行っています。</b></p>
37+
</div>
3738
</html>

style.css

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,42 @@
11
* {
22
font-family: "ヒラギノ角ゴシック", "游ゴシック", "メイリオ", Arial, Helvetica, sans-serif;
3+
color: aliceblue;
4+
background-color: black;
5+
}
6+
7+
ul.menu {
8+
display: flex;
9+
justify-content: center;
310
}
411

512
ul.menu li {
613
display: inline;
14+
text-align: center;
15+
margin: 0 2em ;
16+
}
17+
18+
h1 {
19+
text-align: center;
20+
}
21+
22+
#introduction {
23+
width: 80vw;
24+
margin: 0 auto;
25+
padding: 30px;
26+
border-radius: 16px;
27+
background: rgba(255, 255, 255, 0.1);
28+
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
29+
backdrop-filter: blur(12px);
30+
-webkit-backdrop-filter: blur(12px); /* Safari support */
31+
border: 1px solid rgba(255, 255, 255, 0.18);
32+
color: white;
33+
text-align: center;
34+
}
35+
36+
#introduction h1{
37+
background-color: transparent;
38+
}
39+
40+
#introduction p{
41+
background-color: transparent;
742
}

0 commit comments

Comments
 (0)