css实现一个自适应简约的登录注册页面效果代码

代码语言:html

所属分类:表单美化

代码描述:css实现一个自适应简约的登录注册页面效果代码

代码标签: 适应 简约 登录 注册 页面 效果

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

<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/normalize.min.css">
    <style>



        .selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
            visibility: visible !important;
            background: #f2f2f2 !important;
            background: rgba(0, 0, 0, 0.06) !important;
            border: 0 none !important;
            -webkit-box-shadow: inset 0 0 12px 4px #ffffff;
            box-shadow: inset 0 0 12px 4px #ffffff;
        }

        .selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
            content: '!';
            visibility: hidden;
        }

        .selectize-control.plugin-drag_drop .ui-sortable-helper {
            -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .selectize-dropdown-header {
            position: relative;
            padding: 3px 12px;
            border-bottom: 1px solid #d0d0d0;
            background: #f8f8f8;
            -webkit-border-radius: 4px 4px 0 0;
            border-radius: 4px 4px 0 0;
        }

        .selectize-dropdown-header-close {
            position: absolute;
            right: 12px;
            top: 50%;
            color: #333333;
            opacity: 0.4;
            margin-top: -12px;
            line-height: 20px;
            font-size: 20px !important;
        }

        .selectize-dropdown-header-close:hover {
            color: #000000;
        }

        .selectize-dropdown.plugin-optgroup_columns .optgroup {
            border-right: 1px solid #f2f2f2;
            border-top: 0 none;
            float: left;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }

        .selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
            border-right: 0 none;
        }

        .selectize-dropdown.plugin-optgroup_columns .optgroup:before {
            display: none;
        }

        .selectize-dropdown.plugin-optgroup_columns .optgroup-header {
            border-top: 0 none;
        }

        .selectize-control.plugin-remove_button [data-value] {
            position: relative;
            padding-right: 24px !important;
        }

        .selectize-control.plugin-remove_button [data-value] .remove {
            z-index: 1;
            /* fixes ie bug (see #392) */
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 17px;
            text-align: center;
            font-weight: bold;
            font-size: 12px;
            color: inherit;
            text-decoration: none;
            vertical-align: middle;
            display: inline-block;
            padding: 1px 0 0 0;
            border-left: 1px solid transparent;
            -webkit-border-radius: 0 2px 2px 0;
            border-radius: 0 2px 2px 0;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }

        .selectize-control.plugin-remove_button [data-value] .remove:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        .selectize-control.plugin-remove_button [data-value].active .remove {
            border-left-color: transparent;
        }

        .selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
            background: none;
        }

        .selectize-control.plugin-remove_button .disabled [data-value] .remove {
            border-left-color: rgba(77, 77, 77, 0);
        }

        .selectize-control.plugin-remove_button .remove-single {
            position: absolute;
            right: 28px;
            top: 6px;
            font-size: 23px;
        }

        .selectize-control {
            position: relative;
        }

        .selectize-dropdown,
        .selectize-input,
        .selectize-input input {
            color: #333333;
            font-family: inherit;
            font-size: inherit;
            line-height: 20px;
            -webkit-font-smoothing: inherit;
        }

        .selectize-input,
        .selectize-control.single .selectize-input.input-active {
            background: #ffffff;
            cursor: text;
            display: inline-block;
        }

        .selectize-input {
            border: 1px solid rgba(150, 153, 160, 0.5);
            padding: 6px 12px;
            display: inline-block;
            width: 100%;
            overflow: hidden;
            position: relative;
            z-index: 1;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            -webkit-box-shadow: none;
            box-shadow: none;
            -webkit-border-radius: 4px;
            border-radius: 4px;
        }

        ._error .selectize-input,
        .selectize-input._error {
            color: #ec3d49;
            border-color: #ec3d49;
        }

        .selectize-control.multi .selectize-input.has-items {
            padding: 5px 12px 2px;
        }

        .selectize-input.full {
            background-color: #ffffff;
        }

        .selectize-input.disabled,
        .selectize-input.disabled *.........完整代码请登录后点击上方下载按钮下载查看

网友评论0