parent
b979e839d4
commit
49b2140f62
@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
@ -1,11 +0,0 @@
|
||||
/*
|
||||
* angular-tooltips
|
||||
* 1.2.2
|
||||
*
|
||||
* Angular.js tooltips module.
|
||||
* http://720kb.github.io/angular-tooltips
|
||||
*
|
||||
* MIT license
|
||||
* Tue Jun 20 2017
|
||||
*/
|
||||
tooltip._bottom:not(._left):not(._right) tip tip-arrow,tooltip._top:not(._left):not(._right) tip tip-arrow{border-left:6px solid transparent;border-right:6px solid transparent;left:50%;margin-left:-6px;content:'';height:0}@-webkit-keyframes animate-tooltip{0%{opacity:0}50%{opacity:.5}60%{opacity:.8}70%{opacity:.9}90%{opacity:1}}@-moz-keyframes animate-tooltip{0%{opacity:0}50%{opacity:.5}60%{opacity:.8}70%{opacity:.9}90%{opacity:1}}@-ms-keyframes animate-tooltip{0%{opacity:0}50%{opacity:.5}60%{opacity:.8}70%{opacity:.9}90%{opacity:1}}@keyframes animate-tooltip{0%{opacity:0}50%{opacity:.5}60%{opacity:.8}70%{opacity:.9}90%{opacity:1}}._exradicated-tooltip{display:block;opacity:1;position:absolute;z-index:999}tooltip{display:inline-block;position:relative}tooltip._multiline{display:block}tooltip._slow._ready tip{animation:animate-tooltip .65s}tooltip._fast._ready tip{animation:animate-tooltip .15s}tooltip._steady._ready tip{animation:animate-tooltip .35s}tooltip tip{border-radius:3px;background:rgba(0,0,0,.85);color:#fff;display:none;line-height:normal;max-width:500px;min-width:100px;opacity:0;padding:8px 16px;position:absolute;text-align:center;width:auto;will-change:top,left,bottom,right}tooltip tip._hidden{display:block;visibility:hidden}tooltip.active:not(._force-hidden) tip{display:block;opacity:1;z-index:999}tooltip tip-tip{font-size:.95em}tooltip tip-tip._large{font-size:1.1em}tooltip tip-tip._small{font-size:.8em}tooltip._top:not(._left):not(._right) tip{left:50%;top:-9px;-webkit-transform:translateX(-50%) translateY(-100%);transform:translateX(-50%) translateY(-100%)}tooltip._top:not(._left):not(._right) tip tip-arrow{border-top:6px solid rgba(0,0,0,.85);position:absolute;top:100%;width:0}tooltip._bottom:not(._left):not(._right) tip{right:50%;top:100%;-webkit-transform:translateX(50%) translateY(9px);transform:translateX(50%) translateY(9px)}tooltip._bottom:not(._left):not(._right) tip tip-arrow{border-bottom:6px solid rgba(0,0,0,.85);bottom:100%;position:absolute;width:0}tooltip._right:not(._top):not(._bottom) tip{left:100%;top:50%;-webkit-transform:translateX(9px) translateY(-50%);transform:translateX(9px) translateY(-50%)}tooltip._right:not(._top):not(._bottom) tip tip-arrow{border-bottom:6px solid transparent;border-right:6px solid rgba(0,0,0,.85);border-top:6px solid transparent;content:'';height:0;margin-top:-6px;position:absolute;right:100%;top:50%;width:0}tooltip._left:not(._top):not(._bottom) tip{left:-9px;top:50%;-webkit-transform:translateX(-100%) translateY(-50%);transform:translateX(-100%) translateY(-50%)}tooltip._left:not(._top):not(._bottom) tip tip-arrow{border-bottom:6px solid transparent;border-left:6px solid rgba(0,0,0,.85);border-top:6px solid transparent;content:'';height:0;left:100%;margin-top:-6px;position:absolute;top:50%;width:0}tooltip._top._left tip tip-arrow,tooltip._top._right tip tip-arrow{border-top:6px solid rgba(0,0,0,.85);border-left:6px solid transparent;border-right:6px solid transparent;content:'';height:0;margin-left:-6px;position:absolute;width:0}tooltip._top._left tip{left:-9px;top:-9px;-webkit-transform:translateX(-100%) translateY(-100%);transform:translateX(-100%) translateY(-100%)}tooltip._top._left tip tip-arrow{left:90%;top:100%}tooltip._top._right tip{left:100%;top:-9px;-webkit-transform:translateX(9px) translateY(-100%);transform:translateX(9px) translateY(-100%)}tooltip._top._right tip tip-arrow{left:10%;top:100%}tooltip._bottom._left tip{left:-9px;top:100%;-webkit-transform:translateX(-100%) translateY(9px);transform:translateX(-100%) translateY(9px)}tooltip._bottom._left tip tip-arrow{border-bottom:6px solid rgba(0,0,0,.85);border-left:6px solid transparent;border-right:6px solid transparent;bottom:100%;content:'';height:0;left:90%;margin-left:-6px;position:absolute;width:0}tooltip._bottom._right tip{left:100%;top:100%;-webkit-transform:translateX(9px) translateY(9px);transform:translateX(9px) translateY(9px)}tooltip._bottom._right tip tip-arrow{border-bottom:6px solid rgba(0,0,0,.85);border-left:6px solid transparent;border-right:6px solid transparent;bottom:100%;content:'';height:0;left:10%;margin-left:-6px;position:absolute;width:0}tip-tip .close-button{cursor:pointer;float:right;left:8%;margin-top:-7%;padding:3px;position:relative}
|
@ -1,339 +0,0 @@
|
||||
/*
|
||||
FONTS
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Quicksand';
|
||||
src: url('../font/quicksand-regular-webfont.woff2') format('woff2'),
|
||||
url('../font/quicksand-regular-webfont.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Quicksand';
|
||||
src: url('../font/quicksand-bold-webfont.woff2') format('woff2'),
|
||||
url('../font/quicksand-bold-webfont.woff') format('woff');
|
||||
font-weight: 700;
|
||||
font-style: normal;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
BODY
|
||||
*/
|
||||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
font-family: 'Quicksand', sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
MISC
|
||||
*/
|
||||
[ng-cloak] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.clipboard-success {
|
||||
font-size: 0.8rem;
|
||||
color: #28a745;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
HEADER
|
||||
*/
|
||||
header {
|
||||
background-color: #000;
|
||||
padding: 0.5rem 0;
|
||||
text-align: center;
|
||||
margin-bottom: 0.5rem;
|
||||
color: #fff;
|
||||
font-size: 2.2rem;
|
||||
}
|
||||
|
||||
header .logo {
|
||||
height: 3rem;
|
||||
margin: 0.5rem 0 0.3rem;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
MAIN
|
||||
*/
|
||||
main {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
main .options {
|
||||
padding-top: 1.5rem;
|
||||
}
|
||||
|
||||
main .options .card {
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
|
||||
main .options .card .card-body {
|
||||
padding: 0.25rem 0.5rem 0.5rem;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
main .options .card + .card {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
main .options .card .form-label {
|
||||
margin-bottom: 0.15rem;
|
||||
margin-left: 0.15rem;
|
||||
}
|
||||
|
||||
main .options .card .form-group {
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
main .options .card .form-subgroup {
|
||||
margin-left: 0.35rem;
|
||||
border-left: 2px solid #ced4da;
|
||||
padding-left: 0.5rem;
|
||||
}
|
||||
|
||||
main .options .card .form-subgroup .form-subgroup {
|
||||
margin-left: 0;
|
||||
border-left: 1px solid #d7e0ea;
|
||||
padding-left: 0.4rem;
|
||||
}
|
||||
|
||||
main .options .card .form-subgroup .form-check + .form-subgroup {
|
||||
margin-left: 5.5px;
|
||||
}
|
||||
|
||||
main .options .card .form-control[type="text"]:placeholder-shown,
|
||||
main .options .card .form-control[type="email"]:placeholder-shown {
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
|
||||
main .options .card .form-control.domain:placeholder-shown {
|
||||
/*background-color: #f8d7da;*/
|
||||
/*background-color: #dedeff;*/
|
||||
border-color: #3131ff;
|
||||
}
|
||||
|
||||
main .options .card .form-control.domain::placeholder {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
main .options .card .form-check-label {
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
main .options .card .form-group:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
main .options .card .row.no-gutters ~ .row.no-gutters {
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
main .options .card .row.no-gutters .col-md-6:first-child {
|
||||
padding-right: 3px;
|
||||
}
|
||||
|
||||
main .options .card .row.no-gutters .col-md-6:last-child {
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
main .file {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
main .file .btn-clipboard {
|
||||
font-size: 0;
|
||||
padding: 0.2rem 0.4rem 0.05rem;
|
||||
vertical-align: text-bottom;
|
||||
}
|
||||
|
||||
main .file .code,
|
||||
main .commands {
|
||||
overflow-x: auto;
|
||||
font-size: 0.75rem;
|
||||
line-height: 1.25;
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
|
||||
main .commands {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
main .file .code.source.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
main .file .code pre,
|
||||
main .commands pre {
|
||||
margin-bottom: 0;
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
main .file .code pre code,
|
||||
main .commands pre code {
|
||||
display: block;
|
||||
padding: 0.6rem;
|
||||
-moz-tab-size: 4;
|
||||
tab-size: 4;
|
||||
overflow: visible;
|
||||
overflow-x: visible;
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
main .sidebar {
|
||||
margin-top: -2.4rem;
|
||||
}
|
||||
}
|
||||
|
||||
main .sidebar .github-link {
|
||||
text-align: center;
|
||||
font-size: 1rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
main .sidebar .github-link small {
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
main .sidebar .github-link img {
|
||||
height: 1.2rem;
|
||||
vertical-align: -4px;
|
||||
}
|
||||
|
||||
main .sidebar .github-star {
|
||||
width: 132px;
|
||||
height: 30px;
|
||||
display: block;
|
||||
border: 0;
|
||||
overflow: hidden;
|
||||
margin: 0 auto 0.25rem;
|
||||
}
|
||||
|
||||
main .buttons {
|
||||
text-align: center;
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
|
||||
main .buttons .btn-download {
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
|
||||
main .url .btn-url img,
|
||||
main .buttons .btn-download img {
|
||||
vertical-align: -2px;
|
||||
margin-right: 0.1rem;
|
||||
height: 1rem;
|
||||
}
|
||||
|
||||
main .buttons .btn-reset img {
|
||||
vertical-align: -3px;
|
||||
height: 0.9rem;
|
||||
}
|
||||
|
||||
main .presets {
|
||||
text-align: center;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
main .presets .btn img {
|
||||
height: 1.1rem;
|
||||
vertical-align: text-bottom;
|
||||
}
|
||||
|
||||
main .presets .btn.btn-outline-dark:hover {
|
||||
background-color: #666;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
FOOTER
|
||||
*/
|
||||
footer {
|
||||
padding: 2rem 0 0.5rem;
|
||||
text-align: center;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
footer img.balaton {
|
||||
height: 1.6rem;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
TOOLTIPs
|
||||
*/
|
||||
tooltip tip {
|
||||
min-width: 150px;
|
||||
padding: 4px 12px;
|
||||
}
|
||||
|
||||
tooltip tip-tip {
|
||||
line-height: 1.1;
|
||||
display: block;
|
||||
}
|
||||
|
||||
tooltip tip-tip._small {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/*
|
||||
ADS
|
||||
*/
|
||||
.adsbygoogle-container {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.adsbygoogle-container .adsbygoogle {
|
||||
display: block;
|
||||
position: relative;
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
|
||||
main .options .adsbygoogle-container {
|
||||
margin-top: -1rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
main .options .adsbygoogle-container .adsbygoogle {
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
main .sidebar .adsbygoogle-container .adsbygoogle {
|
||||
height: 600px;
|
||||
}
|
||||
|
||||
.adsbygoogle-container .adsbygoogle[data-adsbygoogle-status="done"] {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.adsbygoogle-container .note {
|
||||
text-align: center;
|
||||
color: #444;
|
||||
font-size: 0.6rem;
|
||||
}
|
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
||||
.hljs{display:block;overflow-x:auto;padding:0.5em;color:#333;background:#f8f8f8}.hljs-comment,.hljs-quote{color:#998;font-style:italic}.hljs-keyword,.hljs-selector-tag,.hljs-subst{color:#333;font-weight:bold}.hljs-number,.hljs-literal,.hljs-variable,.hljs-template-variable,.hljs-tag .hljs-attr{color:#008080}.hljs-string,.hljs-doctag{color:#d14}.hljs-title,.hljs-section,.hljs-selector-id{color:#900;font-weight:bold}.hljs-subst{font-weight:normal}.hljs-type,.hljs-class .hljs-title{color:#458;font-weight:bold}.hljs-tag,.hljs-name,.hljs-attribute{color:#000080;font-weight:normal}.hljs-regexp,.hljs-link{color:#009926}.hljs-symbol,.hljs-bullet{color:#990073}.hljs-built_in,.hljs-builtin-name{color:#0086b3}.hljs-meta{color:#999;font-weight:bold}.hljs-deletion{background:#fdd}.hljs-addition{background:#dfd}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:bold}
|
Loading…
Reference in new issue