{"id":825,"date":"2023-02-16T04:53:40","date_gmt":"2023-02-16T04:53:40","guid":{"rendered":"https:\/\/www.tools.keywordfinder.us\/?page_id=825"},"modified":"2023-02-16T04:53:40","modified_gmt":"2023-02-16T04:53:40","slug":"css-compressor","status":"publish","type":"page","link":"https:\/\/tools.billionsideas.com\/hi\/css-compressor\/","title":{"rendered":"CSS Gradient Color Picker"},"content":{"rendered":"<div style=\"height:70px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column has-cyan-bluish-gray-background-color has-background is-layout-flow wp-block-column-is-layout-flow\">\n<style type=\"text\/css\">    \n \n .current-bg {  \n      \n      color: navy;\n      border-radius:25px;\n      width:80%;\n      padding:5px 5px;\n      background:Snow;\n      margin:0 auto;\n }  \n \n  <\/style>\n\n<center>  \n<h1>Gradient Color<\/h1>  \n <section class=\"mt-3\" id=\"main\">      <div class=\"container mainbox\">  \n           <div class=\"row\">  \n                <div class=\"col text-center\">  \n                     \n                     <input class=\"color1 my-4 mr-4\" name=\"color1\" type=\"color\" value=\"#98FB98\">  \n                     <input class=\"color2\" name=\"color2\" type=\"color\" value=\"#FFC0CB\">  \n                     <h4 class=\"subtitle text-uppercase font-weight-bold\">  \n                          <br>Current CSS Background  \n                     <\/h4>  \n                     <h5 class=\"current-bg font-weight-bold my-4\"><\/h5>  \n                     <p class=\"copy-property lead font-italic\">Copy Code<\/p>  \n             \n         <br>  \n                     <button class=\"random-btn btn btn-light btn-lg mt-3 p-3\">  \n                          Generate Random  \n                     <\/button>\n                  \n                            \n                  \n                <\/div>  \n           <\/div>  \n      <\/div>  \n <\/section>  \n <!--end of main section-->   \n <\/center>  \n  <script language=\"Javascript\">    \n const htmlBody = document.querySelector(\".mainbox\");  \n const color1 = document.querySelector(\".color1\");  \n const color2 = document.querySelector(\".color2\");  \n const currentSelection = document.querySelector(\".current-bg\");  \n const copyProperty = document.querySelector(\".copy-property\");  \n const randomButton = document.querySelector(\".random-btn\");  \n function setGradient() {  \n      htmlBody.style.background = `linear-gradient(to right, ${color1.value}, ${color2.value})`;  \n      currentSelection.textContent = `${htmlBody.style.background};`;  \n }  \n function generateRandom() {  \n      const randomColor1 = Math.random().toString(16).slice(2, 8).toUpperCase();  \n      const randomColor2 = Math.random().toString(16).slice(2, 8).toUpperCase();  \n      color1.value = `#${randomColor1}`;  \n      color2.value = `#${randomColor2}`;  \n      setGradient();  \n }  \n function copyText() {  \n      const text = currentSelection.innerText;  \n      let temp_element = document.createElement(\"textarea\");  \n      document.body.appendChild(temp_element);  \n      temp_element.value = text;  \n      temp_element.select();  \n      document.execCommand(\"copy\");  \n      document.body.removeChild(temp_element);  \n }  \n window.addEventListener(\"load\", setGradient);  \n color1.addEventListener(\"input\", setGradient);  \n color2.addEventListener(\"input\", setGradient);  \n copyProperty.addEventListener(\"click\", copyText);  \n randomButton.addEventListener(\"click\", generateRandom);   \n  <\/script>\n\n<style>\nbody {\n  text-align: center;\n  \n}\ninput[type=\"text\"] {\n  width: 100%;\n  height: 40px;\n  padding: 5px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc;\n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;margin:0 auto;\n}\ncanvas {\n  border: 10px solid;\n  border-image: linear-gradient(to bottom, #007bff, #00f260);\n  border-image-slice: 1;\n  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);\n  margin-top:10px;margin-bottom:10px;\n  width:50%;\n}\n\ninput[type=\"url\"] {\n  width: 80%;\n  height: 40px;\n  padding: 5px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc;\n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n}\ninput[type=\"number\"] {\n  width: 20%;\n  height: 40px;\n  padding: 5px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc;\n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n}\nselect {\n  width: 20%;\n  height: 40px;\n  padding: 5px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc;\n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n}\n\n\ntextarea {\n  width: 80%;\n  height: 200px;\n  padding: 10px;\n  font-size: 16px;\n  font-family: Arial, sans-serif;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;\n  border-radius: 5px;\n  box-shadow: 2px 2px 5px #ccc, -2px -2px 5px #ccc;  \n  transition: all 0.2s ease-in-out;\n  margin-top:10px;margin-bottom:10px;\n}\n\ntextarea:hover {\n  border-color: #06c;\n  box-shadow: 2px 2px 10px #06c;\n}\n\ntextarea:focus {\n  outline: none;\n  border-color: #06c;\n  box-shadow: 2px 2px 10px #06c;\n}\n#image-container {\n  width: 50%;\n  height: auto;\n  border-radius: 10px;\n  box-shadow: 1px 1px 5px #999;\n  border: 3px solid;\n  border-image: linear-gradient(to right, #f60, #f9c);\n  margin-top:10px;margin-bottom:10px;\n  border-image-slice: 1;\n  padding:15px;margin:0 auto;\n}\n\n#image-container img {\n  max-width: 100%;\n  }\n\n#convertedImage {\n  width: 50%;\n  height: auto;\n  border-radius: 10px;\n  box-shadow: 1px 1px 5px #999;\n  border: 5px solid;\n  border-image: linear-gradient(to right, #f60, #f9c);\n  margin-top:10px;margin-bottom:10px;\n  border-image-slice: 1;padding:11px;\n}\n.img {\n  width: 50%;\n  height: auto;\n  border-radius: 10px;\n  box-shadow: 1px 1px 5px #999;\n  border: 5px solid;\n  border-image: linear-gradient(to right, #f60, #f9c);\n  margin-top:10px;margin-bottom:10px;\n  border-image-slice: 1;padding:11px;\n}\n.image {\n  width: 50%;\n  height: auto;\n  border-radius: 10px;\n  box-shadow: 1px 1px 5px #999;\n  border: 5px solid;\n  border-image: linear-gradient(to right, #f60, #f9c);\n  margin-top:10px;margin-bottom:10px;\n  border-image-slice: 1;padding:11px;\n}\n#image {\n  width: 50%;\n  height: auto;\n  border-radius: 10px;\n  box-shadow: 1px 1px 5px #999;\n  border: 5px solid;\n  border-image: linear-gradient(to right, #f60, #f9c);\n  margin-top:10px;margin-bottom:10px;\n  border-image-slice: 1;padding:11px;\n}\n#file-input {\n  display: none;\n}\n\ninput[type=file]::file-selector-button {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #008B8B 54%, #55555e 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#008B8B 54%,#55555e 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,##008B8B 54%,#55555e 100%);\n}\n\n\ninput[type=file]::file-selector-button {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 6px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #ffff00;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border: 5px solid;\n    border-image: linear-gradient(to right, #ff7f00, ,#0033cc, #55555e, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n    margin-top:20px;width:100%;margin-bottom:20px;\n}\n\n\n\n\n\ninput[type=file]::file-selector-button:hover\n {\n  background: #0033cc;border-radius:100px;border:0px solid #55555e;padding: 7px 50px;\n\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n\n\n@keyframes pulse {\n  0% {\n    background-position: left;\n  }\n  50% {\n    background-position: right;\n  }\n  100% {\n    background-position: left;\n  }\n}\n\ninput[type=file]::file-selector-button:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;border-radius:20%;\n}\n\n.copy-property{\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\n.copy-property{font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border-bottom: 2px solid #ff7f00;\n    border-image: linear-gradient(to right, #ff7f00, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n    margin-top:15px;margin-bottom:15px;width:300px;\n}\n\n.copy-property:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n.copy-property:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\n\n\n#button {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\n#button {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border-bottom: 2px solid #ff7f00;\n    border-image: linear-gradient(to right, #ff7f00, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n   \n}\n\n#button:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n#button:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\n\n.button {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\n.button {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border-bottom: 2px solid #ff7f00;\n    border-image: linear-gradient(to right, #ff7f00, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n   \n}\n\n.button:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n.button:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\n\n\nbutton {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\nbutton {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border-bottom: 2px solid #ff7f00;\n    border-image: linear-gradient(to right, #ff7f00, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n   \n}\n\nbutton:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\nbutton:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\n\n\n#btn {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\n#btn {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border-bottom: 2px solid #ff7f00;\n    border-image: linear-gradient(to right, #ff7f00, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n   \n}\n\n#btn:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n#btn:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\n\n\n.btn {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\n.btn {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 20px;\n    margin-bottom:11px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border-bottom: 2px solid #ff7f00;\n    border-image: linear-gradient(to right, #ff7f00, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n   \n}\n\n.btn:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n.btn:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\n\n#button-copy {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\n#button-copy {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border-bottom: 2px solid #ff7f00;\n    border-image: linear-gradient(to right, #ff7f00, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n   \n}\n\n#button-copy:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n#button-copy:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\n#copy-button {\n  background: #fc00c7;\n    background: -moz-linear-gradient(-45deg, #fc00c7 0%, #1c4efd 54%, #00aded 100%);\n    background: -webkit-linear-gradient(-45deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n    background: linear-gradient(135deg, #fc00c7 0%,#1c4efd 54%,#00aded 100%);\n}\n\n\n#copy-button {font-size: 16px;\n    font-weight: 500;\n    font-family: 'Poppins', sans-serif;\n    padding: 0px 50px;\n    line-height: 50px;\n    text-align: center;\n    outline: none;\n    cursor: pointer;\n    color: #fff;\n    background-color: #000;\n    -webkit-border-radius: 20%;\n    border-radius: 20%;\n    display: inline-block;\n    position: relative;\n    -webkit-box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    box-shadow: 0 10px 15px 0px rgb(233 30 99 \/ 15%);\n    text-shadow: 2px 2px 4px #333;\n    border-bottom: 2px solid #ff7f00;\n    border-image: linear-gradient(to right, #ff7f00, #ffa600);\n    border-image-slice: 1;\n    font-size: 18px;\n   \n}\n\n#copy-button:hover\n {\n  background: #0033cc;\n    background: -moz-linear-gradient(-45deg, #00aded 0%, #ff7f00 54%, #1c4efd 100%);\n    background: -webkit-linear-gradient(-45deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n    background: linear-gradient(135deg, #00aded 0%,#ff7f00 54%,#1c4efd 100%);\n}\n\n#copy-button:active {\n  animation: pulse 1s ease-out infinite;\n  border-color: #000;background:#000;\n}\n\npre {\n  width: 80%;\n  margin: 0 auto;\n  text-align: left;\n  padding: 1em;\n  background-color: #f5f5f5;\n  border-radius: 10px;\n  box-shadow: 1px 1px 5px #999;\n  overflow-x: auto;\n  white-space: pre-wrap;\n  margin-top:10px;margin-bottom:10px;\n\n}\ncode {\n  font-family: Monaco, Consolas, \"Andale Mono\", \"DejaVu Sans Mono\", monospace;\n  font-size: 0.9em;\n  color: #333;\n  background-color: #f9f9f9;\n  padding: 0.2em 0.4em;\n  border-radius: 4px;\n}\n.result {\n  margin: 20px 0;\n  padding: 20px;\n  background-color: #f9f9f9;\n  border-radius: 10px;\n  box-shadow: 1px 1px 5px #999;\n  width:80%;\n  margin:0 auto;\n}\n\ninput[type=\"range\"] {\n  -webkit-appearance: none;\n  width: 80%;\n  background: transparent;\n  height: 10px;\n  border-radius: 5px;\n  outline: none;\n  padding: 0;\n  margin: 0;\n  box-shadow: inset 0 0 5px #333;\n  transition: box-shadow 0.2s;\n  margin-top:10px;\n\n}\n\ninput[type=\"range\"]:focus {\n  box-shadow: inset 0 0 5px #888;\n}\n\ninput[type=\"range\"]::-webkit-slider-thumb {\n  -webkit-appearance: none;\n  height: 20px;\n  width: 20px;\n  border-radius: 50%;\n  background: #4CAF50;\n  cursor: pointer;\n  transition: background 0.2s;\n  margin-top:-5px;\n}\n\ninput[type=\"range\"]::-webkit-slider-thumb:hover {\n  background: #3e8e41;\n}\n\ninput[type=\"range\"]::-webkit-slider-runnable-track {\n  height: 10px;\n  background: #ddd;\n  border-radius: 5px;\n  border: none;\n}\ninput[type=\"checkbox\"] {\n  appearance: none;\n  width: 45px;\n  height: 25px;\n  background: transparent;\n  border: 2px solid;\n  border-image: linear-gradient(to right, #06c, #f90) 1;  border-radius: 5px;\n  margin: 10px;\n  outline: none;\n  cursor: pointer;\n  position: relative;\n}\n\ninput[type=\"checkbox\"]:before {\n  content: \"\";\n  width: 15px;\n  height: 15px;\n  background: #D209A4;\n  border-radius: 100px;\n  position: absolute;\n  left: 2px;\n  \n  top: 3px;\n  transition: all 0.2s;\n}\n\ninput[type=\"checkbox\"]:checked:before {\n  transform: translateX(20px);\n}\n\ninput[type=\"checkbox\"]:focus {\n  border: 2px solid #888;\n}\ninput[type=\"radio\"] {\n  appearance: none;\n  width: 20px;\n  height: 20px;\n  border-radius: 50%;\n  border: 2px solid #333;\n  margin-right: 10px;\n  outline: none;\n  position: relative;\n  cursor: pointer;\n}\n\ninput[type=\"radio\"]:after {\n  content: \"\";\n  width: 10px;\n  height: 10px;\n  border-radius: 50%;\n  background: #333;\n  position: absolute;\n  top: 5px;\n  left: 5px;\n  opacity: 0;\n  transition: all 0.2s;\n}\n\ninput[type=\"radio\"]:checked:after {\n  opacity: 1;\n}\n\ninput[type=\"radio\"]:focus {\n  border-color: #888;\n}\n\n\ninput[type=\"radio\"] {\n  display: inline-block;\n  margin-right: 10px;\n  vertical-align: middle;\n}\n\nlabel {\n  display: inline-block;\n  font-size: 14px;\n  margin-right: 20px;\n  vertical-align: middle;\n}\n.text-center {\n    text-align: center;\n}\n.color1, .color2 {\n    width: 5em;\n    height: 5em;\n    cursor: pointer;\n    border: 0px solid grey;\n    border-radius: 0%;\n    margin-top: 21px;\n    background: transparent;margin:0 auto;display:inline-block;\n}\nsection {\n      \n      \n      align-items: center;\n      background: #f2f2f2;\n      padding: 0px;\n      border-radius: 0px;margin-bottom:3px;\n    }\n\n\n\n\n\nh1 {\n  margin-top: 5px;color:#fff;font-family: 'Space Grotesk', sans-serif;font-size:40px;font-weight:500;\n}\n<\/style>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Gradient Color Current CSS Background Copy Code Generate Random<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","footnotes":""},"class_list":["post-825","page","type-page","status-publish"],"taxonomy_info":[],"featured_image_src_large":false,"author_info":{"display_name":"Billions Ideas","author_link":"https:\/\/tools.billionsideas.com\/hi\/author\/loginbillionsideas-com\/"},"comment_info":0,"jetpack-related-posts":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/tools.billionsideas.com\/hi\/wp-json\/wp\/v2\/pages\/825","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tools.billionsideas.com\/hi\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/tools.billionsideas.com\/hi\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/tools.billionsideas.com\/hi\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tools.billionsideas.com\/hi\/wp-json\/wp\/v2\/comments?post=825"}],"version-history":[{"count":0,"href":"https:\/\/tools.billionsideas.com\/hi\/wp-json\/wp\/v2\/pages\/825\/revisions"}],"wp:attachment":[{"href":"https:\/\/tools.billionsideas.com\/hi\/wp-json\/wp\/v2\/media?parent=825"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}