Skip to content

Commit e9730e9

Browse files
Merge pull request #110 from saitamau-maximum/docs/qualification
2 parents 9a8ed44 + ee37257 commit e9730e9

File tree

3 files changed

+79
-7
lines changed

3 files changed

+79
-7
lines changed

src/app/achievements/list-styles.module.scss

+49-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@use 'src/app/variables';
22

33
@media (max-width: variables.$tablet-width) {
4-
.container{
4+
.container {
55
margin: 0px 24px;
66
}
77

@@ -12,12 +12,12 @@
1212
}
1313

1414
@media (min-width: variables.$tablet-width) {
15-
.container{
15+
.container {
1616
margin: auto;
1717
max-width: variables.$pages-max-width;
1818
}
1919

20-
.title{
20+
.title {
2121
font-size: 2rem;
2222
font-weight: bold;
2323
margin-left: 55px;
@@ -29,12 +29,55 @@
2929
background-color: variables.$background-color;
3030
}
3131

32-
.heroBox{
32+
.heroBox {
3333
padding-top: 72px;
3434
}
3535

36-
.container{
36+
.container {
3737
background-color: #F1F1F1;
38-
padding: 88px 0 103px;
38+
padding: 40px 16px 103px;
39+
}
40+
41+
.content {
42+
width: 100%;
43+
margin: 0 auto;
44+
}
45+
46+
.content table {
47+
width: 100%;
48+
border-collapse: separate;
49+
border-spacing: 1px;
50+
}
51+
52+
.content table thead {
53+
background-color: #04781e;
54+
color: #ffffff;
55+
}
56+
57+
.content table thead th {
58+
font-weight: medium;
59+
font-size: 1.125rem;
60+
padding: 10px;
61+
}
62+
63+
.content table tbody th {
64+
font-size: 1.25rem;
65+
}
66+
67+
.content table tbody td {
68+
font-size: 1.125rem;
69+
padding: 4px;
70+
text-align: center;
71+
}
72+
73+
.content table tbody tr:nth-child(even) {
74+
background-color: #d9d9d9;
75+
}
76+
77+
.content table tbody tr:nth-child(odd) {
78+
background-color: #ececec;
3979
}
4080

81+
.content img {
82+
width: 100%;
83+
}

src/app/achievements/page.tsx

+29
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,35 @@ export default async function Achievements() {
2323
/>
2424
</div>
2525
<div className={style.container}>
26+
<h2 className={style.title}>保有資格</h2>
27+
<div className={style.content}>
28+
<p>
29+
当サークルの部員が現在保有している資格について記載します。(2024年9月時点)
30+
</p>
31+
32+
<table>
33+
<thead>
34+
<tr>
35+
<th>資格名</th>
36+
<th>保有人数</th>
37+
</tr>
38+
</thead>
39+
<tbody>
40+
<tr>
41+
<td>情報処理安全確保支援士(登録セキスペ)</td>
42+
<td>1名</td>
43+
</tr>
44+
<tr>
45+
<td>応用情報技術者</td>
46+
<td>7名</td>
47+
</tr>
48+
<tr>
49+
<td>基本情報技術者</td>
50+
<td>3名</td>
51+
</tr>
52+
</tbody>
53+
</table>
54+
</div>
2655
<h2 className={style.title}>参加した大会</h2>
2756
<AchievementList />
2857
</div>

src/components/AchievementCard/AchievementCard.module.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@media (min-width: variables.$tablet-width) {
44
.link{
55
display: flex;
6-
margin: 32px;
6+
margin: 32px 0;
77
}
88

99
.imageBox{

0 commit comments

Comments
 (0)