纯css绘制mac电脑卡通形象

代码语言:html

所属分类:布局界面

代码描述:纯css绘制mac电脑卡通形象

代码标签: mac 电脑 卡通 形象

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
/*
  MIXINS  
*/
/*
  COLORS
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fcc72e;
  display: flex;
  justify-content: center;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20vw;
  height: 100vh;
  min-height: 350px;
  position: relative;
}
.wrapper .rainbow {
  display: flex;
  width: 108px;
  height.........完整代码请登录后点击上方下载按钮下载查看

网友评论0