add new sounds && refactor && new bg images && form redesigns
This commit is contained in:
@@ -1,203 +1,136 @@
|
||||
::-webkit-input-placeholder {
|
||||
color: #888982;
|
||||
}
|
||||
|
||||
::-moz-placeholder {
|
||||
color: #888982;
|
||||
}
|
||||
|
||||
:-ms-input-placeholder {
|
||||
color: #888982;
|
||||
}
|
||||
|
||||
:-moz-placeholder {
|
||||
color: #888982;
|
||||
}
|
||||
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
*,
|
||||
*:after,
|
||||
*::before {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
main {
|
||||
background: url('/bundles/mineseeker/images/homepage/header.jpg') no-repeat center center;
|
||||
background-size: cover;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
main > div {
|
||||
background: rgba(52, 73, 94, 0.9);
|
||||
}
|
||||
|
||||
main .form {
|
||||
/*border-top: 2px solid #3498db;*/
|
||||
}
|
||||
|
||||
main .checkbox {
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
.fb-login {
|
||||
display: block;
|
||||
background: #1a6190;
|
||||
font: bold 22px 'Gloria Hallelujah', cursive;
|
||||
text-align: center;
|
||||
color: #2c3e50;
|
||||
padding: 15px 20px;
|
||||
margin: 20px;
|
||||
|
||||
-webkit-transition: all 250ms cubic-bezier(0, 0.25, 0.5, 1);
|
||||
transition: all 250ms cubic-bezier(0, 0.25, 0.5, 1);
|
||||
}
|
||||
|
||||
.fb-login:hover {
|
||||
background: #FFFFFF;
|
||||
text-decoration: none;
|
||||
color: #3498db;
|
||||
|
||||
-webkit-transition: all 250ms cubic-bezier(0, 0.25, 0.5, 1);
|
||||
transition: all 250ms cubic-bezier(0, 0.25, 0.5, 1);
|
||||
}
|
||||
|
||||
/** input */
|
||||
|
||||
.input {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
display: inline-block;
|
||||
max-width: 350px;
|
||||
width: calc(100% - 2em);
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.input__field {
|
||||
position: relative;
|
||||
display: block;
|
||||
float: right;
|
||||
padding: 0.8em;
|
||||
width: 60%;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
background: #f0f0f0;
|
||||
color: #aaa;
|
||||
font-weight: 400;
|
||||
font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
-webkit-appearance: none; /* for box shadows to show on iOS */
|
||||
}
|
||||
|
||||
.input__field:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.input__label {
|
||||
display: inline-block;
|
||||
float: right;
|
||||
padding: 0 1em;
|
||||
width: 40%;
|
||||
color: #696969;
|
||||
font-weight: bold;
|
||||
font-size: 70.25%;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.input__label-content {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding: 1.6em 0;
|
||||
main .wrapper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.graphic {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
fill: none;
|
||||
}
|
||||
|
||||
.icon {
|
||||
color: #ddd;
|
||||
font-size: 150%;
|
||||
}
|
||||
|
||||
/* Kozakura */
|
||||
.input--kozakura {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.input__field--kozakura {
|
||||
background: transparent;
|
||||
width: 100%;
|
||||
font-size: 1.55em;
|
||||
color: #2F3238;
|
||||
border-bottom: 1px solid #3498db;
|
||||
padding: 0.25em 0.5em;
|
||||
margin-top: 1.25em;
|
||||
margin-bottom: 0.5em;
|
||||
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.input__label--kozakura {
|
||||
width: 100%;
|
||||
text-align: left;
|
||||
position: absolute;
|
||||
top: 1em;
|
||||
pointer-events: none;
|
||||
overflow: hidden;
|
||||
padding: 0 0.25em;
|
||||
-webkit-transform: translate3d(1em, 2.75em, 0);
|
||||
transform: translate3d(1em, 2.75em, 0);
|
||||
-webkit-transition: -webkit-transform 0.3s;
|
||||
transition: transform 0.3s;
|
||||
}
|
||||
|
||||
.input__label-content--kozakura {
|
||||
color: #FFFFFF;
|
||||
padding: 0.4em 0 0.25em;
|
||||
-webkit-transition: -webkit-transform 0.3s;
|
||||
transition: transform 0.3s;
|
||||
}
|
||||
|
||||
.input__label-content--kozakura::after {
|
||||
content: attr(data-content);
|
||||
position: absolute;
|
||||
font-weight: 800;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
main .wrapper .form-container {
|
||||
background: #ffffff;
|
||||
display: table;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
main .wrapper .form-container h1 {
|
||||
font: normal 32px Arial, Helvetica, sans-serif;
|
||||
text-align: center;
|
||||
padding: 0;
|
||||
margin: 0 0 15px 0;
|
||||
}
|
||||
|
||||
main .wrapper .form-container h1.sub-title {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
main .wrapper .form-container h2 {
|
||||
font: normal 18px Arial, Helvetica, sans-serif;
|
||||
text-align: center;
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
main .wrapper .form-container .form-input {
|
||||
background: #cbcbc8;
|
||||
min-width: 300px;
|
||||
border: 0;
|
||||
padding: 15px;
|
||||
|
||||
-webkit-transition: all 250ms ease-in-out;
|
||||
transition: all 250ms ease-in-out;
|
||||
}
|
||||
|
||||
main .wrapper .form-container .form-input:focus {
|
||||
background: #e2e2de;
|
||||
|
||||
-webkit-transition: all 250ms ease-in-out;
|
||||
transition: all 250ms ease-in-out;
|
||||
}
|
||||
|
||||
main .wrapper .form-container .form-input.form-username {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
main .wrapper .form-container .form-check {
|
||||
display: table;
|
||||
position: relative;
|
||||
margin: 20px auto 0 auto;
|
||||
}
|
||||
|
||||
main .wrapper .form-container .input-submit {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
main .wrapper .form-container button,
|
||||
main .wrapper .form-container .fb-login {
|
||||
display: block;
|
||||
background: #7dadcf;
|
||||
width: 100%;
|
||||
color: #fff;
|
||||
padding: 0.25em 0;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
font-size: 0.85em;
|
||||
border: 0;
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
|
||||
-webkit-transition: all 250ms ease-in-out;
|
||||
transition: all 250ms ease-in-out;
|
||||
}
|
||||
|
||||
.graphic--kozakura {
|
||||
fill: #2c3e50;
|
||||
pointer-events: none;
|
||||
top: 1em;
|
||||
bottom: 0;
|
||||
height: 4.5em;
|
||||
z-index: -1;
|
||||
-webkit-transition: -webkit-transform 0.7s, fill 0.7s;
|
||||
transition: transform 0.7s, fill 0.7s;
|
||||
-webkit-transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
|
||||
transition-timing-function: cubic-bezier(0, 0.25, 0.5, 1);
|
||||
main .wrapper .form-container .fb-login {
|
||||
background: #3b5998;
|
||||
}
|
||||
|
||||
.input__field--kozakura:focus,
|
||||
.input--filled .input__field--kozakura {
|
||||
-webkit-transition: opacity 0s 0.35s;
|
||||
transition: opacity 0s 0.35s;
|
||||
opacity: 1;
|
||||
main .wrapper .form-container button:focus,
|
||||
main .wrapper .form-container button:hover,
|
||||
main .wrapper .form-container .fb-login:focus,
|
||||
main .wrapper .form-container .fb-login:hover {
|
||||
background: #6fa0c3;
|
||||
|
||||
-webkit-transition: all 250ms ease-in-out;
|
||||
transition: all 250ms ease-in-out;
|
||||
}
|
||||
|
||||
.input__field--kozakura:focus + .input__label--kozakura,
|
||||
.input--filled .input__label--kozakura {
|
||||
-webkit-transition-delay: 0.15s;
|
||||
transition-delay: 0.15s;
|
||||
-webkit-transform: translate3d(0, 0, 0);
|
||||
transform: translate3d(0, 0, 0);
|
||||
main .wrapper .form-container button i,
|
||||
main .wrapper .form-container .fb-login i {
|
||||
font-size: 32px;
|
||||
font-weight: bolder;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.input__field--kozakura:focus + .input__label--kozakura .input__label-content--kozakura,
|
||||
.input--filled .input__label-content--kozakura {
|
||||
-webkit-transition-delay: 0.15s;
|
||||
transition-delay: 0.15s;
|
||||
-webkit-transform: translate3d(0, -100%, 0);
|
||||
transform: translate3d(0, -100%, 0);
|
||||
}
|
||||
|
||||
.input__field--kozakura:focus ~ .graphic--kozakura,
|
||||
.input--filled .graphic--kozakura {
|
||||
fill: #fff;
|
||||
-webkit-transform: translate3d(-66.6%, 0, 0);
|
||||
transform: translate3d(-66.6%, 0, 0);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user