File tree 3 files changed +79
-7
lines changed
components/AchievementCard
3 files changed +79
-7
lines changed Original file line number Diff line number Diff line change 1
1
@use ' src/app/variables' ;
2
2
3
3
@media (max-width : variables .$tablet-width ) {
4
- .container {
4
+ .container {
5
5
margin : 0px 24px ;
6
6
}
7
7
12
12
}
13
13
14
14
@media (min-width : variables .$tablet-width ) {
15
- .container {
15
+ .container {
16
16
margin : auto ;
17
17
max-width : variables .$pages-max-width ;
18
18
}
19
19
20
- .title {
20
+ .title {
21
21
font-size : 2rem ;
22
22
font-weight : bold ;
23
23
margin-left : 55px ;
29
29
background-color : variables .$background-color ;
30
30
}
31
31
32
- .heroBox {
32
+ .heroBox {
33
33
padding-top : 72px ;
34
34
}
35
35
36
- .container {
36
+ .container {
37
37
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 ;
39
79
}
40
80
81
+ .content img {
82
+ width : 100% ;
83
+ }
Original file line number Diff line number Diff line change @@ -23,6 +23,35 @@ export default async function Achievements() {
23
23
/>
24
24
</ div >
25
25
< 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 >
26
55
< h2 className = { style . title } > 参加した大会</ h2 >
27
56
< AchievementList />
28
57
</ div >
Original file line number Diff line number Diff line change 3
3
@media (min-width : variables .$tablet-width ) {
4
4
.link {
5
5
display : flex ;
6
- margin : 32px ;
6
+ margin : 32px 0 ;
7
7
}
8
8
9
9
.imageBox {
You can’t perform that action at this time.
0 commit comments