Forked from Gabi's Pen Flexbox playground.
Forked from Gabi's Pen Flexbox playground.
A Pen by Shaun Hannah on CodePen.
Forked from Gabi's Pen Flexbox playground.
Forked from Gabi's Pen Flexbox playground.
A Pen by Shaun Hannah on CodePen.
<div class="principal"> | |
<h2>Properties for the flex container</h2> | |
<div class="control"> | |
<h4><a href="http://w3.unpocodetodo.info/css3/flex-direction.php">flex-direction</a> <small>( property of the flex container )</small></h4><!--flex-direction: row | row-reverse | column | column-reverse;--> | |
<div class="radio"> | |
<input name="flex-direction" type="radio" class="flex-direction" id="R11" value="row" checked><label for="R11">row:</label> | |
<input name="flex-direction" type="radio" class="flex-direction" id="R12" value="row-reverse"><label for="R12">row-reverse:</label> | |
<input name="flex-direction" type="radio" class="flex-direction" id="R13" value="column"><label for="R13">column:</label> | |
<input name="flex-direction" type="radio" class="flex-direction" id="R14" value="column-reverse"><label for="R14">column-reverse:</label> | |
</div></div> | |
<div class="flex-container" id="direction"> | |
<div class="item" data-color="2a80b9"><p>1</p></div> | |
</div> | |
<div class="control"> | |
<h4><a href="http://w3.unpocodetodo.info/css3/flex-wrap.php">flex-wrap</a> <small>( property of the flex container )</small></h4><!--nowrap | wrap | wrap-reverse;--> | |
<div class="radio"> | |
<input name="flex-wrap" type="radio" class="flex-wrap" id="R21" value="nowrap" checked><label for="R21">nowrap:</label> | |
<input name="flex-wrap" type="radio" class="flex-wrap" id="R22" value="wrap"><label for="R22">wrap:</label> | |
<input name="flex-wrap" type="radio" class="flex-wrap" id="R23" value="wrap-reverse"><label for="R23">wrap-reverse:</label> | |
</div></div> | |
<div class="flex-container" id="wrap"> | |
<div class="item" data-color="2a80b9"><p>1</p></div> | |
</div> | |
<div class="control"> | |
<h4><a href="http://w3.unpocodetodo.info/css3/flex-align-items.php">align-items</a> <small>( property of the flex container )</small></h4><!-- flex-start | flex-end | center | baseline | stretch;--> | |
<div class="radio"> | |
<input name="flex-align-items" type="radio" class="flex-align-items" id="R31" value="align-items-start" ><label for="R31">flex-start:</label> | |
<input name="flex-align-items" type="radio" class="flex-align-items" id="R32" value="align-items-end"><label for="R32">flex-end:</label> | |
<input name="flex-align-items" type="radio" class="flex-align-items" id="R33" value="align-items-center"><label for="R33">center:</label> | |
<input name="flex-align-items" type="radio" class="flex-align-items" id="R34" value="align-items-baseline"><label for="R34">baseline:</label> | |
<input name="flex-align-items" type="radio" class="flex-align-items" id="R35" value="align-items-stretch" checked><label for="R35">stretch:</label> | |
</div></div> | |
<div class="flex-container" id="align"> | |
<div class="item" data-color="2a80b9"><p>1</p></div> | |
</div> | |
<div class="control"> | |
<h4><a href="http://w3.unpocodetodo.info/css3/flex-justify-content.php">justify-content</a> <small>( property of the flex container )</small></h4> <!--justify-content: flex-start | flex-end | center | space-between | space-around; --> | |
<div class="radio"> | |
<input name="justify-content" type="radio" class="justify-content" id="R41" value="justify-start" checked ><label for="R41">flex-start:</label> | |
<input name="justify-content" type="radio" class="justify-content" id="R42" value="justify-end" ><label for="R42">flex-end:</label> | |
<input name="justify-content" type="radio" class="justify-content" id="R43" value="justify-space-between" ><label for="R43">space-between:</label> | |
<input name="justify-content" type="radio" class="justify-content" id="R44" value="justify-center" ><label for="R44">center:</label> | |
<input name="justify-content" type="radio" class="justify-content" id="R45" value="justify-space-around" ><label for="R45">space-around:</label> | |
</div></div> | |
<div class="flex-container" id="justify"> | |
<div class="item" data-color="2a80b9"><p>1</p></div> | |
</div> | |
<!--<p>En <strong>Google Chrome</strong> y <strong>Opera</strong>: problemas al cambiar dinamicamente entre <code>justify-content:space-between</code> y <code>justify-content:space-around</code> </p>--> | |
<div class="control"> | |
<h4><a href="http://w3.unpocodetodo.info/css3/flex-align-content.php">align-content</a> <small>( property of the flex container )</small></h4> <!--justify-content: flex-start | flex-end | center | space-between | space-around; --> | |
<div class="radio"> | |
<input name="align-content" type="radio" class="align-content" id="R51" value="align-content-start" ><label for="R51">flex-start:</label> | |
<input name="align-content" type="radio" class="align-content" id="R52" value="align-content-end" ><label for="R52">flex-end:</label> | |
<input name="align-content" type="radio" class="align-content" id="R53" value="align-content-center" ><label for="R53">center:</label> | |
<input name="align-content" type="radio" class="align-content" id="R54" value="align-content-space-between" ><label for="R54">space-between:</label> | |
<input name="align-content" type="radio" class="align-content" id="R55" value="align-content-space-around" ><label for="R55">space-around:</label> | |
<input name="align-content" type="radio" class="align-content" id="R56" value="align-content-stretch" checked><label for="R56">stretch:</label> | |
</div></div> | |
<div class="flex-container" id="alignContent"> | |
<div class="item" data-color="1bbc9d"><p>1</p></div> | |
</div> | |
</div> | |
<!-- propiedades de los items --> | |
<div class="principal"> | |
<h2>Properties for the flex items </h2> | |
<div class="control"> | |
<h4><a href="http://w3.unpocodetodo.info/css3/flex-align-self.php">align-self</a> <small>( property for flex items )</small></h4> <!--auto | flex-start | flex-end | center | baseline | stretch --> | |
<div class="radio"> | |
<input name="align-self" type="radio" class="align-self" id="R61" value="align-self-auto" checked ><label for="R61">auto:</label> | |
<input name="align-self" type="radio" class="align-self" id="R62" value="align-self-start" ><label for="R62">flex-start:</label> | |
<input name="align-self" type="radio" class="align-self" id="R63" value="align-self-end" ><label for="R63">flex-end:</label> | |
<input name="align-self" type="radio" class="align-self" id="R64" value="align-self-center" ><label for="R64">center:</label> | |
<input name="align-self" type="radio" class="align-self" id="R65" value="align-self-baseline" ><label for="R65">baseline:</label> | |
<input name="align-self" type="radio" class="align-self" id="R66" value="align-self-stretch"><label for="R66">stretch:</label> | |
</div> | |
</div> | |
<div class="flex-container align-items-center column align-items-center justify-center" id="FCI1"> | |
<div class="item" data-color="c1392b" id="alignSelf"><p style="font-size:50px;">3</p></div> | |
</div> | |
<div class="control"> | |
<h4><a href="http://w3.unpocodetodo.info/css3/flex-abreviado.php#flexGrow">flex-grow</a> <small>( property for flex items )</small></h4> <!--auto | flex-start | flex-end | center | baseline | stretch --> | |
<div class="radio"> | |
<span class="nbsp"><label for="R71">elemento 1: </label><input type="number" class="flex-grow" id="R71" min="0" ></span> | |
<span class="nbsp"><label for="R72">elemento 2: </label><input type="number" class="flex-grow" id="R72" min="0" ></span> | |
<span class="nbsp"><label for="R73">elemento 3: </label><input type="number" class="flex-grow" id="R73" min="0" ></span> | |
<span class="nbsp"><label for="R74">elemento 4: </label><input type="number" class="flex-grow" id="R74" min="0" ></span> | |
<span class="nbsp"><label for="R75">elemento 5: </label><input type="number" class="flex-grow" id="R75" min="0" ></span> | |
</div> | |
</div> | |
<div class="flex-container align-items-center" id="FCI2"> | |
<div class="item" id="itemR71" data-color="f49c14"><p>1</p></div> | |
<div class="item" id="itemR72" data-color="d55401"><p>2</p></div> | |
<div class="item" id="itemR73" data-color="c1392b"><p>3</p></div> | |
<div class="item" id="itemR74" data-color="bec3c7"><p>4</p></div> | |
<div class="item" id="itemR75" data-color="808b8d"><p>5</p></div> | |
</div> | |
<div class="control"> | |
<h4><a href="http://w3.unpocodetodo.info/css3/flex-abreviado.php#flexShrink">flex-shrink</a> <small>( property for flex items )</small></h4> <!--auto | flex-start | flex-end | center | baseline | stretch --> | |
<div class="radio"> | |
<span class="nbsp"><label for="R81">elemento 1: </label><input type="number" class="flex-shrink" id="R81" min="0" ></span> | |
<span class="nbsp"><label for="R82">elemento 2: </label><input type="number" class="flex-shrink" id="R82" min="0" ></span> | |
<span class="nbsp"><label for="R83">elemento 3: </label><input type="number" class="flex-shrink" id="R83" min="0" ></span> | |
<span class="nbsp"><label for="R84">elemento 4: </label><input type="number" class="flex-shrink" id="R84" min="0" ></span> | |
<span class="nbsp"><label for="R85">elemento 5: </label><input type="number" class="flex-shrink" id="R85" min="0" ></span> | |
</div> | |
</div> | |
<div class="flex-container align-items-center" id="FCI3"> | |
<div class="item" id="itemR81" data-color="f49c14"><p>1</p></div> | |
<div class="item" id="itemR82" data-color="d55401"><p>2</p></div> | |
<div class="item" id="itemR83" data-color="c1392b"><p>3</p></div> | |
<div class="item" id="itemR84" data-color="bec3c7"><p>4</p></div> | |
<div class="item" id="itemR85" data-color="808b8d"><p>5</p></div> | |
</div> | |
<div class="control"> | |
<h4><a href="http://w3.unpocodetodo.info/css3/flex-abreviado.php">flex</a> <small>( property for flex items )</small></h4> <!--auto | flex-start | flex-end | center | baseline | stretch --> | |
<p>.item { flex: flex-grow [flex-shrink] [flex-basis]; } </p> | |
<table id="flexBasis"> | |
<tr><td>elemento 1</td><td>elemento 2</td></tr> | |
<tr><td><input type="number" class="flex-basis" id="B1" min="0" value="50" ><label for="B1">flex-basis %</label></td><td><input type="number" class="flex-basis" id="B2" min="0" value="50" ><label for="B2">flex-basis %</label></td></tr> | |
<tr><td><input type="number" class="flex-basis-grow" id="G1" min="0" value="0" ><label for="G1">flex-grow</label></td><td><input type="number" class="flex-basis-grow" id="G2" min="0" value="0" ><label for="G2">flex-grow</label></td></tr> | |
<tr><td><input type="number" class="flex-basis-shrink" id="S1" min="0" value="0" ><label for="S1">flex-shrink</label></td><td><input type="number" class="flex-basis-shrink" id="S2" min="0" value="0" ><label for="S2">flex-shrink</label></td></tr> | |
</table> | |
</div> | |
<div class="flex-container align-items-center" id="FCI4"> | |
<div class="item" id="item1" data-color="f49c14"><p>1</p></div> | |
<div class="item" id="item2" data-color="d55401"><p>2</p></div> | |
</div> | |
<div class="control"> | |
<h4><a href="http://w3.unpocodetodo.info/css3/flex-order.php">order</a> <small>( property for flex items )</small></h4> <!--auto | flex-start | flex-end | center | baseline | stretch --> | |
<div class="radio"> | |
<span class="nbsp"><label for="R91">elemento 1: </label><input type="number" class="flex-order" id="R91" min="0" ></span> | |
<span class="nbsp"><label for="R92">elemento 2: </label><input type="number" class="flex-order" id="R92" min="0" ></span> | |
<span class="nbsp"><label for="R93">elemento 3: </label><input type="number" class="flex-order" id="R93" min="0" ></span> | |
<span class="nbsp"><label for="R94">elemento 4: </label><input type="number" class="flex-order" id="R94" min="0" ></span> | |
<span class="nbsp"><label for="R95">elemento 5: </label><input type="number" class="flex-order" id="R95" min="0" ></span> | |
</div> | |
</div> | |
<div class="flex-container align-items-center" id="FCI5"> | |
<div class="item" id="orderR91" data-color="f49c14"><p>1</p></div> | |
<div class="item" id="orderR92" data-color="d55401"><p>2</p></div> | |
<div class="item" id="orderR93" data-color="c1392b"><p>3</p></div> | |
<div class="item" id="orderR94" data-color="bec3c7"><p>4</p></div> | |
<div class="item" id="orderR95" data-color="808b8d"><p>5</p></div> | |
</div> | |
</div> |
function changeFlex(e, t) { | |
for (var n = document.querySelectorAll("." + e), l = document.querySelector("#" + t), r = 0; r < n.length; r++) n[r].addEventListener("change", function() { | |
var e = this.value; | |
l.setAttribute("class", "flex-container " + e) | |
}, !1) | |
} | |
function changeItemFlex(e, t) { | |
for (var n = document.querySelectorAll("." + e), l = document.querySelector("#" + t), r = 0; r < n.length; r++) n[r].addEventListener("change", function() { | |
var e = this.value; | |
l.setAttribute("class", "item " + e) | |
}, !1) | |
} | |
function changeFlexBasis(e, t) { | |
var n = isNaN(e.value) ? 0 : e.value; | |
console.log("B: " + n), document.querySelector("#" + t).style.WebkitFlexBasis = n + "%", document.querySelector("#" + t).style.flexBasis = n + "%" | |
} | |
function changeFlexGrow(e, t) { | |
var n = isNaN(e.value) ? 0 : e.value; | |
console.log("G: " + n), document.querySelector("#" + t).style.WebkitFlexGrow = n, document.querySelector("#" + t).style.flexGrow = n | |
} | |
function changeFlexShrink(e, t) { | |
var n = isNaN(e.value) ? 0 : e.value; | |
console.log("S: " + n), document.querySelector("#" + t).style.WebkitFlexShrink = n, document.querySelector("#" + t).style.flexShrink = n | |
} | |
function changeFlexOrder(e, t) { | |
var n = isNaN(e.value) ? 0 : e.value; | |
console.log("O: " + n), document.querySelector("#" + t).style.WebkitOrder = n, document.querySelector("#" + t).style.order = n | |
} | |
function changeAll(e, t, n, l) { | |
changeFlexBasis(e, l), changeFlexGrow(t, l), changeFlexShrink(n, l) | |
} | |
for (var items = document.querySelectorAll(".item"), i = 0; i < items.length; i++) | |
if (items[i].hasAttribute("data-color")) { | |
var color = items[i].getAttribute("data-color"); | |
items[i].style.backgroundColor = "#" + color | |
} | |
for (var flexO = document.querySelectorAll(".flex-order"), o = 0; o < flexO.length; o++) flexO[o].addEventListener("change", function() { | |
changeFlexOrder(this, "order" + this.id) | |
}, !1); | |
changeFlex("flex-direction", "direction"), changeFlex("flex-wrap", "wrap"), changeFlex("flex-align-items", "align"), changeFlex("justify-content", "justify"), changeFlex("align-content", "alignContent"), changeItemFlex("align-self", "alignSelf"); | |
for (var flexGrow = document.querySelectorAll(".flex-grow"), i = 0; i < flexGrow.length; i++) flexGrow[i].addEventListener("change", function() { | |
var e = "item" + this.id; | |
changeFlexGrow(this, e) | |
}); | |
for (var flexShrink = document.querySelectorAll(".flex-shrink"), j = 0; j < flexShrink.length; j++) flexShrink[j].addEventListener("change", function() { | |
var e = "item" + this.id; | |
changeFlexShrink(this, e) | |
}); | |
var B1 = document.querySelector("#B1"), | |
G1 = document.querySelector("#G1"), | |
S1 = document.querySelector("#S1"), | |
B2 = document.querySelector("#B2"), | |
G2 = document.querySelector("#G2"), | |
S2 = document.querySelector("#S2"); | |
B1.addEventListener("change", function() { | |
changeAll(B1, G1, S1, "item1") | |
}), G1.addEventListener("change", function() { | |
changeAll(B1, G1, S1, "item1") | |
}), S1.addEventListener("change", function() { | |
changeAll(B1, G1, S1, "item1") | |
}), B2.addEventListener("change", function() { | |
changeAll(B2, G2, S2, "item2") | |
}), G2.addEventListener("change", function() { | |
changeAll(B2, G2, S2, "item2") | |
}), S2.addEventListener("change", function() { | |
changeAll(B2, G2, S2, "item2") | |
}); |
//colors | |
$color_alto_approx: #ddd; | |
$color_mine_shaft_approx: #333; | |
$white: white; | |
$web_orange: orange; | |
$color_viking_approx: #57bcdb; | |
$color_geraldine_approx: #ff8080; | |
$color_fuscous_gray_approx: #555; | |
//fonts | |
$font_0: Verdana; | |
$font_1: Geneva; | |
$font_2: sans-serif; | |
//@extend-elements | |
//original selectors | |
//html, body | |
%extend_1 { | |
width: 100%; | |
min-height: 100%; | |
margin: 0; | |
padding: 0; | |
color: $color_alto_approx; | |
font-size: 14px; | |
font-family: $font_0, $font_1, $font_2; | |
background-color: $color_mine_shaft_approx; | |
} | |
.flex-container { | |
border: 1px solid $color_fuscous_gray_approx; | |
display: flex; | |
padding: 20px; | |
width: 80%; | |
&.row { | |
-webkit-flex-direction: row; | |
-ms-flex-direction: row; | |
flex-direction: row; | |
} | |
&.row-reverse { | |
-webkit-flex-direction: row-reverse; | |
-ms-flex-direction: row-reverse; | |
flex-direction: row-reverse; | |
} | |
&.column { | |
-webkit-flex-direction: column; | |
-ms-flex-direction: column; | |
flex-direction: column; | |
} | |
&.column-reverse { | |
-webkit-flex-direction: column; | |
-ms-flex-direction: column; | |
flex-direction: column-reverse; | |
} | |
&.nowrap { | |
-webkit-flex-wrap: nowrap; | |
-ms-flex-wrap: nowrap; | |
flex-wrap: nowrap; | |
} | |
&.wrap { | |
-webkit-flex-wrap: wrap; | |
-ms-flex-wrap: wrap; | |
flex-wrap: wrap; | |
} | |
&.wrap-reverse { | |
-webkit-flex-wrap: wrap-reverse; | |
-ms-flex-wrap: wrap-reverse; | |
flex-wrap: wrap-reverse; | |
} | |
&.align-items-start { | |
-webkit-align-items: flex-start; | |
-ms-flex-align: start; | |
align-items: flex-start; | |
} | |
&.align-items-end { | |
-webkit-align-items: flex-end; | |
-ms-flex-align: end; | |
align-items: flex-end; | |
} | |
&.align-items-center { | |
-webkit-align-items: center; | |
-ms-flex-align: center; | |
align-items: center; | |
} | |
&.align-items-baseline { | |
webkit-align-items: baseline; | |
-ms-flex-align: baseline; | |
align-items: baseline; | |
} | |
&.align-items-stretch { | |
webkit-align-items: stretch; | |
-ms-flex-align: stretch; | |
align-items: stretch; | |
} | |
&.justify-start { | |
-webkit-justify-content: flex-start; | |
-ms-flex-pack: start; | |
justify-content: flex-start; | |
} | |
&.justify-end { | |
-webkit-justify-content: flex-end; | |
-ms-flex-pack: end; | |
justify-content: flex-end; | |
} | |
&.justify-center { | |
-webkit-justify-content: center; | |
-ms-flex-pack: center; | |
justify-content: center; | |
} | |
&.justify-space-between { | |
-webkit-justify-content: space-between; | |
-ms-flex-pack: justify; | |
justify-content: space-between; | |
} | |
&.justify-space-around { | |
-webkit-justify-content: space-around; | |
-ms-flex-pack: justify; | |
justify-content: space-around; | |
} | |
&.align-content-start { | |
-webkit-align-content: flex-start; | |
-ms-flex-line-pack: start; | |
align-content: flex-start; | |
} | |
&.align-content-end { | |
-webkit-align-content: flex-end; | |
-ms-flex-line-pack: end; | |
align-content: flex-end; | |
} | |
&.align-content-center { | |
-webkit-align-content: center; | |
-ms-flex-line-pack: center; | |
align-content: center; | |
} | |
&.align-content-space-between { | |
-webkit-align-content: space-between; | |
-ms-flex-line-pack: justify; | |
align-content: space-between; | |
} | |
&.align-content-space-around { | |
-webkit-align-content: space-around; | |
-ms-flex-line-pack: justify; | |
align-content: space-around; | |
} | |
&.align-content-stretch { | |
-webkit-align-content: stretch; | |
-ms-flex-line-pack: stretch; | |
align-content: stretch; | |
} | |
} | |
.item { | |
margin: 0; | |
display: inherit; | |
padding: 10px; | |
width: 100px; | |
height: 100px; | |
-webkit-align-items: center; | |
-ms-flex-align: center; | |
align-items: center; | |
&.align-self-auto { | |
-webkit-align-self: auto; | |
-ms-flex-item-align: auto; | |
align-self: auto; | |
} | |
&.align-self-start { | |
-webkit-align-self: flex-start; | |
-ms-flex-item-align: start; | |
align-self: flex-start; | |
} | |
&.align-self-end { | |
-webkit-align-self: flex-end; | |
-ms-flex-item-align: end; | |
align-self: flex-end; | |
} | |
&.align-self-center { | |
-webkit-align-self: center; | |
-ms-flex-item-align: center; | |
align-self: center; | |
} | |
&.align-self-baseline { | |
-webkit-align-self: baseline; | |
-ms-flex-item-align: baseline; | |
align-self: baseline; | |
} | |
&.align-self-stretch { | |
-webkit-align-self: stretch; | |
-ms-flex-item-align: stretch; | |
align-self: stretch; | |
} | |
&.flex-grow1 { | |
flex-grow: 1; | |
} | |
&.flex-grow2 { | |
flex-grow: 2; | |
} | |
&.flex-grow3 { | |
flex-grow: 3; | |
} | |
&.flex-grow4 { | |
flex-grow: 4; | |
} | |
p { | |
width: 100%; | |
text-align: center; | |
color: $white; | |
} | |
} | |
html { | |
@extend %extend_1; | |
} | |
body { | |
@extend %extend_1; | |
} | |
* { | |
//Instead of the line below you could use @include box-sizing($bs) | |
box-sizing: border-box; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
.principal { | |
width: calc(50% - 40px); | |
min-width: 525px; | |
margin: 0 20px 20px; | |
float: left; | |
&:last-of-type h4 small { | |
color: $color_geraldine_approx; | |
} | |
} | |
.radio { | |
margin-bottom: 20px; | |
} | |
label { | |
line-height: 200%; | |
} | |
input[type=radio] { | |
color: $white; | |
&:checked + label { | |
color: $web_orange; | |
} | |
} | |
input[type=number] { | |
width: 40px; | |
margin-right: .5em; | |
} | |
h1 { | |
font-size: 200%; | |
margin: 20px; | |
} | |
h2 { | |
font-size: 180%; | |
margin: 0; | |
} | |
h4 { | |
a { | |
font-variant: small-caps; | |
font-size: 120%; | |
color: $color_alto_approx; | |
text-decoration: none; | |
} | |
small { | |
font-variant: normal; | |
font-size: 80%; | |
font-weight: normal; | |
color: $color_viking_approx; | |
} | |
} | |
table { | |
width: 100%; | |
margin-bottom: 1em; | |
td { | |
width: 50%; | |
padding: 3px; | |
} | |
} | |
#wrap { | |
width: 400px; | |
} | |
#align { | |
height: 300px; | |
.item { | |
height: auto; | |
flex-wrap: wrap; | |
} | |
} | |
#justify { | |
margin: 20px 0; | |
padding: 20px 0; | |
} | |
#alignContent { | |
flex-wrap: wrap; | |
height: 600px; | |
.item { | |
height: auto; | |
} | |
} | |
#FCI1 { | |
height: 300px; | |
.item { | |
height: auto; | |
} | |
} | |
.nbsp { | |
white-space: nowrap; | |
} | |
@media only screen and(max-width:1100px) { | |
.principal { | |
width: calc(100% - 40px); | |
} | |
} | |
@media only screen and(max-width:580px) { | |
.item { | |
width: 50px; | |
height: 50px; | |
} | |
.principal { | |
width: calc(100% - 40px); | |
min-width: initial; | |
} | |
.flex-container { | |
width: 100%; | |
min-width: initial; | |
} | |
#wrap { | |
width: 200px; | |
} | |
} | |
#direction .item { | |
flex-wrap: wrap; | |
} | |
#FCI3 .item { | |
width: 25%; | |
} | |
#FCI4 .item { | |
width: 50%; | |
} | |
#FCI5 .item { | |
width: 20%; | |
} |