@@ -9,54 +9,59 @@ <h2 class="text-4xl text-center">
9
9
< span class ="block mt-5 text-2xl "> SPONSOR</ span >
10
10
</ h2 >
11
11
12
- < h3 class ="text-2xl mt-10 mx-8 text-center mb-4 "> ゴールドスポンサー
12
+ < h3 class ="text-2xl mt-20 mx-8 text-center mb-4 "> ゴールドスポンサー
13
13
< span class ="block text-base mt-1 "> GOLD SPONSOR</ span >
14
14
</ h3 >
15
-
16
15
< div class ="flex justify-center flex-wrap gap-x-8 px-8 max-w-3xl w-full mx-auto ">
17
16
{% for sponsor in gold_sponsors %}
18
- < div class ="w-full mb-5 ">
19
- {% comment %} < img class ="w-full mx-auto mb-3 " src ="{{ sponsor.logo }} " alt ="{{ sponsor.name | strip_html }}のロゴ "> {% endcomment %}
20
- < p class ="w-full text-center break-keep text-3xl "> {{ sponsor.name }}</ p >
21
- </ div >
17
+ < div class ="w-full flex flex-col mb-5 ">
18
+ < div class ="flex-grow w-full flex items-center justify-center ">
19
+ < img class ="w-full mx-auto mb-3 " src ="{{ sponsor.logo }} " alt ="{{ sponsor.name | strip_html }}のロゴ ">
20
+ </ div >
21
+ </ div >
22
22
{% endfor %}
23
23
</ div >
24
24
25
- < h3 class ="text-2xl mt-10 mx-8 text-center mb-4 "> シルバースポンサー
25
+ < h3 class ="text-2xl mt-20 mx-8 text-center mb-4 "> シルバースポンサー
26
26
< span class ="block text-base mt-1 "> SILVER SPONSOR</ span >
27
27
</ h3 >
28
28
29
29
< div class ="flex justify-center flex-wrap gap-x-8 px-8 max-w-3xl mx-auto ">
30
30
{% for sponsor in silver_sponsors %}
31
- < div class ="_max-w-[500px] w-full mb-5 ">
32
- {% comment %} < img class ="w-full mx-auto mb-3 " src ="{{ sponsor.logo }} " alt ="{{ sponsor.name | strip_html }}のロゴ "> {% endcomment %}
33
- < p class ="w-full text-center break-keep text-3xl "> {{ sponsor.name }}</ p >
31
+ < div class ="max-w-[{{500 | times:sponsor.logo_scale | round}}px] w-full flex flex-col mb-5 ">
32
+ < div class ="flex-grow w-full flex items-center justify-center ">
33
+ < img class ="w-full mx-auto mb-3 " src ="{{ sponsor.logo }} " alt ="{{ sponsor.name | strip_html }}のロゴ ">
34
+ </ div >
34
35
</ div >
35
36
{% endfor %}
36
37
</ div >
37
38
38
- < h3 class ="text-2xl mt-10 mx-8 text-center mb-4 "> ブロンズスポンサー
39
+ < h3 class ="text-2xl mt-20 mx-8 text-center mb-4 "> ブロンズスポンサー
39
40
< span class ="block text-base mt-1 "> BRONZE SPONSOR</ span >
40
41
</ h3 >
41
42
42
43
< div class ="flex justify-center flex-wrap gap-x-8 px-8 max-w-3xl mx-auto ">
43
44
{% for sponsor in bronze_sponsors %}
44
- < div class ="_max-w-[300px] w-full mb-5 ">
45
- {% comment %} < img class ="w-full mx-auto mb-3 " src ="{{ sponsor.logo }} " alt ="{{ sponsor.name | strip_html }}のロゴ "> {% endcomment %}
46
- < p class ="text-center break-keep text-3xl "> {{ sponsor.name }}</ p >
45
+ < div class ="max-w-[{{300 | times:sponsor.logo_scale | round}}px] w-full flex flex-col mb-5 ">
46
+ < div class ="flex-grow w-full flex items-center justify-center ">
47
+ < img class ="w-full mx-auto mb-3 " src ="{{ sponsor.logo }} " alt ="{{ sponsor.name | strip_html }}のロゴ ">
48
+ </ div >
47
49
</ div >
48
50
{% endfor %}
49
51
</ div >
50
52
51
- < h3 class ="text-2xl mt-10 mx-8 text-center mb-4 "> インカインドスポンサー
53
+ < h3 class ="text-2xl mt-20 mx-8 text-center mb-4 "> インカインドスポンサー
52
54
< span class ="block text-base mt-1 "> IN-KIND SPONSOR</ span >
53
55
</ h3 >
54
56
55
- < div class ="flex justify-center flex-wrap gap-x-8 px-8 max-w-3xl mx-auto ">
57
+ < div class ="flex justify-center flex-wrap gap-x-8 gap-y-10 px-8 max-w-3xl mx-auto ">
56
58
{% for sponsor in inkind_sponsors %}
57
- < div class ="_max-w-[270px] w-full mb-5 ">
58
- {% comment %} < img class ="w-full mx-auto mb-3 " src ="{{ sponsor.logo }} " alt ="{{ sponsor.name | strip_html }}のロゴ "> {% endcomment %}
59
- < p class ="w-full text-center break-keep text-3xl "> {{ sponsor.name }}</ p >
59
+ < div class ="max-w-[{{270 | times:sponsor.logo_scale | round}}px] w-full flex flex-col ">
60
+ < div class ="flex-grow w-full flex items-center justify-center ">
61
+ < img class ="w-full mx-auto mb-3 " src ="{{ sponsor.logo }} " alt ="{{ sponsor.name + "( "+ sponsor.tool +")" | strip_html }}のロゴ">
62
+ </ div >
63
+ < p class ="w-full text-center break-keep "> {{ sponsor.tool }}< wbr > のご提供</ p >
60
64
</ div >
61
65
{% endfor %}
62
66
</ div >
67
+
0 commit comments