aboutsummaryrefslogtreecommitdiffhomepage
path: root/css/form.css
diff options
context:
space:
mode:
authorMarvin Borner2018-01-10 16:36:30 +0100
committerGitHub2018-01-10 16:36:30 +0100
commitf438a84972c40c5f02907e1e2da9febca0d0bdf6 (patch)
tree19c103d7401210f01e5ec74e8126049c057b4b40 /css/form.css
parente5784de52484ab75bbceaec0b5a999a5b2264d4c (diff)
Initial sync
Diffstat (limited to 'css/form.css')
-rw-r--r--css/form.css161
1 files changed, 161 insertions, 0 deletions
diff --git a/css/form.css b/css/form.css
new file mode 100644
index 0000000..a8beabb
--- /dev/null
+++ b/css/form.css
@@ -0,0 +1,161 @@
+.input {
+ position: relative;
+ z-index: 1;
+ display: inline-block;
+ margin: 1em;
+ 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;
+ width: 100%;
+}
+
+.graphic {
+ position: absolute;
+ top: 0;
+ left: 0;
+ fill: none;
+}
+
+.icon {
+ color: #ddd;
+ font-size: 150%;
+}
+
+/* Individual styles */
+/* Kozakura */
+.input--kozakura {
+ overflow: hidden;
+ padding-bottom: 1em;
+}
+
+.input__field--kozakura {
+ padding: 0.25em 0.5em;
+ margin-top: 1.25em;
+ width: 100%;
+ background: transparent;
+ color: #2F3238;
+ font-size: 1.55em;
+ 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: #A4A5A6;
+ 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%;
+ width: 100%;
+ color: #fff;
+ padding: 0.25em 0;
+ text-transform: uppercase;
+ letter-spacing: 1px;
+ font-size: 0.85em;
+}
+
+.graphic--kozakura {
+ fill: #494E57;
+ pointer-events: none;
+ top: 1em;
+ bottom: 0px;
+ 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);
+}
+
+.input__field--kozakura:focus,
+.input--filled .input__field--kozakura {
+ -webkit-transition: opacity 0s 0.35s;
+ transition: opacity 0s 0.35s;
+ opacity: 1;
+}
+
+.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);
+}
+
+.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);
+}