css布局实现一个电视tv列表及详情页效果代码
代码语言:html
所属分类:布局界面
代码描述:css布局实现一个电视tv列表及详情页效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/reset.min.css"> <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto:100,300,400'> <style> /*-------------------- Body --------------------*/ *, *::before, *::after { box-sizing: border-box; } body { height: 100vh; margin: 0; background: radial-gradient(ellipse farthest-corner at center top, #ffee75, #ff8930); color: #8b9095; font-size: 14px; font-family: 'Roboto', sans-serif; } /*-------------------- App --------------------*/ .app { position: relative; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); width: 640px; height: 390px; background: #fff; border-radius: 15px; box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2); } .app h2 { color: #525661; font-size: 17px; box-shadow: inset 0 1px 0px rgba(0, 0, 0, 0.1); padding: 20px 28px 0; margin: -6px 0 0 0; } /*-------------------- Header --------------------*/ header { padding: 30px; position: relative; height: 70px; } header h1 { position: relative; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); font-size: 20px; text-transform: uppercase; text-align: center; color: #1c222b; } header h1 strong { background: #F16018; color: #fff; display: inline-block; border-radius: 30px; padding: 6px; font-size: 83%; line-height: 1; position: relative; top: -1px; left: 2px; } header nav { cursor: pointer; width: 18px; height: 18px; position: absolute; top: 28px; left: 28px; } header nav::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: #363a47; border-radius: 2px; box-shadow: 0 5px 0 #363a47, 0 10px 0 #363a47; } header .search { position: absolute; top: 26px; right: 18px; cursor: pointer; } header .search svg { width: 20px; height: 20px; } /*-------------------- Movies --------------------*/ .movies { display: -webkit-box; display: flex; padding: 8px 18px; } .movies .movie { padding: 10px; cursor: pointer; } .movies .movie .poster { width: 100%; margin-bottom: 6px; border-ra.........完整代码请登录后点击上方下载按钮下载查看
网友评论0