Link to home
Start Free TrialLog in
Avatar of Camillia
CamilliaFlag for United States of America

asked on

what CSS makes the cursor look like this/

I came across this example https://codepen.io/Liskanth/pen/wqaReo

Please hover over the "item" box. You see how the cursor looks like. What CSS makes it look like that?
Avatar of Swatantra Bhargava
Swatantra Bhargava
Flag of India image

Try with below CSS with include bootstrap 3 css
<style>
ul {
  padding: 0;
  margin: 0 auto;
  width: 80%;
  list-style-type: none;
}

ul li {
  cursor: move;
  margin: 0 3px 3px 3px;
  padding: 0.3em;
 
  font-size: 1.25em;
  height: 1em;
 
  border: 1px solid #d3d3d3;
      background: #e6e6e6;
}

ul div  {
  font-family: FontAwesome;
  font-size: 0.5em;
  letter-spacing: 10px;
  width: 10px;
}

ul .up, ul .down { float: left; }
ul .up:before { content: "\f077"; }
ul .down:before { content: "\f078"; }
</style>
SOLUTION
Avatar of Swatantra Bhargava
Swatantra Bhargava
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Camillia

ASKER

Thanks, let me take a look.