css西瓜时钟效果代码
代码语言:html
所属分类:布局界面
代码描述:css西瓜时钟效果代码
代码标签: 效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');
*,
*::after,
*::before{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html{
font-size: 62.5%;
}
body{
width: 100%;
min-height: 100vh;
background-color: #FFE6E6;
font-family: 'Poppins', sans-serif;
display: flex;
justify-content: center;
align-items: center;
}
.container{
width: 32rem;
height: 32rem;
/* background-color: #fff; */
display: flex;
justify-content: center;
align-items: center;
position: relative;
background: rgb(23.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0