1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
| <style> .Uber-button{ color: white; background-color: black; padding: 8px 10px; margin: 5px; vertical-align: top; cursor: pointer; transition: opacity 0.15s; } .Uber-button:hover { opacity: 0.7; } .Amazon-button{ background-color: rgb(255, 216, 20); padding: 10px 26px; margin: 5px; vertical-align: top; border: none; font-size: 15px; border-radius: 18px; cursor: pointer; transition: opacity 0.15s; } .Amazon-button:hover { background-color: rgb(238, 200, 9); } .GitHub-button{ color:white; background-color: rgb(46, 164, 79); padding: 10px 16px; margin: 5px; vertical-align: top; border: none; font-size: 15px; font-weight: bold; border-radius: 5px; cursor: pointer; transition: box-shadow 0.15s; } .GitHub-button:hover { box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15); } .Bootstrap-button-1{ color:white; background-color: rgb(121, 82, 179); padding: 10px 16px; margin: 5px; vertical-align: top; border: none; font-weight: bold; border-radius: 5px; cursor: pointer; transition: background-color 0.15s; } .Bootstrap-button-1:hover { background-color: rgb(86, 49, 128); } .Bootstrap-button-2{ color:rgb(108, 117, 125); background-color: white; border-color: rgb(108, 117, 125); border-style: solid; border-width: 2px; padding: 9px 16px; margin: 5px; vertical-align: top; font-weight: bold; border-radius: 5px; cursor: pointer; transition: background-color 0.15s, color 0.15s; } .Bootstrap-button-2:hover{ background-color: rgb(108, 117, 125); color: white } .Linkedln-button-1{ color: white; background-color: rgb(10, 102, 194); border-radius: 20px; border: none; font-size: 15px; font-weight: bold; padding: 12px 26px; margin: 5px; vertical-align: top; cursor: pointer; transition: background-color 0.15s; } .Linkedln-button-1:hover{ background-color: rgb(7, 57, 117); } .Linkedln-button-2{ color:rgb(10, 102, 194); background-color: white; border-color: rgb(10, 102, 194); border-style: solid; border-width: 2px; padding: 9px 16px; margin: 5px; vertical-align: top; font-size: 15px; font-weight: bold; border-radius: 20px; cursor: pointer; transition: border-width 0.15s, background-color 0.15s; } .Linkedln-button-2:hover { background-color: #EEF; border-width: 3px; } </style> <button class="Uber-button">Request now</button> <button class="Amazon-button">Add to Chart</button> <button class="GitHub-button">Sign up</button> <button class="Bootstrap-button-1">Get started</button> <button class="Bootstrap-button-2">Download</button> <button class="Linkedln-button-1">Apply on company website</button> <button class="Linkedln-button-2">Save</button>
|