Skip to content

Commit

Permalink
Improve pricing section styling
Browse files Browse the repository at this point in the history
  • Loading branch information
vinibrsl committed Nov 28, 2023
1 parent cd498e9 commit f06f49f
Show file tree
Hide file tree
Showing 2 changed files with 130 additions and 127 deletions.
31 changes: 22 additions & 9 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,13 @@ input[type="range"] {
margin-top: 15px;
margin-bottom: 15px;
outline: none;
cursor: grab;
}

input[type="range"]:active {
cursor: grabbing;
}

input[type="range"]::-webkit-slider-thumb {
appearance: none;
-webkit-appearance: none;
Expand All @@ -81,9 +87,8 @@ input[type="range"]::-webkit-slider-thumb {
background-repeat: no-repeat;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 36px;
width: 36px;
height: 26px;
width: 26px;
}
input[type="range"]::-moz-range-thumb {
background-color: #5f48ff;
Expand All @@ -93,9 +98,8 @@ input[type="range"]::-moz-range-thumb {
border: 0;
border: none;
border-radius: 50%;
cursor: pointer;
height: 36px;
width: 36px;
height: 26px;
width: 26px;
}
input[type="range"]::-ms-thumb {
background-color: #5f48ff;
Expand All @@ -104,14 +108,23 @@ input[type="range"]::-ms-thumb {
background-repeat: no-repeat;
border: 0;
border-radius: 50%;
cursor: pointer;
height: 36px;
width: 36px;
height: 26px;
width: 26px;
}
input[type="range"]::-moz-focus-outer {
border: 0;
}

.bubble {
background: #5f48ff;
color: white;
position: absolute;
border-radius: 4px;
bottom: 35px;
padding: 4px 12px;
transform: translateX(-50%);
}

.twitter-icon {
width: 1.5rem;
height: 1.5rem;
Expand Down
Loading

0 comments on commit f06f49f

Please sign in to comment.