JSFiddle - React, Tailwind, and code Playground

Org Settings - Fliplet (Left sidebar)

by Hugo Carneiro

HTML

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<div class="container-fluid main org-settings">
  <div class="row">
    <form class="form-center form-horizontal">
      <div class="form-group">
        <div class="col-sm-4 control-label">
          <label for="orgName">Organisation name</label>
        </div>
        <div class="col-sm-8">
          <input id="orgName" type="text" class="form-control" placeholder="Enter organisation name" required=""> </div>
      </div>

      <hr>
      <h4>Public app store settings</h4>
      <p>Configure the fields below if you are interested in release an app to any of the stores mentioned below.</p>
      <div class="row">
        <div class="col-sm-2">
          <div class="nav-tabs-holder">
            <ul class="nav nav-tabs" role="tablist">
              <li role="presentation" class="active" id="app-store-control"><a href="#app-store" aria-controls="app-store" role="tab" data-toggle="tab"><i class="fa fa-apple" aria-hidden="true"></i> <span>Apple App Store</span></a></li>
              <li role="presentation" class="" id="google-play-control"><a href="#google-play" aria-controls="google-play" role="tab" data-toggle="tab"><i class="fa fa-google" aria-hidden="true"></i> <span>Google Play</span></a></li>
              <li role="presentation" class="" id="windows-store-control"><a href="#windows-store" aria-controls="windows-store" role="tab" data-toggle="tab"><i class="fa fa-windows" aria-hidden="true"></i> <span>Windows Store</span></a></li>
            </ul>
          </div>
        </div>
        <div class="col-sm-10">
          <div class="tab-content">
            <div role="tabpanel" class="tab-pane active" id="app-store">
              <div class="form-group">
      ...

CSS

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 9px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
}

.btn-primary {
  color: #fff;
  background-color: #00abd1;
  border-bottom-color: #006c85;
}

.btn-primary:hover {
  color: #fff;
  background-color: #00819e;
  border: 1px solid transparent;
  border-bottom-color: #003a47;
}

.btn-primary:active:focus,
.btn-primary:active:hover {
  color: #fff;
  background-color: #00647a;
  border: 1px solid transparent;
  border-bottom-color: #000405;
  outline: none;
}

.btn-link {
  color: #00abd1;
  font-weight: 400;
  border-radius: 0;
}


/* Forms */


/* Changes the input field */

.form-control {
  width: 100%;
  height: 40px;
  padding: 9px 12px;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
  border-color: #00abd1;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(0, 171, 209, .6);
}


/* Changes to the addon */

.input-group .form-control {
  height: 46px;
}

.input-group-addon {
  border-radius: 6px;
}

.select-proxy-display {
  width: 100%;
  height: 44px;
  margin: 0 auto;
  padding: 0 44px 0 0;
  background: #fff;
  border: 1px solid #e4e9eb;
  border-radius: 6px;
  cursor: pointer;
  outline: 0;
  font-weight: 400;
  line-height: 44px;
  position: relative;
  color: #333;
}

.select-proxy-display > .hidden-select {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  right: 0;
  cursor: pointer;
 ...