Vue form theme

Developer
Size
3,755 Kb
Views
48,576

How do I make an vue form theme?

What is a vue form theme? How do you make a vue form theme? This script and codes were developed by Aurer on 03 August 2022, Wednesday.

Vue form theme Previews

Vue form theme - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Vue form theme</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <style> /* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */ form.vue-form { background: #e6e6e6; padding: 0; margin: 0; border-radius: 4px; border: 1px solid #9b9b9b; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2), inset 0 0 0 1px #f6f6f6; max-width: 600px; margin: 1em auto;
}
form.vue-form fieldset { border: 0; padding: 7px; margin: 0;
}
form.vue-form fieldset.submit { border-top: 1px solid #b1b1b1; box-shadow: inset 0 0 0 1px #f6f6f6; border-radius: 0 0 4px 4px; background: #e1e1e1; text-align: right;
}
form.vue-form fieldset.main input { border-radius: 4px; border: 1px solid #b1b1b1; box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.1); padding: .4em; width: 97%; margin: 0; background: #f6f6f6;
}
form.vue-form fieldset.main input:focus { background: #fff; color: #555; outline: 0;
}
form.vue-form .field { padding: .4em 1.1em; position: relative;
}
form.vue-form .field:hover:after { content: attr(data-hint); position: absolute; top: 2.4em; right: 0; font-size: 11px; color: #fff; background: -webkit-gradient(linear, 0 0, 0 100%, from(#5a5a5a), to(#373737)); padding: .4em 1em; border-radius: 4px;
}
form.vue-form label { font: inherit; font-size: 12px; display: block; margin: .7em 0; color: #666;
}
form.vue-form .button { color: #5f5f5f; text-decoration: none; font-size: 12px; text-shadow: 0 1px 1px #fff; background: #f2f2f2; background: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#dbdbdb)); padding: .45em 1.3em; margin: 0; line-height: 1; display: inline; border-radius: 4px; border: 1px solid #b1b1b1; box-shadow: inset 0 0 0 1px #f6f6f6; font-weight: bold; font-family: inherit; line-height: normal;
}
form.vue-form .button:active { background: -webkit-gradient(linear, 0 0, 0 100%, from(#dbdbdb), to(#f2f2f2));
}
form.vue-form .button.dark { border-color: #363636; background: #373737; background: -webkit-gradient(linear, 0 0, 0 100%, from(#5a5a5a), to(#373737)); box-shadow: inset 0 0 1px #636363; color: #eee; text-shadow: 0 -1px 1px #363636;
}
form.vue-form .button.dark:active { background: -webkit-gradient(linear, 0 0, 0 100%, from(#373737), to(#5a5a5a));
} </style> <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body> <form class="vue-form">	<fieldset class="main">	<div class="field" data-hint="Your username">	<label>Username</label>	<input type="text" placeholder="user name" />	</div>	<div class="field" data-hint="The email address we can contact you at">	<label>Email</label>	<input type="text" placeholder="email" />	</div>	<div class="field" data-hint="Put your password in here idiot!">	<label>Password</label>	<input type="text" placeholder="password" />	</div>	</fieldset>	<fieldset class="submit">	<a href="#" class="button light">Cancel</a>&nbsp;&nbsp;	<input type="submit" class="button dark" value="Continue" />	</fieldset>
</form> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
</body>
</html>

Vue form theme - Script Codes CSS Codes

form.vue-form { background: #e6e6e6; padding: 0; margin: 0; border-radius: 4px; border: 1px solid #9b9b9b; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2), inset 0 0 0 1px #f6f6f6; max-width: 600px; margin: 1em auto;
}
form.vue-form fieldset { border: 0; padding: 7px; margin: 0;
}
form.vue-form fieldset.submit { border-top: 1px solid #b1b1b1; box-shadow: inset 0 0 0 1px #f6f6f6; border-radius: 0 0 4px 4px; background: #e1e1e1; text-align: right;
}
form.vue-form fieldset.main input { border-radius: 4px; border: 1px solid #b1b1b1; box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.1); padding: .4em; width: 97%; margin: 0; background: #f6f6f6;
}
form.vue-form fieldset.main input:focus { background: #fff; color: #555; outline: 0;
}
form.vue-form .field { padding: .4em 1.1em; position: relative;
}
form.vue-form .field:hover:after { content: attr(data-hint); position: absolute; top: 2.4em; right: 0; font-size: 11px; color: #fff; background: -webkit-gradient(linear, 0 0, 0 100%, from(#5a5a5a), to(#373737)); padding: .4em 1em; border-radius: 4px;
}
form.vue-form label { font: inherit; font-size: 12px; display: block; margin: .7em 0; color: #666;
}
form.vue-form .button { color: #5f5f5f; text-decoration: none; font-size: 12px; text-shadow: 0 1px 1px #fff; background: #f2f2f2; background: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#dbdbdb)); padding: .45em 1.3em; margin: 0; line-height: 1; display: inline; border-radius: 4px; border: 1px solid #b1b1b1; box-shadow: inset 0 0 0 1px #f6f6f6; font-weight: bold; font-family: inherit; line-height: normal;
}
form.vue-form .button:active { background: -webkit-gradient(linear, 0 0, 0 100%, from(#dbdbdb), to(#f2f2f2));
}
form.vue-form .button.dark { border-color: #363636; background: #373737; background: -webkit-gradient(linear, 0 0, 0 100%, from(#5a5a5a), to(#373737)); box-shadow: inset 0 0 1px #636363; color: #eee; text-shadow: 0 -1px 1px #363636;
}
form.vue-form .button.dark:active { background: -webkit-gradient(linear, 0 0, 0 100%, from(#373737), to(#5a5a5a));
}
Vue form theme - Script Codes
Vue form theme - Script Codes
Home Page Home
Developer Aurer
Username aurer
Uploaded August 03, 2022
Rating 3
Size 3,755 Kb
Views 48,576
Do you need developer help for Vue form theme?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Aurer (aurer) Script Codes
Create amazing love letters with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!