-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added in g trigger and cache options
- Loading branch information
taylor hawkes
authored and
taylor hawkes
committed
Dec 13, 2022
1 parent
426fd40
commit a5963ca
Showing
9 changed files
with
320 additions
and
24 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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,146 @@ | ||
html, body, div, span, applet, object, iframe, | ||
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | ||
a, abbr, acronym, address, big, cite, code, | ||
del, dfn, em, img, ins, kbd, q, s, samp, | ||
small, strike, strong, sub, sup, tt, var, | ||
b, u, i, center, | ||
dl, dt, dd, ol, ul, li, | ||
fieldset, form, label, legend, | ||
table, caption, tbody, tfoot, thead, tr, th, td, | ||
article, aside, canvas, details, embed, | ||
figure, figcaption, footer, header, hgroup, | ||
menu, nav, output, ruby, section, summary, | ||
time, mark, audio, video { | ||
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
font-size: 100%; | ||
font: inherit; | ||
vertical-align: baseline; | ||
font-family:Arial, sans-serif; | ||
box-sizing:border-box; | ||
} | ||
/* HTML5 display-role reset for older browsers */ | ||
article, aside, details, figcaption, figure, | ||
footer, header, hgroup, menu, nav, section { | ||
display: block; | ||
} | ||
body { | ||
line-height: 1; | ||
} | ||
ol, ul { | ||
list-style: none; | ||
} | ||
blockquote, q { | ||
quotes: none; | ||
} | ||
blockquote:before, blockquote:after, | ||
q:before, q:after { | ||
content: ''; | ||
content: none; | ||
} | ||
table { | ||
border-collapse: collapse; | ||
border-spacing: 0; | ||
} | ||
|
||
html{ | ||
margin:0px; | ||
padding:0px; | ||
} | ||
body{ | ||
color:#2f2f2f; | ||
font: 15px/1.6285714 Arial,sans-serif; | ||
margin:0px; | ||
padding:0px; | ||
width:360px; | ||
height:400px; | ||
} | ||
a{ | ||
color: #4183c4; | ||
text-decoration: none; | ||
} | ||
#logo_holder{ | ||
width:100%; | ||
border-bottom:1px solid #333; | ||
text-align:center; | ||
padding:0px 0px; | ||
position:relative; | ||
} | ||
#logo_holder img{ | ||
display:block; | ||
position:absolute; | ||
left:0px; | ||
top:5px; | ||
height:40px; | ||
left:10px; | ||
} | ||
#logo{ | ||
color:#333; | ||
font-weight: 100; | ||
font-family: 'Poppins', sans-serif; | ||
font-size:26px; | ||
line-height:48px; | ||
} | ||
|
||
.toggle { | ||
cursor: pointer; | ||
display: inline-block; | ||
} | ||
|
||
.toggle-switch { | ||
display: inline-block; | ||
background: #ccc; | ||
border-radius: 16px; | ||
width: 58px; | ||
height: 32px; | ||
position: relative; | ||
vertical-align: middle; | ||
transition: background 0.25s; | ||
} | ||
.toggle-switch:before, .toggle-switch:after { | ||
content: ""; | ||
} | ||
.toggle-switch:before { | ||
display: block; | ||
background: linear-gradient(to bottom, #fff 0%, #eee 100%); | ||
border-radius: 50%; | ||
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25); | ||
width: 24px; | ||
height: 24px; | ||
position: absolute; | ||
top: 4px; | ||
left: 4px; | ||
transition: left 0.25s; | ||
} | ||
.toggle:hover .toggle-switch:before { | ||
background: linear-gradient(to bottom, #fff 0%, #fff 100%); | ||
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5); | ||
} | ||
.toggle-checkbox:checked + .toggle-switch { | ||
background: #56c080; | ||
} | ||
.toggle-checkbox:checked + .toggle-switch:before { | ||
left: 30px; | ||
} | ||
|
||
.toggle-checkbox { | ||
position: absolute; | ||
visibility: hidden; | ||
} | ||
|
||
.toggle-label { | ||
margin-left: 5px; | ||
position: relative; | ||
top: 2px; | ||
} | ||
.toggle-label-desc{ | ||
font-size:12px; | ||
line-height:1.2em; | ||
padding-left:67px; | ||
} | ||
|
||
hr{ | ||
border:0px; | ||
border-bottom:1px solid #e3e3e3; | ||
} |
Oops, something went wrong.