css实现玻璃磨砂背景右侧菜单效果代码

代码语言:html

所属分类:背景

代码描述:css实现玻璃磨砂背景右侧菜单效果代码

代码标签: css 玻璃 磨砂 背景 菜单

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


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

<head>

  <meta charset="UTF-8">
  

  
  
  
  
<style>
@import url('https://fonts.googleapis.com/css2?family=Halant:wght@700&family=Nunito+Sans:wght@300&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  height: 100vh;
  width: 100vw;
  position: relative;
  background-color: #000;
  background-image: linear-gradient(to left, rgba(55,55,55,0.5), #050505);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 16px;
    font-family: 'Halant', serif;
  line-height: 1.5;
}

h1{
  max-width: 60vw;
  font-size: 24px;
  color: #d9dfd9;
  letter-spacing: 0.08rem;
.........完整代码请登录后点击上方下载按钮下载查看

网友评论0