Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
gamerinshaft committed May 30, 2015
1 parent fcc8667 commit c379755
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 7 deletions.
61 changes: 60 additions & 1 deletion css/base-layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,21 @@
.hidden-xs{
display: none;
}

.flex-fluid-xs-66{
display: block;
max-width: 66.6%;
flex: 0 0 66.6%;
}
.flex-fluid-xs-33{
display: block;
max-width: 33.3%;
flex: 0 0 33.3%;
}
.flex-fluid-xs-16{
display: block;
max-width: 16.6%;
flex: 0 0 16.6%;
}
.flex-xs-auto{
display: block;
flex: 1;
Expand Down Expand Up @@ -780,6 +794,21 @@
}

@media (min-width: 768px){
.flex-fluid-sm-66{
display: block;
max-width: 66.6%;
flex: 0 0 66.6%;
}
.flex-fluid-sm-33{
display: block;
max-width: 33.3%;
flex: 0 0 33.3%;
}
.flex-fluid-sm-16{
display: block;
max-width: 16.6%;
flex: 0 0 16.6%;
}
.hidden-sm{
display: none;
}
Expand Down Expand Up @@ -890,6 +919,21 @@
}

@media (min-width: 960px){
.flex-fluid-md-66{
display: block;
max-width: 66.6%;
flex: 0 0 66.6%;
}
.flex-fluid-md-33{
display: block;
max-width: 33.3%;
flex: 0 0 33.3%;
}
.flex-fluid-md-16{
display: block;
max-width: 16.6%;
flex: 0 0 16.6%;
}
.hidden-md{
display: none;
}
Expand Down Expand Up @@ -1000,6 +1044,21 @@
}

@media (min-width: 1280px){
.flex-fluid-lg-66{
display: block;
max-width: 66.6%;
flex: 0 0 66.6%;
}
.flex-fluid-lg-33{
display: block;
max-width: 33.3%;
flex: 0 0 33.3%;
}
.flex-fluid-lg-16{
display: block;
max-width: 16.6%;
flex: 0 0 16.6%;
}
.hidden-lg{
display: none;
}
Expand Down
10 changes: 4 additions & 6 deletions css/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ valueに関してはこのようにして取得するイメージ。
```
<div class="row">
<div class="flex flex-lg-5">
<div class="flex flex-lg-auto flex-fluid-sm-33">
<div class="frame z1 card aspectwrapper-2by3">
<div class="content">
<div class="top z2 aspectwrapper-3by2">
Expand Down Expand Up @@ -53,7 +53,7 @@ valueに関してはこのようにして取得するイメージ。
</div>
</div>
</div>
<div class="flex flex-lg-5">
<div class="flex flex-lg-auto flex-fluid-sm-33">
<div class="frame z1 card aspectwrapper-2by3">
<div class="content">
<div class="top z2 aspectwrapper-3by2">
Expand Down Expand Up @@ -82,7 +82,7 @@ valueに関してはこのようにして取得するイメージ。
</div>
</div>
</div>
<div class="flex flex-lg-5">
<div class="flex flex-lg-auto flex-fluid-sm-33">
<div class="frame z1 card aspectwrapper-2by3">
<div class="content">
<div class="top z2 aspectwrapper-3by2">
Expand Down Expand Up @@ -111,7 +111,7 @@ valueに関してはこのようにして取得するイメージ。
</div>
</div>
</div>
<div class="flex flex-lg-5">
<div class="flex flex-lg-auto flex-fluid-sm-33">
<div class="frame z1 card aspectwrapper-2by3">
<div class="content">
<div class="top z2 aspectwrapper-3by2">
Expand Down Expand Up @@ -147,9 +147,7 @@ valueに関してはこのようにして取得するイメージ。
margin: 0 auto;
height: 375px;
min-height: 375px;
max-height: 375px;
width: 235px;
min-width: 235px;
max-width: 235px;
background-color: rgb(249, 37, 113);
}
Expand Down

0 comments on commit c379755

Please sign in to comment.