Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* General styles */
- * {
- box-sizing: border-box;
- font-family: Arial, sans-serif;
- }
- .followerjet-container-fluid {
- margin: 0 auto;
- max-width: 1200px;
- padding: 0 15px;
- }
- .followerjet-row {
- display: flex;
- flex-wrap: wrap;
- margin: 0 -15px;
- }
- .followerjet-col {
- flex-basis: 0;
- flex-grow: 1;
- max-width: 100%;
- padding: 0 15px;
- }
- .followerjet-card {
- background-color: #fff;
- border: 1px solid #e3e3e3;
- border-radius: 3px;
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
- margin-bottom: 30px;
- overflow: auto;
- }
- .followerjet-card-body {
- padding: 20px;
- }
- .followerjet-table {
- border-collapse: collapse;
- width: 100%;
- }
- .followerjet-table th,
- .followerjet-table td {
- border: 1px solid #ddd;
- padding: 8px;
- text-align: left;
- vertical-align: middle;
- }
- .followerjet-table th {
- background-color: #f7f7f7;
- font-weight: bold;
- }
- .followerjet-table tr:hover {
- background-color: #f5f5f5;
- }
- /* Button styles */
- .followerjet-btn {
- background-color: #007bff;
- border: none;
- border-radius: 3px;
- color: #fff;
- cursor: pointer;
- display: inline-block;
- font-size: 14px;
- font-weight: bold;
- padding: 10px 20px;
- text-align: center;
- text-decoration: none;
- transition: all 0.3s ease;
- }
- .followerjet-btn:hover {
- background-color: #0069d9;
- }
- .followerjet-btn-primary {
- background-color: #007bff;
- color: #fff;
- }
- /* Navigation styles */
- .followerjet-nav {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- .followerjet-nav li {
- display: inline-block;
- margin-right: 10px;
- }
- .followerjet-nav li a {
- color: #007bff;
- font-weight: bold;
- text-decoration: none;
- transition: all 0.3s ease;
- }
- .followerjet-nav li.active a {
- color: #fff;
- }
- .followerjet-nav li a:hover {
- color: #0069d9;
- }
- /* Search bar styles */
- .followerjet-input-group {
- display: flex;
- flex-wrap: wrap;
- }
- .followerjet-input-group > * {
- flex: 1 1 0;
- }
- .followerjet-form-control {
- border: none;
- border-radius: 3px;
- box-shadow: none;
- height: 38px;
- padding: 10px;
- width: 100%;
- }
- .followerjet-search-select-wrap {
- flex: 0 1 auto;
- }
- /* Modal styles */
- .modal {
- display: none;
- position: fixed;
- z-index: 9999;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- overflow: auto;
- background-color: rgba(0, 0, 0, 0.4);
- }
- /* Styles for New Account button */
- .followerjet-btn {
- background-color: #4CAF50;
- border: none;
- color: white;
- padding: 10px 24px;
- text-align: center;
- text-decoration: none;
- display: inline-block;
- font-size: 16px;
- margin: 5px;
- cursor: pointer;
- border-radius: 4px;
- }
- .followerjet-btn:hover {
- background-color: #3e8e41;
- }
- /* Styles for tabs */
- .followerjet-nav {
- margin-bottom: 15px;
- border: none;
- }
- .followerjet-nav li {
- display: inline-block;
- }
- .followerjet-nav li a {
- display: block;
- color: #333;
- text-align: center;
- padding: 10px 15px;
- text-decoration: none;
- border: 1px solid #ccc;
- border-bottom: none;
- }
- .followerjet-nav li.active a {
- background-color: #4CAF50;
- color: white;
- border: 1px solid #4CAF50;
- border-bottom: none;
- }
- .followerjet-nav li a:hover {
- background-color: #ddd;
- color: black;
- }
- /* Styles for search bar */
- .followerjet-input-group {
- position: absolute;
- display: inline-flex;
- border-collapse: separate;
- }
- .followerjet-input-group-btn {
- position: relative;
- vertical-align: top;
- }
- .followerjet-form-control {
- display: block;
- width: 100%;
- height: 34px;
- padding: 6px 12px;
- font-size: 14px;
- line-height: 1.42857143;
- color: #555;
- background-color: #fff;
- background-image: none;
- border: 1px solid #ccc;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
- -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
- -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
- transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
- }
- .followerjet-form-control:focus {
- border-color: #66afe9;
- outline: 0;
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
- }
- .followerjet-search-select-wrap button {
- background-color: blue;
- border: none;
- color: white;
- padding: 6px 12px;
- font-size: 14px;
- line-height: 1.42857143;
- border-radius: 4px;
- cursor: pointer;
- -webkit-transition: background-color ease-in-out .15s;
- -o-transition: background-color ease-in-out .15s;
- transition: background-color ease-in-out .15s;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement