-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcefi.css
157 lines (134 loc) · 2.78 KB
/
cefi.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
.google-form{
width: 100%;
height: 1000px;
max-height: 1000px; /* Or set a specific max height if needed */
}
.refresh-link {
cursor: pointer;
}
.main-svg,
.svg-container {
width: 100% !important
}
/* Style the label */
.hoverLabel {
display: none; /* Initially hidden */
position: absolute;
background-color: #a2a0a0;
padding: 5px;
border: 1px solid #a2a0a0;
border-radius: 4px;
font-size: 14px;
color: #f9f9fa;
z-index: 1;
}
#cefiPortalTabs li:hover .hoverLabel {
display: block; /* Show label on hover */
width: 100%;
}
@media (hover: none) {
#cefiPortalTabs li:hover .hoverLabel {
display: none;
}
}
/* .dropdown-menu .nav-link:hover {
background-color: transparent;
} */
.headingCenter {
text-align: center;
}
.gifDemo {
width: 100%
}
/* .nav-tabs .dropdown-menu,
.nav-tabs .dropdown-menu li,
.tab .nav-tabs .active .dropdown-menu li a{
background-color: #edeff0 !important;
} */
/* .navbar-collapse-cefi {
background-color: #51565b;
}
#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%;
}