Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css cloud shape

.cloud {
  height: 30vw;
  width: 90vw;
  background: lightgray;
  border-radius: 40vw;
  border: 5px solid black;
  position: relative;
  margin-top: 20vw;
}
.cloud:before {
  content: "";
  position: absolute;
  top: -10vw;
  box-sizing: border-box;
  height: 20vw;
  width: 20vw;
  left: 15vw;
  border-radius: 50%;
  border: 5px solid black;
  border-bottom-color: transparent;
  border-right-color: transparent;
  background: lightgray;
  transform: rotate(40deg);
}
.cloud:after {
  content: "";
  position: absolute;
  height: 40vw;
  width: 40vw;
  top: -20vw;
  left: 32vw;
  border-radius: 50%;
  box-sizing: border-box;
  border: 5px solid black;
  border-bottom-color: transparent;
  background: lightgray;
  border-right-color: transparent;
  transform: rotate(55deg);
}
Comment

PREVIOUS NEXT
Code Example
Css :: css hover rounded corners 
Css :: mixin parameters 
Css :: css line height 
Css :: transition behaviour in css 
Css :: css animation-fill-mode 
Css :: Unable to locate package neo4j 
Css :: padding block 
Css :: linear gradient in css 
Css :: css when i add a border radius to input problem 
Css :: nativescript hr 
Css :: firefox-scroll-css 
Css :: css radial gradients 
Css :: waves css 
Css :: border for text in html 
Css :: calculate using n nth-child 
Css :: box shadow example 
Css :: css font style 
Css :: trim background image css 
Css :: fonts from google fonts do not work 
Css :: css width percentage 
Css :: how to use hr lines in a class css 
Css :: css keep aspect ratio image 
Css :: css make background image repeat vertically 
Css :: easyui datagrid header field color 
Css :: flexbox froggy 
Css :: css icon 
Css :: postion on window top css 
Css :: screen sizes for css media 
Css :: datepicker not select future date odoo 13 
Css :: eliminate render-blocking resources css 
ADD CONTENT
Topic
Content
Source link
Name
7+3 =