首页/首页
70 |-
16 |
-
17 |
18 |
19 | - 后台管理 20 |
├── README.md ├── admin ├── logo.png ├── image │ └── g.jpg ├── logo_w.png ├── css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── admin.css │ ├── mip.css │ └── fa │ │ └── font-awesome.min.css ├── js │ ├── lang │ │ └── zh-cn │ │ │ ├── images │ │ │ ├── copy.png │ │ │ ├── music.png │ │ │ ├── upload.png │ │ │ └── localimage.png │ │ │ └── zh-cn.js │ ├── mip-ueditor.min.js │ ├── ueditor.config.js │ └── jquery-3.1.1.min.js ├── index.html └── edit.html └── index ├── logo.png ├── logo_w.png ├── css └── default.css └── login.html /README.md: -------------------------------------------------------------------------------- 1 | #CMLcms 后台操作 默认模板 -------------------------------------------------------------------------------- /admin/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/CMLcmsTemplate/master/admin/logo.png -------------------------------------------------------------------------------- /index/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/CMLcmsTemplate/master/index/logo.png -------------------------------------------------------------------------------- /admin/image/g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/CMLcmsTemplate/master/admin/image/g.jpg -------------------------------------------------------------------------------- /admin/logo_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/CMLcmsTemplate/master/admin/logo_w.png -------------------------------------------------------------------------------- /index/logo_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/CMLcmsTemplate/master/index/logo_w.png -------------------------------------------------------------------------------- /admin/css/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/CMLcmsTemplate/master/admin/css/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /admin/js/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/CMLcmsTemplate/master/admin/js/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /admin/js/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/CMLcmsTemplate/master/admin/js/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /admin/js/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/CMLcmsTemplate/master/admin/js/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /admin/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/CMLcmsTemplate/master/admin/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /admin/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/CMLcmsTemplate/master/admin/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /admin/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/CMLcmsTemplate/master/admin/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /admin/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/CMLcmsTemplate/master/admin/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /admin/js/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodFrm/CMLcmsTemplate/master/admin/js/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /index/css/default.css: -------------------------------------------------------------------------------- 1 | .login-form { 2 | background-color: #FFFFFF; 3 | position: absolute; 4 | top: 50%; 5 | left: 50%; 6 | width: 500px; 7 | margin-top: -100px; 8 | margin-left: -250px; 9 | height: 200px; 10 | border: 1px solid #003366; 11 | padding: 10px; 12 | box-shadow: 0px 0px 5px 0px; 13 | border-radius: 4px; 14 | } 15 | 16 | 17 | .login-logo { 18 | text-align: center; 19 | border-bottom: 1px solid #003366; 20 | } 21 | 22 | .login-logo > .logo { 23 | width: 150px; 24 | } 25 | 26 | .login-input { 27 | text-align: center; 28 | padding: 15px; 29 | } 30 | 31 | .login-input > .text-input { 32 | outline: none; 33 | width: 70%; 34 | height: 25px; 35 | border: 1px solid #666666; 36 | border-radius: 4px; 37 | margin-top: 10px; 38 | padding-left: 4px; 39 | } 40 | 41 | .login-input > .text-input:hover, 42 | .login-input > .text-input:focus{ 43 | border: 1px solid #666666; 44 | box-shadow: 0px 0px 4px #666666; 45 | } 46 | .login-botton{ 47 | border-top: 1px solid #003366; 48 | padding-top: 10px; 49 | } 50 | .login-post{ 51 | 52 | float: right; 53 | } 54 | .login-post > .btn-post{ 55 | border: 0px; 56 | color: #FFFFFF; 57 | min-width: 80px; 58 | min-height: 30px; 59 | background-color: #6a92d4; 60 | outline: none; 61 | } 62 | .login-post > .btn-post:hover{ 63 | background-color: #4479d4; 64 | } 65 | .login-post > .btn-post:active{ 66 | background-color: #1049a9; 67 | } 68 | 69 | .login-msg{ 70 | display: none; 71 | color: #FFFFFF; 72 | text-align: center; 73 | border-radius: 4px; 74 | background-color: rgba(0,0,0,.8); 75 | position: absolute; 76 | top: 50%; 77 | left: 50%; 78 | width: 400px; 79 | margin-top: -15px; 80 | margin-left: -200px; 81 | height: 25px; 82 | } -------------------------------------------------------------------------------- /index/login.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |
18 | 首页/首页
70 |
23 |