papercss实现手写手绘风格的按钮悬浮阴影效果代码

代码语言:html

所属分类:布局界面

代码描述:papercss实现手写手绘风格的按钮悬浮阴影效果代码

代码标签: paper css 手写 手绘 风格 按钮 悬浮 阴影

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

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  

<link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/paper.css">
  
  
<style>
@import url(https://fonts.googleapis.com/css?family=Patrick+Hand+SC);
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F0F0D8;
  font-family: "Patrick Hand SC", cursive;
}
html h1, body h1 {
  margin-top: -5rem;
  text-align: center;
  color: #41403E;
  font-size: 3rem;
}
html section, body section {
  display: flex;
  flex-directio.........完整代码请登录后点击上方下载按钮下载查看

网友评论0