Buttons - RMO

Developer
Size
3,954 Kb
Views
34,408

How do I make an buttons - rmo?

What is a buttons - rmo? How do you make a buttons - rmo? This script and codes were developed by Lahvjal on 24 August 2022, Wednesday.

Buttons - RMO Previews

Buttons - RMO - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Buttons - RMO</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel="stylesheet" href="css/style.css">
</head>
<body> <button class="btnn1"> primary action
</button>
<button class="btnn2"> secondary action
</button>
<button class="btnn2 b2g"> Submit
</button>
<button class="btnn2 b2r"> cancel
</button>
<br>
<button class="btnn1-small"> primary action
</button>
<button class="btnn2-small"> secondary action
</button>
<button class="btnn2-small b2g"> Submit
</button>
<button class="btnn2-small b2r"> cancel
</button>
</body>
</html>

Buttons - RMO - Script Codes CSS Codes

@import url("https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900");
body { margin: 0; padding: 0; font-family: "Lato", sans-serif; color: #333; box-sizing: border-box;
}
a, span, p { font-size: 16px; line-height: 25px; box-sizing: border-box;
}
a:link, a:visited { text-decoration: none; color: #777;
}
p { max-width: 800px;
}
h1, h2, h3, h4, h5 { color: #333; margin: 10px 0; box-sizing: border-box;
}
h1 { font-size: 65px;
}
h2 { font-size: 45px;
}
h3 { font-size: 27px;
}
h4 { font-size: 23px;
}
h5 { font-size: 17px; margin: 0;
}
input, textarea, keygen, select, button { font-family: "Lato", sans serif !important;
}
.btnn1 { cursor: pointer; margin: 5px; overflow: hidden; position: relative; width: 250px; height: 60px; line-height: 60px; text-align: center; text-transform: uppercase; font-size: 15px; font-weight: 800; font-family: "Lato", sans serif !important; color: white !important; display: inline-block; border-radius: 15px; border-style: none; text-decoration: none; background-color: #BB85B9; box-shadow: 0px 2px 2px 0px transparent; transition: all ease-in-out 200ms; transform: translate3d(0, 0, 0);
}
.btnn1:hover { box-shadow: 0px 15px 19px 0px rgba(0, 0, 0, 0.16);
}
.btnn1-small { cursor: pointer; margin: 5px; overflow: hidden; position: relative; width: 150px; max-width: 200px; height: 40px; line-height: 40px; text-align: center; text-transform: uppercase; font-size: 13px; font-weight: 800; font-family: "Lato", sans serif !important; color: white !important; display: inline-block; border-radius: 11px; border-style: none; text-decoration: none; background-color: #BB85B9; box-shadow: 0px 2px 2px 0px transparent; transition: all ease-in-out 200ms; transform: translate3d(0, 0, 0);
}
.btnn1-small:hover { box-shadow: 0px 15px 19px 0px rgba(0, 0, 0, 0.16);
}
.b1o { background-color: #F2BD7A !important;
}
.b1g { background-color: #358D32 !important;
}
button { border-style: none;
}
input[type=submit] { margin-top: 5px; position: absolute;
}
.btnn2 { margin: 5px; z-index: 0; display: inline-block; position: relative; overflow: hidden; border-radius: 15px; -webkit-transition: all 500ms ease; transition: all 500ms ease; background-color: transparent; border-width: 2px; border-style: solid; width: 250px; height: 60px; line-height: 55px; text-align: center; font-size: 15px; text-decoration: none; text-transform: capitalize; font-weight: 800; cursor: pointer; border-color: #BB85B9; color: #BB85B9 !important;
}
.btnn2:hover { color: white !important; background-color: #BB85B9;
}
.btnn2:after { border: 0 solid rgba(187, 133, 185, 0.1); z-index: -1; content: ""; position: absolute; width: 0; height: 0; top: -999px; left: -999px; right: -999px; bottom: -999px; margin: auto; border-radius: 50%; -webkit-transition: border 100ms ease; transition: border 100ms ease;
}
.btnn2:hover:after { border: 0 solid #bb85b9; border-width: 200px; -webkit-transition: border 380ms ease; transition: border 380ms ease;
}
.btnn2-small { margin: 5px; z-index: 0; display: inline-block; position: relative; overflow: hidden; border-radius: 11px; -webkit-transition: all 500ms ease; transition: all 500ms ease; background-color: transparent; border-width: 2px; border-style: solid; width: 150px; height: 40px; line-height: 36px; text-align: center; font-size: 13px; text-decoration: none; text-transform: capitalize; font-weight: 800; cursor: pointer; border-color: #BB85B9; color: #BB85B9 !important;
}
.btnn2-small:hover { color: white !important; background-color: #BB85B9;
}
.btnn2-small:after { border: 0 solid rgba(187, 133, 185, 0.1); z-index: -1; content: ""; position: absolute; width: 0; height: 0; top: -999px; left: -999px; right: -999px; bottom: -999px; margin: auto; border-radius: 50%; -webkit-transition: border 100ms ease; transition: border 100ms ease;
}
.btnn2-small:hover:after { border: 0 solid #bb85b9; border-width: 200px; -webkit-transition: border 380ms ease; transition: border 380ms ease;
}
.b2w { border-color: white; color: white !important;
}
.b2w:hover { color: #777 !important; background-color: white !important;
}
.b2w:after { border: 0 solid rgba(255, 255, 255, 0.1); z-index: -1; content: ""; -webkit-transition: border 100ms ease; transition: border 100ms ease;
}
.b2w:hover:after { border: 0 solid white; border-width: 200px; -webkit-transition: border 380ms ease; transition: border 380ms ease;
}
.b2o { border-color: #F2BD7A; color: #F2BD7A !important;
}
.b2o:hover { color: white !important; background-color: #F2BD7A !important;
}
.b2o:after { border: 0 solid rgba(242, 189, 122, 0.1); z-index: -1; content: ""; -webkit-transition: border 100ms ease; transition: border 100ms ease;
}
.b2o:hover:after { border: 0 solid #f2bd7a; border-width: 200px; -webkit-transition: border 380ms ease; transition: border 380ms ease;
}
.b2g { border-color: #358D32; color: #358D32 !important;
}
.b2g:hover { color: white !important; background-color: #358D32 !important;
}
.b2g:after { border: 0 solid rgba(53, 141, 50, 0.1); z-index: -1; content: ""; -webkit-transition: border 100ms ease; transition: border 100ms ease;
}
.b2g:hover:after { border: 0 solid #358d32; border-width: 200px; -webkit-transition: border 380ms ease; transition: border 380ms ease;
}
.b2r { border-color: red; color: red !important;
}
.b2r:hover { color: white !important; background-color: red !important;
}
.b2r:after { border: 0 solid rgba(255, 0, 0, 0.1); z-index: -1; content: ""; -webkit-transition: border 100ms ease; transition: border 100ms ease;
}
.b2r:hover:after { border: 0 solid red; border-width: 200px; -webkit-transition: border 380ms ease; transition: border 380ms ease;
}
Buttons - RMO - Script Codes
Buttons - RMO - Script Codes
Home Page Home
Developer Lahvjal
Username lahvjal
Uploaded August 24, 2022
Rating 3
Size 3,954 Kb
Views 34,408
Do you need developer help for Buttons - RMO?

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!

Lahvjal (lahvjal) Script Codes
Create amazing SEO content 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!