-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 512f42a
Showing
174 changed files
with
14,826 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
.headingCenter { | ||
text-align: center; | ||
} | ||
|
||
.navbar-collapse-cefi { | ||
background-color: #51565b; /* Replace 'your-color' with the desired background color */ | ||
} | ||
|
||
#cefinavbar.navbar ul.nav > li > a{ | ||
color: #faf6f5; | ||
font-size: 12pt; | ||
background-color: transparent; | ||
} | ||
|
||
#cefinavbar.navbar ul.nav li.active > a { | ||
color: #73c779; | ||
background-color: transparent !important; | ||
} | ||
|
||
#cefinavbar.navbar li.dropdown.open a.dropdown-toggle[aria-expanded="true"] { | ||
color: white !important; | ||
background-color: transparent !important; | ||
} | ||
|
||
#cookbookFrame { | ||
height: 3100px; | ||
/* width: 1150px; */ | ||
/* height: 100%; */ | ||
width: 100%; | ||
border: 0px; | ||
margin-top: 0px; | ||
overflow: hidden; | ||
} | ||
|
||
.bannerContainer { | ||
width: 100%; /* Set the width of the container */ | ||
height: 120px; /* Set the height to crop top and bottom */ | ||
overflow: hidden; | ||
} | ||
|
||
.bannerContainer img { | ||
width: 100%; /* Ensure the image fills the container horizontally */ | ||
height: auto; /* Maintain the image's aspect ratio */ | ||
background-size: cover; | ||
background-position: bottom; /* Adjust the position to center the lower part */ | ||
} | ||
|
||
.switch { | ||
position: relative; | ||
display: inline-block; | ||
width: 60px; | ||
height: 34px; | ||
} | ||
|
||
.switch input { | ||
opacity: 0; | ||
width: 0; | ||
height: 0; | ||
} | ||
|
||
.toggleBtn { | ||
position: absolute; | ||
cursor: pointer; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
bottom: 0; | ||
background-color: #ccc; | ||
-webkit-transition: .4s; | ||
transition: .4s; | ||
} | ||
|
||
.toggleBtn:before { | ||
position: absolute; | ||
content: ""; | ||
height: 26px; | ||
width: 26px; | ||
left: 4px; | ||
bottom: 4px; | ||
background-color: white; | ||
-webkit-transition: .4s; | ||
transition: .4s; | ||
} | ||
|
||
input:checked + .toggleBtn { | ||
background-color: #2196F3; | ||
} | ||
|
||
input:focus + .toggleBtn { | ||
box-shadow: 0 0 1px #2196F3; | ||
} | ||
|
||
input:checked + .toggleBtn:before { | ||
-webkit-transform: translateX(26px); | ||
-ms-transform: translateX(26px); | ||
transform: translateX(26px); | ||
} | ||
|
||
/* Rounded sliders */ | ||
.toggleBtn.round { | ||
border-radius: 34px; | ||
} | ||
|
||
.toggleBtn.round:before { | ||
border-radius: 50%; | ||
} |
Oops, something went wrong.