Skip to content

Instantly share code, notes, and snippets.

@castastrophe
Created May 23, 2017 15:23
Show Gist options
  • Save castastrophe/39d8c406a90886f191b12d724f53bfb4 to your computer and use it in GitHub Desktop.
Save castastrophe/39d8c406a90886f191b12d724f53bfb4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
> 1%
last 2 versions
<div class="region-content">
<h2>Hello World!
</h2>
<div id="block-block-1" class="block">
Lorem Ipsum Uno <a href="http://www.redhat.com">Click me</a>
</div>
<div id="block-block-5" class="block">
Lorem Ipsum Dos <a href="http://www.redhat.com">Click me</a>
</div>
<div id="block-block-7" class="block">
Lorem Ipsum Tres <a>Click me</a>
</div>
<span></span>
</div>
<footer class="footer" id="footer">Copyright 2015</footer>
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
// HTML & CSS QUIZ!
// Solve each objective; use Google if you like!
// Objective #1 Fix any problems this CSS could cause on redhat.com.
// Objective #2 Fix the HTML errors
// Objective #3 Make the code (CSS & HTML) tidy and DRY!
* {
box-sizing: border-box;
}
body {
font-family: helvetica;
}
a {
text-decoration: none;
color: #c00;
}
h1 {
font-size: 15em;
font-weight: bold;
color: red
}
.block {
float: left;
background: #000;
color: white;
padding: 5px;
width: 100%;
}
@media screen and (max-width: 960px) {
.region-content {
width: 1200px;
background-image: url(http://www.redhat.local/profiles/rh/themes/redhatdotcom/img/bkgd/bkgd-ltc-mountains_trees_stream-2000x680.jpg);
background-repeat: no-repeat;
background-position: 0 0;
}
#block-block-7 {
background: #ccc;
}
#block-block-5 {
background: #ccc;
}
#block-block-1 {
background: #ccc;
}
.block {
width: 33%;
margin: 1.5%;
}
}
#footer {
margin: 0 0 0 0;
margin-top: 1em;
}
* {
box-sizing: border-box;
}
body {
font-family: helvetica;
}
a {
text-decoration: none;
color: #c00;
}
h1 {
font-size: 15em;
font-weight: bold;
color: red;
}
.block {
float: left;
background: #000;
color: white;
padding: 5px;
width: 100%;
}
@media screen and (max-width: 960px) {
.region-content {
width: 1200px;
background-image: url(http://www.redhat.local/profiles/rh/themes/redhatdotcom/img/bkgd/bkgd-ltc-mountains_trees_stream-2000x680.jpg);
background-repeat: no-repeat;
background-position: 0 0;
}
#block-block-7 {
background: #ccc;
}
#block-block-5 {
background: #ccc;
}
#block-block-1 {
background: #ccc;
}
.block {
width: 33%;
margin: 1.5%;
}
}
#footer {
margin: 0 0 0 0;
margin-top: 1em;
}
<div class="region-content">
<h2>Hello World!
</h2>
<div id="block-block-1" class="block">
Lorem Ipsum Uno <a href="http://www.redhat.com">Click me</a>
</div>
<div id="block-block-5" class="block">
Lorem Ipsum Dos <a href="http://www.redhat.com">Click me</a>
</div>
<div id="block-block-7" class="block">
Lorem Ipsum Tres <a>Click me</a>
</div>
<span></span>
</div>
<footer class="footer" id="footer">Copyright 2015</footer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment