Skip to content

Commit

Permalink
summary
Browse files Browse the repository at this point in the history
  • Loading branch information
juliecogley committed Mar 13, 2024
1 parent 63b833e commit cde086c
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 3 deletions.
1 change: 1 addition & 0 deletions common.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ src:
font-family: "Shippori Mincho", serif;
font-weight: 400;
font-style: normal;
color: #212427;
}

html {
Expand Down
56 changes: 55 additions & 1 deletion profile.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

#nav-open{
top: -144px;

}
.section-works1__title {
max-width: 327px;
Expand Down Expand Up @@ -46,6 +45,29 @@ color: rgba(0, 0, 0, 0.50);
padding-top: 24px;
}



/*画面サイズ1060以上での指定*/
@media (min-width: 1060px) {
.section-profile__name{
display: flex;
align-items: center;
padding: 0 105px;
}

.section-profile__name-text h2{
font-size: 2.0rem;
line-height: 1.0rem;

}
.section-profile__name p{

font-size: 1.8rem;

}


}
.section-works1__image-body {
width: 310px;
height: 210px;
Expand Down Expand Up @@ -106,6 +128,38 @@ margin: 40px 0;
}


/*画面サイズ1060以上での指定*/
@media (min-width: 1060px) {
.section-profile{
max-width: 1060px;
/*327px+24+24=375px*/
display: flex;
padding: 0 105px;
justify-content: space-between;
flex-wrap: nowrap;
gap: 35px;
}
.section-profile_wrapper1,.section-profile_wrapper2{
max-width: 560px;
text-wrap: wrap;
width: 50%;

}
.section-profile_wrapper1{
border-right: 1px solid #333;
padding-right: 35px;
}
/*.section-profile__aboutme,.section-profile__exhibition,.section-profile__biography{
width: 375px;
}*/
.section-profile__aboutme,.section-profile__exhibition,.section-profile__biography{
border:none

}



}



Expand Down
9 changes: 7 additions & 2 deletions profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<section class="section-profile__name">
<div class="section-profile__name-text">
<h1>中原 菜海</h1>
<h2>なかはら  な  み</h2>
<h2>なかはら  み</h2>
<p>美術家</p>
</div>
<div class=section-profile__image-body>
Expand All @@ -79,6 +79,7 @@ <h2>なかはら  な  み</h2>
</section>

<section class="section-profile">
<section class="section-profile_wrapper1">
<div class="section-profile__aboutme">
<h2>わたしについて</h2>
<p>
Expand All @@ -97,12 +98,16 @@ <h2>グループ展</h2>
<div>2021年10月   つづく展<br/><br/>2022年1月   オウライ展<br/><br/>2022年9月   夏のオアシス展<br/><br/>2022年11月   彫刻の五七五<br/><br/>2023年9月   夏のオアシス展 vol.2<br/><br/>2023年12月   彫刻の五七五<br/><br/>2024年2月   卒業作品展
</div>
</div>

</section>

<section class="section-profile_wrapper2">
<div class="section-profile__biography">
<h2>略歴</h2>
<div>
2020年4月<br/>沖縄県立芸術大学入学<br/><br/>2020年9月<br/>令和2年度前期彫刻専攻・専修成果展<br/>(沖縄県立芸術大学附属図書・芸術資料館/沖縄)<br/><br/>2021年2月<br/>令和2年度後期彫刻専攻・専修成果展<br/><br/>2021年8月<br/>令和3年度前期彫刻専攻・専修成果展<br/><br/>2021年10月<br/>つづく展(ギャラリーACUOT/沖縄)<br/>ギャラリーオープニングイベントにてライブドローイング<br/><br/>2022年1月<br/>喜四萬弥・中原菜海二人展「オウライ展」<br/>(沖縄県立芸術大学附属図書・芸術資料館/沖縄)<br/><br/>2022年2月<br/>令和3年度後期彫刻専攻・専修成果展<br/><br/>2022年8月<br/>令和4年度前期彫刻専攻・専修成果展<br/><br/>2022年9月<br/>YuiArts主催「夏のオアシス展」(ギャラリーACUOT/沖縄)<br/>ワークショップ「夏の思い出オブジェづくり」の企画・開催<br/><br/>2022年10月<br/>浦添市立中央公民館アンチエイジングプロジェクト<br/>「玄関掲示板に彩を」(浦添市中央公民館/沖縄)<br/>県内の中高生対象を対象としたワークショップ<br/><br/>2022年11月<br/>グループ展「彫刻の五七五-かたちで詠むティダカンカン-」<br/>(那覇市民ギャラリー・キャンプタルガニー/沖縄)<br/><br/>2022年12月<br/>グループ展「WithArtーアートとともにある未来を vol.2」<br/>(パレットくもじ/沖縄)<br/><br/>2023年2月<br/>令和4年度後期彫刻専攻・専修成果展<br/><br/>2023年8月<br/>令和5年度前期彫刻専攻・専修成果展<br/><br/>2023年9月<br/>「夏のオアシス展 vol.2」<br/>(ギャラリーACUOT/沖縄)<br/><br/>2023年12月<br/>グループ展「彫刻の五七五-かたちで詠むミーニシ吹く頃-」<br/>(那覇市民ギャラリー/沖縄)<br/></div>
</div>
</section>

</section>
</main>
<footer class="footer">
Expand Down

0 comments on commit cde086c

Please sign in to comment.