JSFiddle - React, Tailwind, and code Playground
by Love Trivedi
HTML
<div class="grid-container">
<div class="grid-parent yy name-strip zz">
<div class="yellow-pink-border mobile-grid-20 xx"></div>
<div class="green-blue-border mobile-grid-40 xx "></div>
<div class="red-yellow-border mobile-grid-15 xx"></div>
<div class="yellow-pink-border mobile-grid-20 xx"></div>
<div class="green-blue-border mobile-grid-5 xx"></div>
</div>
</div>
CSS
/************************* STYLES *************************/
/* global */
.yellow-red-border {
background-color: yellow;
border: 3px solid red;
}
.yellow-green-border {
}
.yellow-pink-border {
background-color: yellow;
border: 3px solid pink;
}
.orange-pink-border {
background-color: orange;
border: 3px solid pink;
}
.red-yellow-border {
background-color: red;
border: 3px solid yellow;
}
.green-blue-border {
background-color: green;
border: 3px solid blue;
}
.xx {
height: 100%;
}
.yy {
}
.one {
background-color: #fff;
color: red;
}
.two {
background-color: grey;
color: black;
}
.three {
background-color: purple;
color: yellow;
}
.four {
background-color: black;
color: white;
}
.five {
background-color: pink;
color: green;
}
.six {
background-color: yellow;
color: black;
}
.seven {
background-color: orange;
color: white;
}
.eight {
background-color: green;
color: orange;
}
.nine {
background-color: blue;
color: #fff;
}
/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table...