Very beginning - curved wells

I’m trying out the tribute project and am trying to put in a well, well, two wells to be exact. However I’m getting something that looks more like sharp rectangles than the curved embedded one featured in the examples.

See the Pen Alku by Dillon (@alos) on CodePen.

I encountered the same problem. For some reason, the 4.0 Bootstrap version wouldn’t work in Codepen.

I had to add these lines in my Settings > Html > Head

<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">

<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">

<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>

This is using Bootstrap version 3.3.7 instead of the 4.0.alpha

Add these lines and your well will show up.

Thanks, did the trick!