section
div class="wrapper"
div class="circle"
div class="cloud"
div class="cloud"
div class="cloud"
div class="background-one"
div class="house white"
div class="house red"
div class="house whey"
div class="house wheyl"
div class="background-two"
div class="bagde-one"
| UX
span BELGRADE
div class="bagde-two" October 20 @ 5px // KC Grad
View Compiled
$background-base-color: #6AC3B1;
$dark-factor: 8;
body {
font-family: Gill Sans,Gill Sans MT,Calibri,sans-serif;
font-weight: bold;
}
section {
float: left;
width: 360px;
margin: 0 auto;
overflow: hidden;
}
.circle {
background-color: $background-base-color;
width: 300px;
height: 300px;
border-radius: 50%;
margin: 0 auto;
}
.bagde-one {
background-color: $background-base-color;
color: #fff;
border-radius: 0.2em;
margin-top: -100px;
padding: 10px;
font-size: 2.7em;
text-indent: -4px;
text-color: #fff;
text-align: center;
color: #fff;
span {
position: relative;
background: white;
border-radius: 0.1em;
color: $background-base-color;
padding: 0 2px;
line-height: 0;
left: 4px;
&:before {
position: absolute;
left: -14px;
top: 14px;
margin-left: -5px;
width: 0;
border-right: 10px solid #fff;
border-bottom: 10px solid transparent;
border-left: 10px solid transparent;
border-top: 10px solid transparent;
content: " ";
font-size: 0;
z-index: 9999;
}
}
}
.bagde-two {
font-weight: normal;
text-align: center;
background-color: darken($background-base-color, $dark-factor);
color: #fff;
width: 15em;
line-height: 3;
border-radius: 0 0 1.5em 1.5em;
margin: -20px auto;
font-size: 1em;
}
$cloud-size: 1em;
.cloud,
.cloud:after,
.cloud:before {
content: "";
border-radius: $cloud-size;
background-color: gray;
position: absolute;
width: inherit;
height: inherit;
}
.cloud {
display: inline-block;
position: relative;
width: $cloud-size*5;
height: $cloud-size;
position: relative;
opacity: random(9) / 9;
&:before {
width: $cloud-size*4;
height: $cloud-size;
top: -$cloud-size/2;
right: $cloud-size/2;
}
&:after {
width: $cloud-size*3.5;
height: $cloud-size;
top: $cloud-size/2;
left: $cloud-size/1.4;
}
//do the math ....
//note arc, cloud size...
&:first-of-type{
top: random(40) + px;
left: random(30) + px;
}
&:nth-of-type(2){
top: random(49) - 20 + px;
left: random(29) + 30 + px;
}
//fix bug last of type scss core
&:nth-of-type(3){
top: random(29) + 20 + px;
right: random(9) - 24 + px;
}
}
//**util ignore
//centering
div {
margin: 120px auto 20px;
}
$house-size: 1em;
.background-one {
margin: 0 !important;
}
.house {
width: $house-size*3.5;
height: $house-size;
background: red;
}
article { float: left; }
h1 { color: $background-base-color }
ul {
background: $background-base-color;
border-radius: 1.5em 1.5em 1.5em 1.5em;
list-style: none;
padding: 15px;
color: #fff;
}
View Compiled
This Pen doesn't use any external CSS resources.