Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

큰 화면 대응 코드 수정 및 오픈클래서 디자인을 일부 수정한다 #26

Merged
merged 1 commit into from Jan 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
26 changes: 18 additions & 8 deletions docs/css/deveos.css
Expand Up @@ -1109,16 +1109,26 @@
display: none;
}
}
@media screen and (min-width: 1440px){
.container{
max-width: 1531.91px;
font-size: 18px;

@media screen and (min-width: 1440px) {
body {
font-size: 17px;
}
.container {
max-width: 1532px;
}
}
@media screen and (min-width: 1920px){
.container{
max-width: 2042.55px;
font-size: 20px;

@media screen and (min-width: 1920px) {
body {
font-size: 18px;
}
.header .container {
height: 100%;
max-width: 2696px;
}
.container {
max-width: 1702px;
}
}

Expand Down
10 changes: 6 additions & 4 deletions docs/openclass/index.html
Expand Up @@ -97,15 +97,17 @@ <h1 class="text-big color-white">
<h2 class="text-subtitle color-white">
DEVEOS가 준비한 블록체인 입문 오픈클래스를 무료로 만나보세요!
</h2>
<br>
<br>
<!-- <a href="/apply" class="button button-highlight">수강 신청하기</a> -->
</div>
<div class="calHeight" heightRatio="0.3"></div>
<div class="calHeight" heightRatio="0.1250"></div>
</div>
<div class="section background-white">
<div class="v-padding-2"></div>
<div class="container align-center">
<div class="container align-left">
<a id="btn_playlist" class="text-title color-black" href="https://www.youtube.com/watch?v=PRikjbQYHik&list=PLKiLEO_fDdok3nBWsI_ZQL1y_aLrJLhjY"
target="_blank">EOS 개발 입문</a>
<br>
target="_blank" style="text-decoration: none;">EOS 개발 입문</a>&nbsp;&nbsp;
<span class="text-subtitle">
Bryan 마스터
</span>
Expand Down
26 changes: 18 additions & 8 deletions public/css/deveos.css
Expand Up @@ -1109,16 +1109,26 @@
display: none;
}
}
@media screen and (min-width: 1440px){
.container{
max-width: 1531.91px;
font-size: 18px;

@media screen and (min-width: 1440px) {
body {
font-size: 17px;
}
.container {
max-width: 1532px;
}
}
@media screen and (min-width: 1920px){
.container{
max-width: 2042.55px;
font-size: 20px;

@media screen and (min-width: 1920px) {
body {
font-size: 18px;
}
.header .container {
height: 100%;
max-width: 2696px;
}
.container {
max-width: 1702px;
}
}

Expand Down
10 changes: 6 additions & 4 deletions views/openclass.ejs
Expand Up @@ -9,15 +9,17 @@
<h2 class="text-subtitle color-white">
DEVEOS가 준비한 블록체인 입문 오픈클래스를 무료로 만나보세요!
</h2>
<br>
<br>
<!-- <a href="/apply" class="button button-highlight">수강 신청하기</a> -->
</div>
<div class="calHeight" heightRatio="0.3"></div>
<div class="calHeight" heightRatio="0.1250"></div>
</div>
<div class="section background-white">
<div class="v-padding-2"></div>
<div class="container align-center">
<div class="container align-left">
<a id="btn_playlist" class="text-title color-black" href="https://www.youtube.com/watch?v=PRikjbQYHik&list=PLKiLEO_fDdok3nBWsI_ZQL1y_aLrJLhjY"
target="_blank">EOS 개발 입문</a>
<br>
target="_blank" style="text-decoration: none;">EOS 개발 입문</a>&nbsp;&nbsp;
<span class="text-subtitle">
Bryan 마스터
</span>
Expand Down