🏗️ First time sync the css & js files from hexo theme NexT
176
static/css/hover.css
Normal file
@@ -0,0 +1,176 @@
|
||||
/** Animation for link hover style */
|
||||
|
||||
@keyframes wobble-vertical {
|
||||
16.65% {
|
||||
transform: translateX(8px);
|
||||
}
|
||||
|
||||
33.3% {
|
||||
transform: translateX(-6px);
|
||||
}
|
||||
|
||||
49.95% {
|
||||
transform: translateX(4px);
|
||||
}
|
||||
|
||||
66.6% {
|
||||
transform: translateX(-2px);
|
||||
}
|
||||
|
||||
83.25% {
|
||||
transform: translateX(1px);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* Icon Pulse */
|
||||
@-webkit-keyframes hvr-icon-pulse {
|
||||
25% {
|
||||
-webkit-transform: scale(1.3);
|
||||
transform: scale(1.3);
|
||||
}
|
||||
75% {
|
||||
-webkit-transform: scale(0.8);
|
||||
transform: scale(0.8);
|
||||
}
|
||||
}
|
||||
@keyframes hvr-icon-pulse {
|
||||
25% {
|
||||
-webkit-transform: scale(1.3);
|
||||
transform: scale(1.3);
|
||||
}
|
||||
75% {
|
||||
-webkit-transform: scale(0.8);
|
||||
transform: scale(0.8);
|
||||
}
|
||||
}
|
||||
.hvr-icon-pulse {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
-webkit-transform: perspective(1px) translateZ(0);
|
||||
transform: perspective(1px) translateZ(0);
|
||||
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
|
||||
}
|
||||
.hvr-icon-pulse .hvr-icon {
|
||||
-webkit-transform: translateZ(0);
|
||||
transform: translateZ(0);
|
||||
-webkit-transition-timing-function: ease-out;
|
||||
transition-timing-function: ease-out;
|
||||
}
|
||||
.hvr-icon-pulse:hover .hvr-icon, .hvr-icon-pulse:focus .hvr-icon, .hvr-icon-pulse:active .hvr-icon {
|
||||
-webkit-animation-name: hvr-icon-pulse;
|
||||
animation-name: hvr-icon-pulse;
|
||||
-webkit-animation-duration: 1s;
|
||||
animation-duration: 1s;
|
||||
-webkit-animation-timing-function: linear;
|
||||
animation-timing-function: linear;
|
||||
-webkit-animation-iteration-count: infinite;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
|
||||
/* Bounce To Right */
|
||||
.hvr-bounce-to-right {
|
||||
background: var(--btn-default-bg);
|
||||
border: 2px solid var(--btn-default-border-color);
|
||||
border-radius: 2px;
|
||||
color: var(--btn-default-color);
|
||||
display: inline-block;
|
||||
font-size: 0.875em;
|
||||
line-height: 2;
|
||||
padding: 0 20px;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
-webkit-transform: perspective(1px) translateZ(0);
|
||||
transform: perspective(1px) translateZ(0);
|
||||
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
|
||||
position: relative;
|
||||
-webkit-transition-property: color;
|
||||
transition-property: color;
|
||||
-webkit-transition-duration: 0.5s;
|
||||
transition-duration: 0.5s;
|
||||
}
|
||||
.hvr-bounce-to-right:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: var(--btn-default-hover-bg);
|
||||
-webkit-transform: scaleX(0);
|
||||
transform: scaleX(0);
|
||||
-webkit-transform-origin: 0 50%;
|
||||
transform-origin: 0 50%;
|
||||
-webkit-transition-property: transform;
|
||||
transition-property: transform;
|
||||
-webkit-transition-duration: 0.5s;
|
||||
transition-duration: 0.5s;
|
||||
-webkit-transition-timing-function: ease-out;
|
||||
transition-timing-function: ease-out;
|
||||
}
|
||||
.hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
|
||||
background: var(--btn-default-bg);
|
||||
border-color: var(--btn-default-hover-border-color);
|
||||
color: var(--btn-default-hover-color);
|
||||
}
|
||||
.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
|
||||
-webkit-transform: scaleX(1);
|
||||
transform: scaleX(1);
|
||||
-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
|
||||
transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
|
||||
}
|
||||
|
||||
/* Shutter Out Horizontal */
|
||||
.hvr-shutter-out-horizontal {
|
||||
background: var(--btn-default-bg);
|
||||
border: 2px solid var(--btn-default-border-color);
|
||||
border-radius: 2px;
|
||||
color: var(--btn-default-color);
|
||||
display: inline-block;
|
||||
font-size: 0.875em;
|
||||
line-height: 2;
|
||||
padding: 0 20px;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
-webkit-transform: perspective(1px) translateZ(0);
|
||||
transform: perspective(1px) translateZ(0);
|
||||
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
|
||||
position: relative;
|
||||
-webkit-transition-property: color;
|
||||
transition-property: color;
|
||||
-webkit-transition-duration: 0.3s;
|
||||
transition-duration: 0.3s;
|
||||
}
|
||||
.hvr-shutter-out-horizontal:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
z-index: -1;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: var(--btn-default-hover-bg);
|
||||
-webkit-transform: scaleX(0);
|
||||
transform: scaleX(0);
|
||||
-webkit-transform-origin: 50%;
|
||||
transform-origin: 50%;
|
||||
-webkit-transition-property: transform;
|
||||
transition-property: transform;
|
||||
-webkit-transition-duration: 0.3s;
|
||||
transition-duration: 0.3s;
|
||||
-webkit-transition-timing-function: ease-out;
|
||||
transition-timing-function: ease-out;
|
||||
}
|
||||
.hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
|
||||
background: var(--btn-default-bg);
|
||||
border-color: var(--btn-default-hover-border-color);
|
||||
color: var(--btn-default-hover-color);
|
||||
}
|
||||
.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
|
||||
-webkit-transform: scaleX(1);
|
||||
transform: scaleX(1);
|
||||
}
|
||||
1
static/imgs/cc/big/by.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="120" height="42"><path d="m3.41.446 113.353.202c1.583 0 2.998-.236 2.998 3.16l-.138 37.329H.548V3.669C.548 1.995.71.446 3.41.446z" fill="#aab2ab"/><path d="M117.753 0H2.248A2.25 2.25 0 0 0 0 2.247v39.246c0 .28.227.507.508.507h118.984c.28 0 .508-.227.508-.507V2.247A2.25 2.25 0 0 0 117.753 0zM2.248 1.015h115.505c.68 0 1.232.553 1.232 1.232V29.46H36.429c-3.026 5.47-8.857 9.185-15.547 9.185-6.693 0-12.521-3.71-15.545-9.185H1.015V2.247c0-.68.553-1.232 1.233-1.232z"/><path d="M34.523 19.545c.005 7.53-6.097 13.636-13.627 13.642-7.53.004-13.638-6.096-13.643-13.626v-.016C7.248 12.015 13.35 5.908 20.88 5.903 28.41 5.9 34.519 12 34.523 19.528v.017z" fill="#fff"/><path d="M31.973 8.44c3.023 3.024 4.535 6.726 4.535 11.105 0 4.38-1.486 8.042-4.458 10.988-3.154 3.102-6.88 4.653-11.182 4.653-4.249 0-7.911-1.538-10.986-4.615-3.076-3.075-4.613-6.75-4.613-11.026 0-4.275 1.537-7.977 4.613-11.105 2.997-3.024 6.66-4.536 10.986-4.536 4.38 0 8.08 1.512 11.104 4.536zm-20.056 2.034c-2.556 2.582-3.834 5.606-3.834 9.075 0 3.468 1.266 6.466 3.795 8.996 2.53 2.529 5.542 3.794 9.037 3.794 3.495 0 6.532-1.278 9.115-3.833 2.451-2.373 3.677-5.358 3.677-8.957 0-3.572-1.246-6.604-3.738-9.095-2.49-2.49-5.508-3.735-9.054-3.735s-6.547 1.252-8.998 3.755zm6.727 7.549c-.39-.852-.974-1.277-1.755-1.277-1.378 0-2.067.928-2.067 2.783 0 1.856.69 2.783 2.067 2.783.91 0 1.56-.452 1.95-1.357l1.912 1.017c-.911 1.618-2.278 2.428-4.1 2.428-1.405 0-2.53-.43-3.376-1.292-.846-.862-1.27-2.05-1.27-3.563 0-1.488.437-2.67 1.309-3.544.872-.875 1.958-1.311 3.26-1.311 1.926 0 3.304.758 4.139 2.274l-2.07 1.059zm8.99 0c-.39-.852-.964-1.277-1.72-1.277-1.405 0-2.11.928-2.11 2.783 0 1.856.705 2.783 2.11 2.783.913 0 1.552-.452 1.916-1.357l1.953 1.017c-.91 1.618-2.274 2.428-4.092 2.428-1.404 0-2.527-.43-3.372-1.292-.843-.862-1.266-2.05-1.266-3.563 0-1.488.429-2.67 1.286-3.544.857-.875 1.948-1.311 3.274-1.311 1.922 0 3.3.758 4.13 2.274l-2.109 1.059z"/><g transform="matrix(.99377 0 0 .99367 -177.693 0)"><circle cx="255.551" cy="15.313" r="10.807" fill="#fff"/><path d="M258.678 12.187a.754.754 0 0 0-.753-.754h-4.773a.754.754 0 0 0-.753.754v4.773h1.33v5.652h3.618V16.96h1.331v-4.773z"/><circle cx="255.539" cy="9.172" r="1.633"/><path clip-rule="evenodd" d="M255.524 3.407c-3.233 0-5.969 1.128-8.208 3.384-2.298 2.334-3.446 5.096-3.446 8.285s1.148 5.931 3.446 8.226c2.298 2.295 5.034 3.442 8.208 3.442 3.213 0 5.998-1.156 8.353-3.471 2.22-2.197 3.33-4.93 3.33-8.197 0-3.268-1.13-6.03-3.387-8.285-2.26-2.256-5.025-3.384-8.296-3.384zm.03 2.1c2.648 0 4.897.934 6.746 2.801 1.87 1.847 2.804 4.103 2.804 6.768 0 2.683-.915 4.91-2.745 6.68-1.929 1.906-4.196 2.859-6.806 2.859-2.61 0-4.86-.943-6.747-2.83-1.89-1.887-2.833-4.123-2.833-6.71 0-2.586.954-4.842 2.862-6.767 1.83-1.867 4.07-2.801 6.718-2.801z" fill-rule="evenodd"/></g><path d="M73.809 32.747c.315 0 .604.029.865.084.26.055.482.146.668.274.186.126.33.295.432.504.102.21.154.47.154.78 0 .333-.076.61-.229.833-.15.223-.376.405-.673.547.41.118.715.323.917.617.202.294.303.649.303 1.063 0 .334-.065.623-.195.867s-.306.444-.525.598c-.22.155-.472.27-.753.344a3.381 3.381 0 0 1-.87.111h-3.216v-6.622h3.122zm-.186 2.679c.26 0 .473-.062.641-.186.167-.123.25-.323.25-.6a.768.768 0 0 0-.083-.38.625.625 0 0 0-.223-.232.945.945 0 0 0-.32-.115 2.156 2.156 0 0 0-.376-.032h-1.365v1.545h1.476zm.085 2.81c.143 0 .279-.014.409-.042a1.04 1.04 0 0 0 .344-.139.704.704 0 0 0 .237-.264.901.901 0 0 0 .088-.426c0-.34-.096-.583-.288-.728-.192-.145-.446-.218-.762-.218h-1.59v1.817h1.562zm2.795-5.489h1.633l1.551 2.616 1.541-2.616h1.624l-2.458 4.08v2.542h-1.46v-2.578l-2.431-4.044z" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 3.6 KiB |
1
static/imgs/cc/big/by_nc.svg
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
1
static/imgs/cc/big/by_nc_nd.svg
Normal file
|
After Width: | Height: | Size: 7.0 KiB |
1
static/imgs/cc/big/by_nc_sa.svg
Normal file
|
After Width: | Height: | Size: 8.0 KiB |
1
static/imgs/cc/big/by_nd.svg
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
1
static/imgs/cc/big/by_sa.svg
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
1
static/imgs/cc/big/cc_zero.svg
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
1
static/imgs/cc/cc.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 496 512'><path fill='#4a4a4a' d='M245.8 214.9l-33.2 17.3c-9.4-19.6-25.2-20-27.4-20-22.2 0-33.3 14.6-33.3 43.9 0 23.5 9.2 43.8 33.3 43.8 14.4 0 24.6-7 30.5-21.3l30.6 15.5a73.2 73.2 0 01-65.1 39c-22.6 0-74-10.3-74-77 0-58.7 43-77 72.6-77 30.8-.1 52.7 11.9 66 35.8zm143 0l-32.7 17.3c-9.5-19.8-25.7-20-27.9-20-22.1 0-33.2 14.6-33.2 43.9 0 23.5 9.2 43.8 33.2 43.8 14.5 0 24.7-7 30.5-21.3l31 15.5c-2 3.8-21.3 39-65 39-22.7 0-74-9.9-74-77 0-58.7 43-77 72.6-77C354 179 376 191 389 214.8zM247.7 8C104.7 8 0 123 0 256c0 138.4 113.6 248 247.6 248C377.5 504 496 403 496 256 496 118 389.4 8 247.6 8zm.8 450.8c-112.5 0-203.7-93-203.7-202.8 0-105.5 85.5-203.3 203.8-203.3A201.7 201.7 0 01451.3 256c0 121.7-99.7 202.9-202.9 202.9z'/></svg>
|
||||
|
After Width: | Height: | Size: 776 B |
1
static/imgs/cc/small/by.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="15"><defs><clipPath clipPathUnits="userSpaceOnUse" id="a"><path stroke-width=".922" d="M171.998 239.12h20.614v12.484h-20.614z"/></clipPath></defs><path fill="#fff" stroke="#000" stroke-width="1.042" d="M170.5 237.862h80v15h-80z" transform="matrix(.9875 0 0 .93335 -167.875 -221.476)"/><path d="M1.975 1.933h76.038v11.2H1.975z"/><path d="M1.975 1.945v11.2h20.08c1.293-1.633 2.165-3.532 2.165-5.6 0-2.054-.857-3.973-2.134-5.6H1.975z" fill="#abb1aa"/><g clip-path="url(#a)" transform="matrix(.94924 0 0 .89719 -161.127 -212.602)"><path d="M190.064 245.362a7.047 7.047 0 0 1-14.094.009v-.009a7.047 7.047 0 1 1 14.094-.008v.008z" fill="#fff"/><path d="M188.746 239.622c1.562 1.563 2.344 3.477 2.344 5.74 0 2.264-.768 4.157-2.304 5.68-1.63 1.603-3.556 2.405-5.779 2.405-2.196 0-4.089-.795-5.678-2.385-1.59-1.59-2.385-3.49-2.385-5.7s.795-4.123 2.385-5.74c1.549-1.563 3.442-2.344 5.678-2.344 2.264 0 4.176.781 5.739 2.344zm-10.365 1.052c-1.321 1.334-1.982 2.897-1.982 4.69 0 1.793.654 3.343 1.962 4.65 1.307 1.308 2.864 1.961 4.67 1.961s3.376-.66 4.71-1.98c1.268-1.228 1.901-2.77 1.901-4.63 0-1.847-.644-3.414-1.931-4.701-1.287-1.288-2.847-1.931-4.68-1.931-1.833 0-3.383.647-4.65 1.94zm3.477 3.902c-.202-.44-.504-.66-.907-.66-.713 0-1.07.479-1.07 1.438 0 .96.357 1.439 1.07 1.439.47 0 .806-.234 1.008-.702l.987.526c-.47.836-1.177 1.255-2.118 1.255-.727 0-1.308-.223-1.745-.668-.438-.445-.656-1.06-.656-1.842 0-.769.225-1.38.676-1.831.45-.453 1.012-.679 1.684-.679.996 0 1.709.393 2.14 1.176l-1.07.548zm4.646 0c-.202-.44-.498-.66-.889-.66-.727 0-1.09.479-1.09 1.438 0 .96.363 1.439 1.09 1.439.471 0 .801-.234.99-.702l1.01.526c-.47.836-1.176 1.255-2.116 1.255-.725 0-1.306-.223-1.742-.668-.436-.445-.654-1.06-.654-1.842 0-.769.221-1.38.664-1.831.443-.453 1.007-.679 1.692-.679.994 0 1.706.393 2.135 1.176l-1.09.548z"/></g><path d="M29.052 6.901c.242 0 .426-.05.551-.15.126-.1.188-.247.188-.442 0-.193-.062-.34-.188-.44-.125-.102-.309-.153-.551-.153h-.851v1.185h.851m.052 2.45c.309 0 .54-.062.695-.184.157-.123.236-.308.236-.555 0-.243-.077-.424-.232-.544-.154-.123-.387-.184-.7-.184h-.902v1.467h.903m1.43-2.015c.33.09.586.257.768.5.18.242.271.54.271.892 0 .54-.194.943-.583 1.208-.389.265-.98.397-1.774.397h-2.553v-5.6h2.31c.828 0 1.427.118 1.797.353.373.235.56.611.56 1.129 0 .272-.068.505-.204.698-.136.19-.333.33-.592.423m.906-2.603h1.682L34.48 6.73l1.359-1.996h1.686l-2.274 3.241v2.36h-1.538v-2.36l-2.273-3.24" font-size="8.259" font-weight="700" fill="#fff" font-family="Bitstream Vera Sans"/></svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
1
static/imgs/cc/small/by_nc.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="15"><defs><clipPath clipPathUnits="userSpaceOnUse" id="a"><path stroke-width=".922" d="M171.998 239.12h20.614v12.484h-20.614z"/></clipPath></defs><path fill="#fff" stroke="#000" stroke-width="1.042" d="M170.5 237.862h80v15h-80z" transform="matrix(.9875 0 0 .93335 -167.875 -221.476)"/><path d="M1.975 1.933h76.038v11.2H1.975z"/><path d="M1.975 1.945v11.2h20.08c1.293-1.633 2.165-3.532 2.165-5.6 0-2.054-.857-3.973-2.134-5.6H1.975z" fill="#abb1aa"/><g clip-path="url(#a)" transform="matrix(.94924 0 0 .89719 -161.127 -212.602)"><path d="M190.064 245.362a7.047 7.047 0 0 1-14.094.009v-.009a7.047 7.047 0 1 1 14.094-.008v.008z" fill="#fff"/><path d="M188.746 239.622c1.562 1.563 2.344 3.477 2.344 5.74 0 2.264-.768 4.157-2.304 5.68-1.63 1.603-3.556 2.405-5.779 2.405-2.196 0-4.089-.795-5.678-2.385-1.59-1.59-2.385-3.49-2.385-5.7s.795-4.123 2.385-5.74c1.549-1.563 3.442-2.344 5.678-2.344 2.264 0 4.176.781 5.739 2.344zm-10.365 1.052c-1.321 1.334-1.982 2.897-1.982 4.69 0 1.793.654 3.343 1.962 4.65 1.307 1.308 2.864 1.961 4.67 1.961s3.376-.66 4.71-1.98c1.268-1.228 1.901-2.77 1.901-4.63 0-1.847-.644-3.414-1.931-4.701-1.287-1.288-2.847-1.931-4.68-1.931-1.833 0-3.383.647-4.65 1.94zm3.477 3.902c-.202-.44-.504-.66-.907-.66-.713 0-1.07.479-1.07 1.438 0 .96.357 1.439 1.07 1.439.47 0 .806-.234 1.008-.702l.987.526c-.47.836-1.177 1.255-2.118 1.255-.727 0-1.308-.223-1.745-.668-.438-.445-.656-1.06-.656-1.842 0-.769.225-1.38.676-1.831.45-.453 1.012-.679 1.684-.679.996 0 1.709.393 2.14 1.176l-1.07.548zm4.646 0c-.202-.44-.498-.66-.889-.66-.727 0-1.09.479-1.09 1.438 0 .96.363 1.439 1.09 1.439.471 0 .801-.234.99-.702l1.01.526c-.47.836-1.176 1.255-2.116 1.255-.725 0-1.306-.223-1.742-.668-.436-.445-.654-1.06-.654-1.842 0-.769.221-1.38.664-1.831.443-.453 1.007-.679 1.692-.679.994 0 1.706.393 2.135 1.176l-1.09.548z"/></g><path d="M29.052 6.901c.242 0 .426-.05.551-.15.126-.1.188-.247.188-.442 0-.193-.062-.34-.188-.44-.125-.102-.309-.153-.551-.153h-.851v1.185h.851m.052 2.45c.309 0 .54-.062.695-.184.157-.123.236-.308.236-.555 0-.243-.077-.424-.232-.544-.154-.123-.387-.184-.7-.184h-.902v1.467h.903m1.43-2.015c.33.09.586.257.768.5.18.242.271.54.271.892 0 .54-.194.943-.583 1.208-.389.265-.98.397-1.774.397h-2.553v-5.6h2.31c.828 0 1.427.118 1.797.353.373.235.56.611.56 1.129 0 .272-.068.505-.204.698-.136.19-.333.33-.592.423m.906-2.603h1.682L34.48 6.73l1.359-1.996h1.686l-2.274 3.241v2.36h-1.538v-2.36l-2.273-3.24m5.254 2.842h2.51v1.092h-2.51V7.576m3.712-2.843h1.718l2.17 3.841v-3.84h1.458v5.6h-1.718l-2.17-3.842v3.841h-1.458v-5.6m11.588 5.293a4.092 4.092 0 0 1-.883.311 4.29 4.29 0 0 1-.96.105c-.993 0-1.78-.26-2.36-.78-.582-.523-.872-1.23-.872-2.123 0-.895.29-1.603.871-2.123.58-.523 1.368-.784 2.362-.784.333 0 .652.035.959.105.306.07.6.174.883.311v1.16a3.445 3.445 0 0 0-.843-.402 2.967 2.967 0 0 0-.876-.127c-.548 0-.98.165-1.294.495-.314.33-.472.785-.472 1.365 0 .578.158 1.031.472 1.362.314.33.746.495 1.294.495.307 0 .599-.043.876-.128s.558-.219.843-.401v1.159" font-size="8.259" font-weight="700" fill="#fff" font-family="Bitstream Vera Sans"/></svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
1
static/imgs/cc/small/by_nc_nd.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="15"><defs><clipPath clipPathUnits="userSpaceOnUse" id="a"><path stroke-width=".922" d="M171.998 239.12h20.614v12.484h-20.614z"/></clipPath></defs><path fill="#fff" stroke="#000" stroke-width="1.042" d="M170.5 237.862h80v15h-80z" transform="matrix(.9875 0 0 .93335 -167.875 -221.476)"/><path d="M1.975 1.933h76.038v11.2H1.975z"/><path d="M1.975 1.945v11.2h20.08c1.293-1.633 2.165-3.532 2.165-5.6 0-2.054-.857-3.973-2.134-5.6H1.975z" fill="#abb1aa"/><g clip-path="url(#a)" transform="matrix(.94924 0 0 .89719 -161.127 -212.602)"><path d="M190.064 245.362a7.047 7.047 0 0 1-14.094.009v-.009a7.047 7.047 0 1 1 14.094-.008v.008z" fill="#fff"/><path d="M188.746 239.622c1.562 1.563 2.344 3.477 2.344 5.74 0 2.264-.768 4.157-2.304 5.68-1.63 1.603-3.556 2.405-5.779 2.405-2.196 0-4.089-.795-5.678-2.385-1.59-1.59-2.385-3.49-2.385-5.7s.795-4.123 2.385-5.74c1.549-1.563 3.442-2.344 5.678-2.344 2.264 0 4.176.781 5.739 2.344zm-10.365 1.052c-1.321 1.334-1.982 2.897-1.982 4.69 0 1.793.654 3.343 1.962 4.65 1.307 1.308 2.864 1.961 4.67 1.961s3.376-.66 4.71-1.98c1.268-1.228 1.901-2.77 1.901-4.63 0-1.847-.644-3.414-1.931-4.701-1.287-1.288-2.847-1.931-4.68-1.931-1.833 0-3.383.647-4.65 1.94zm3.477 3.902c-.202-.44-.504-.66-.907-.66-.713 0-1.07.479-1.07 1.438 0 .96.357 1.439 1.07 1.439.47 0 .806-.234 1.008-.702l.987.526c-.47.836-1.177 1.255-2.118 1.255-.727 0-1.308-.223-1.745-.668-.438-.445-.656-1.06-.656-1.842 0-.769.225-1.38.676-1.831.45-.453 1.012-.679 1.684-.679.996 0 1.709.393 2.14 1.176l-1.07.548zm4.646 0c-.202-.44-.498-.66-.889-.66-.727 0-1.09.479-1.09 1.438 0 .96.363 1.439 1.09 1.439.471 0 .801-.234.99-.702l1.01.526c-.47.836-1.176 1.255-2.116 1.255-.725 0-1.306-.223-1.742-.668-.436-.445-.654-1.06-.654-1.842 0-.769.221-1.38.664-1.831.443-.453 1.007-.679 1.692-.679.994 0 1.706.393 2.135 1.176l-1.09.548z"/></g><path d="M29.052 6.901c.242 0 .426-.05.551-.15.126-.1.188-.247.188-.442 0-.193-.062-.34-.188-.44-.125-.102-.309-.153-.551-.153h-.851v1.185h.851m.052 2.45c.309 0 .54-.062.695-.184.157-.123.236-.308.236-.555 0-.243-.077-.424-.232-.544-.154-.123-.387-.184-.7-.184h-.902v1.467h.903m1.43-2.015c.33.09.586.257.768.5.18.242.271.54.271.892 0 .54-.194.943-.583 1.208-.389.265-.98.397-1.774.397h-2.553v-5.6h2.31c.828 0 1.427.118 1.797.353.373.235.56.611.56 1.129 0 .273-.068.505-.204.698-.136.19-.333.33-.592.423m.906-2.603h1.682L34.48 6.73l1.359-1.996h1.686l-2.274 3.241v2.36h-1.538v-2.36l-2.273-3.24m5.254 2.843h2.51v1.091h-2.51V7.577m3.712-2.844h1.718l2.17 3.841v-3.84h1.458v5.6h-1.718l-2.17-3.842v3.841h-1.458v-5.6m11.588 5.293a4.092 4.092 0 0 1-.883.311c-.307.07-.626.105-.96.105-.993 0-1.78-.26-2.36-.78-.582-.523-.872-1.23-.872-2.123 0-.895.29-1.603.871-2.123.58-.523 1.368-.784 2.362-.784.333 0 .652.035.959.105.306.07.6.174.883.311v1.16a3.446 3.446 0 0 0-.843-.402 2.966 2.966 0 0 0-.876-.127c-.548 0-.98.165-1.294.495-.314.33-.472.785-.472 1.365 0 .578.158 1.032.472 1.362.314.33.746.495 1.294.495.307 0 .599-.043.876-.128s.558-.219.843-.401v1.159m1.162-2.45h2.51v1.092h-2.51V7.577m3.712-2.844h1.719l2.17 3.841v-3.84h1.458v5.6h-1.718l-2.17-3.842v3.841h-1.459v-5.6m8.396 1.092v3.417h.551c.629 0 1.108-.146 1.438-.439.333-.293.5-.718.5-1.275 0-.555-.165-.978-.496-1.268-.33-.29-.81-.435-1.442-.435h-.551m-1.539-1.092h1.622c.906 0 1.58.062 2.022.184.445.12.826.325 1.143.615a2.4 2.4 0 0 1 .623.874c.136.33.204.704.204 1.122 0 .422-.068.8-.204 1.133a2.4 2.4 0 0 1-.623.873c-.32.29-.703.497-1.15.62-.448.12-1.12.18-2.015.18h-1.622v-5.6" font-size="8.259" font-weight="700" fill="#fff" font-family="Bitstream Vera Sans"/></svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
1
static/imgs/cc/small/by_nc_sa.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="15"><defs><clipPath clipPathUnits="userSpaceOnUse" id="a"><path stroke-width=".922" d="M171.998 239.12h20.614v12.484h-20.614z"/></clipPath></defs><path fill="#fff" stroke="#000" stroke-width="1.042" d="M170.5 237.862h80v15h-80z" transform="matrix(.9875 0 0 .93335 -167.875 -221.476)"/><path d="M1.975 1.933h76.038v11.2H1.975z"/><path d="M1.975 1.945v11.2h20.08c1.293-1.633 2.165-3.532 2.165-5.6 0-2.054-.857-3.973-2.134-5.6H1.975z" fill="#abb1aa"/><g clip-path="url(#a)" transform="matrix(.94924 0 0 .89719 -161.127 -212.602)"><path d="M190.064 245.362a7.047 7.047 0 0 1-14.094.009v-.009a7.047 7.047 0 1 1 14.094-.008v.008z" fill="#fff"/><path d="M188.746 239.622c1.562 1.563 2.344 3.477 2.344 5.74 0 2.264-.768 4.157-2.304 5.68-1.63 1.603-3.556 2.405-5.779 2.405-2.196 0-4.089-.795-5.678-2.385-1.59-1.59-2.385-3.49-2.385-5.7s.795-4.123 2.385-5.74c1.549-1.563 3.442-2.344 5.678-2.344 2.264 0 4.176.781 5.739 2.344zm-10.365 1.052c-1.321 1.334-1.982 2.897-1.982 4.69 0 1.793.654 3.343 1.962 4.65 1.307 1.308 2.864 1.961 4.67 1.961s3.376-.66 4.71-1.98c1.268-1.228 1.901-2.77 1.901-4.63 0-1.847-.644-3.414-1.931-4.701-1.287-1.288-2.847-1.931-4.68-1.931-1.833 0-3.383.647-4.65 1.94zm3.477 3.902c-.202-.44-.504-.66-.907-.66-.713 0-1.07.479-1.07 1.438 0 .96.357 1.439 1.07 1.439.47 0 .806-.234 1.008-.702l.987.526c-.47.836-1.177 1.255-2.118 1.255-.727 0-1.308-.223-1.745-.668-.438-.445-.656-1.06-.656-1.842 0-.769.225-1.38.676-1.831.45-.453 1.012-.679 1.684-.679.996 0 1.709.393 2.14 1.176l-1.07.548zm4.646 0c-.202-.44-.498-.66-.889-.66-.727 0-1.09.479-1.09 1.438 0 .96.363 1.439 1.09 1.439.471 0 .801-.234.99-.702l1.01.526c-.47.836-1.176 1.255-2.116 1.255-.725 0-1.306-.223-1.742-.668-.436-.445-.654-1.06-.654-1.842 0-.769.221-1.38.664-1.831.443-.453 1.007-.679 1.692-.679.994 0 1.706.393 2.135 1.176l-1.09.548z"/></g><path d="M29.052 6.901c.242 0 .426-.05.551-.15.126-.1.188-.247.188-.442 0-.193-.062-.34-.188-.44-.125-.102-.309-.153-.551-.153h-.851v1.185h.851m.052 2.45c.309 0 .54-.062.695-.184.157-.123.236-.308.236-.555 0-.243-.077-.424-.232-.544-.154-.123-.387-.184-.7-.184h-.902v1.467h.903m1.43-2.015c.33.09.586.257.768.5.18.242.271.54.271.892 0 .54-.194.943-.583 1.208-.389.265-.98.397-1.774.397h-2.553v-5.6h2.31c.828 0 1.427.118 1.797.353.373.235.56.611.56 1.129 0 .272-.068.505-.204.698-.136.19-.333.33-.592.423m.906-2.603h1.682L34.48 6.73l1.359-1.996h1.686l-2.274 3.241v2.36h-1.538v-2.36l-2.273-3.24m5.254 2.842h2.51v1.092h-2.51V7.576m3.712-2.843h1.718l2.17 3.841v-3.84h1.458v5.6h-1.718l-2.17-3.842v3.841h-1.458v-5.6m11.588 5.293a4.093 4.093 0 0 1-.883.311 4.3 4.3 0 0 1-.96.105c-.993 0-1.78-.26-2.36-.78-.582-.523-.872-1.23-.872-2.123 0-.895.29-1.603.871-2.123.58-.523 1.368-.784 2.362-.784a4.137 4.137 0 0 1 1.842.416v1.16a3.445 3.445 0 0 0-.843-.402 2.967 2.967 0 0 0-.876-.127c-.548 0-.98.165-1.294.495-.314.33-.472.785-.472 1.365 0 .578.158 1.031.472 1.362.314.33.746.495 1.294.495.307 0 .599-.043.876-.128s.558-.219.843-.401v1.159m1.162-2.45h2.51v1.092h-2.51V7.576M61.02 4.91v1.185a5.724 5.724 0 0 0-.959-.311 4.036 4.036 0 0 0-.883-.105c-.368 0-.64.047-.815.142a.47.47 0 0 0-.264.443c0 .15.059.267.176.352.12.083.336.154.647.214l.656.124c.663.125 1.134.315 1.414.57.28.255.42.618.42 1.088 0 .617-.196 1.077-.588 1.38-.389.3-.984.45-1.786.45-.378 0-.758-.034-1.139-.101a7.41 7.41 0 0 1-1.142-.3V8.82c.38.19.748.335 1.102.432.357.095.701.143 1.031.143.336 0 .593-.053.772-.158a.496.496 0 0 0 .267-.45.483.483 0 0 0-.184-.405c-.12-.095-.36-.18-.723-.255l-.595-.124c-.597-.12-1.034-.311-1.31-.574-.275-.262-.412-.616-.412-1.061 0-.558.191-.987.575-1.287.384-.3.935-.45 1.654-.45.328 0 .665.024 1.011.071a9.48 9.48 0 0 1 1.075.207m5.366 4.403h-2.405l-.38 1.02h-1.546l2.21-5.6h1.834l2.21 5.6h-1.547l-.376-1.02m-2.021-1.039h1.634l-.815-2.228-.82 2.228" font-size="8.259" font-weight="700" fill="#fff" font-family="Bitstream Vera Sans"/></svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
1
static/imgs/cc/small/by_nd.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="15"><defs><clipPath clipPathUnits="userSpaceOnUse" id="a"><path stroke-width=".922" d="M171.998 239.12h20.614v12.484h-20.614z"/></clipPath></defs><path fill="#fff" stroke="#000" stroke-width="1.042" d="M170.5 237.862h80v15h-80z" transform="matrix(.9875 0 0 .93335 -167.875 -221.476)"/><path d="M1.975 1.933h76.038v11.2H1.975z"/><path d="M1.975 1.945v11.2h20.08c1.293-1.633 2.165-3.532 2.165-5.6 0-2.054-.857-3.973-2.134-5.6H1.975z" fill="#abb1aa"/><g clip-path="url(#a)" transform="matrix(.94924 0 0 .89719 -161.127 -212.602)"><path d="M190.064 245.362a7.047 7.047 0 0 1-14.094.009v-.009a7.047 7.047 0 1 1 14.094-.008v.008z" fill="#fff"/><path d="M188.746 239.622c1.562 1.563 2.344 3.477 2.344 5.74 0 2.264-.768 4.157-2.304 5.68-1.63 1.603-3.556 2.405-5.779 2.405-2.196 0-4.089-.795-5.678-2.385-1.59-1.59-2.385-3.49-2.385-5.7s.795-4.123 2.385-5.74c1.549-1.563 3.442-2.344 5.678-2.344 2.264 0 4.176.781 5.739 2.344zm-10.365 1.052c-1.321 1.334-1.982 2.897-1.982 4.69 0 1.793.654 3.343 1.962 4.65 1.307 1.308 2.864 1.961 4.67 1.961s3.376-.66 4.71-1.98c1.268-1.228 1.901-2.77 1.901-4.63 0-1.847-.644-3.414-1.931-4.701-1.287-1.288-2.847-1.931-4.68-1.931-1.833 0-3.383.647-4.65 1.94zm3.477 3.902c-.202-.44-.504-.66-.907-.66-.713 0-1.07.479-1.07 1.438 0 .96.357 1.439 1.07 1.439.47 0 .806-.234 1.008-.702l.987.526c-.47.836-1.177 1.255-2.118 1.255-.727 0-1.308-.223-1.745-.668-.438-.445-.656-1.06-.656-1.842 0-.769.225-1.38.676-1.831.45-.453 1.012-.679 1.684-.679.996 0 1.709.393 2.14 1.176l-1.07.548zm4.646 0c-.202-.44-.498-.66-.889-.66-.727 0-1.09.479-1.09 1.438 0 .96.363 1.439 1.09 1.439.471 0 .801-.234.99-.702l1.01.526c-.47.836-1.176 1.255-2.116 1.255-.725 0-1.306-.223-1.742-.668-.436-.445-.654-1.06-.654-1.842 0-.769.221-1.38.664-1.831.443-.453 1.007-.679 1.692-.679.994 0 1.706.393 2.135 1.176l-1.09.548z"/></g><path d="M29.052 6.901c.242 0 .426-.05.551-.15.126-.1.188-.247.188-.442 0-.193-.062-.34-.188-.44-.125-.102-.309-.153-.551-.153h-.851v1.185h.851m.052 2.45c.309 0 .54-.062.695-.184.157-.123.236-.308.236-.555 0-.243-.077-.424-.232-.544-.154-.123-.387-.184-.7-.184h-.902v1.467h.903m1.43-2.015c.33.09.586.257.768.5.18.242.271.54.271.892 0 .54-.194.943-.583 1.208-.389.265-.98.397-1.774.397h-2.553v-5.6h2.31c.828 0 1.427.118 1.797.353.373.235.56.611.56 1.129 0 .272-.068.505-.204.698-.136.19-.333.33-.592.423m.906-2.603h1.682L34.48 6.73l1.359-1.996h1.686l-2.274 3.241v2.36h-1.538v-2.36l-2.273-3.24m5.254 2.842h2.51v1.092h-2.51V7.577m3.712-2.844h1.718l2.17 3.841v-3.84h1.458v5.6h-1.718l-2.17-3.842v3.841h-1.458v-5.6m8.395 1.092v3.417h.551c.63 0 1.109-.146 1.439-.439.333-.293.5-.718.5-1.275 0-.555-.166-.978-.496-1.268-.33-.29-.811-.435-1.443-.435h-.55m-1.54-1.092h1.623c.906 0 1.58.062 2.022.184.445.12.826.325 1.143.615a2.4 2.4 0 0 1 .623.874c.136.33.204.704.204 1.122 0 .422-.068.8-.204 1.133a2.4 2.4 0 0 1-.623.873c-.32.29-.704.497-1.151.62-.448.12-1.119.18-2.014.18h-1.622v-5.6" font-size="8.259" font-weight="700" fill="#fff" font-family="Bitstream Vera Sans"/></svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
1
static/imgs/cc/small/by_sa.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="15"><defs><clipPath clipPathUnits="userSpaceOnUse" id="a"><path stroke-width=".922" d="M171.998 239.12h20.614v12.484h-20.614z"/></clipPath></defs><path fill="#fff" stroke="#000" stroke-width="1.042" d="M170.5 237.862h80v15h-80z" transform="matrix(.9875 0 0 .93335 -167.875 -221.476)"/><path d="M1.975 1.933h76.038v11.2H1.975z"/><path d="M1.975 1.945v11.2h20.08c1.293-1.633 2.165-3.532 2.165-5.6 0-2.054-.857-3.973-2.134-5.6H1.975z" fill="#abb1aa"/><g clip-path="url(#a)" transform="matrix(.94924 0 0 .89719 -161.127 -212.602)"><path d="M190.064 245.362a7.047 7.047 0 0 1-14.094.009v-.009a7.047 7.047 0 1 1 14.094-.008v.008z" fill="#fff"/><path d="M188.746 239.622c1.562 1.563 2.344 3.477 2.344 5.74 0 2.264-.768 4.157-2.304 5.68-1.63 1.603-3.556 2.405-5.779 2.405-2.196 0-4.089-.795-5.678-2.385-1.59-1.59-2.385-3.49-2.385-5.7s.795-4.123 2.385-5.74c1.549-1.563 3.442-2.344 5.678-2.344 2.264 0 4.176.781 5.739 2.344zm-10.365 1.052c-1.321 1.334-1.982 2.897-1.982 4.69 0 1.793.654 3.343 1.962 4.65 1.307 1.308 2.864 1.961 4.67 1.961s3.376-.66 4.71-1.98c1.268-1.228 1.901-2.77 1.901-4.63 0-1.847-.644-3.414-1.931-4.701-1.287-1.288-2.847-1.931-4.68-1.931-1.833 0-3.383.647-4.65 1.94zm3.477 3.902c-.202-.44-.504-.66-.907-.66-.713 0-1.07.479-1.07 1.438 0 .96.357 1.439 1.07 1.439.47 0 .806-.234 1.008-.702l.987.526c-.47.836-1.177 1.255-2.118 1.255-.727 0-1.308-.223-1.745-.668-.438-.445-.656-1.06-.656-1.842 0-.769.225-1.38.676-1.831.45-.453 1.012-.679 1.684-.679.996 0 1.709.393 2.14 1.176l-1.07.548zm4.646 0c-.202-.44-.498-.66-.889-.66-.727 0-1.09.479-1.09 1.438 0 .96.363 1.439 1.09 1.439.471 0 .801-.234.99-.702l1.01.526c-.47.836-1.176 1.255-2.116 1.255-.725 0-1.306-.223-1.742-.668-.436-.445-.654-1.06-.654-1.842 0-.769.221-1.38.664-1.831.443-.453 1.007-.679 1.692-.679.994 0 1.706.393 2.135 1.176l-1.09.548z"/></g><path d="M29.052 6.901c.242 0 .426-.05.551-.15.126-.1.188-.247.188-.442 0-.193-.062-.34-.188-.44-.125-.102-.309-.153-.551-.153h-.851v1.185h.851m.052 2.45c.309 0 .54-.062.695-.184.157-.123.236-.308.236-.555 0-.243-.077-.424-.232-.544-.154-.123-.387-.184-.7-.184h-.902v1.467h.903m1.43-2.015c.33.09.586.257.768.5.18.242.271.54.271.892 0 .54-.194.943-.583 1.208-.389.265-.98.397-1.774.397h-2.553v-5.6h2.31c.828 0 1.427.118 1.797.353.373.235.56.611.56 1.129 0 .272-.068.505-.204.698-.136.19-.333.33-.592.423m.906-2.603h1.682L34.48 6.73l1.359-1.996h1.686l-2.274 3.241v2.36h-1.538v-2.36l-2.273-3.24m5.254 2.842h2.51v1.092h-2.51V7.577m7.864-2.667v1.185a5.724 5.724 0 0 0-.96-.311 4.036 4.036 0 0 0-.882-.105c-.368 0-.64.047-.816.142a.47.47 0 0 0-.263.443c0 .15.058.267.175.352.12.083.336.154.648.214l.655.124c.663.125 1.135.315 1.415.57.28.255.42.618.42 1.088 0 .617-.197 1.078-.588 1.38-.39.3-.985.45-1.786.45-.379 0-.758-.034-1.14-.101a7.41 7.41 0 0 1-1.142-.3V8.82c.381.19.749.335 1.103.432.357.095.7.143 1.03.143.336 0 .594-.053.772-.158a.496.496 0 0 0 .268-.45.483.483 0 0 0-.184-.405c-.12-.095-.361-.18-.723-.255l-.596-.124c-.596-.12-1.033-.311-1.31-.574-.275-.262-.412-.616-.412-1.061 0-.558.192-.987.576-1.287.383-.3.935-.45 1.654-.45.327 0 .664.024 1.01.071.347.045.705.114 1.076.207m5.366 4.403h-2.406l-.38 1.02h-1.546l2.21-5.6h1.834l2.21 5.6h-1.547l-.375-1.02m-2.022-1.039h1.634l-.815-2.228-.819 2.228" font-size="8.259" font-weight="700" fill="#fff" font-family="Bitstream Vera Sans"/></svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
1
static/imgs/cc/small/cc_zero.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="80" height="15"><path fill="#FFF" d="M0 0h80v15H0z"/><path d="M80 0v15H0V0h80m-.75.75H.75v13.5h78.5V.75z"/><path d="M22.797 2a10.297 10.297 0 0 1 .001 11H80V2H22.797zm-10.377.031c-3.137 0-3.926 2.959-3.926 5.469s.787 5.469 3.926 5.469c3.137 0 3.924-2.959 3.924-5.469s-.787-5.469-3.924-5.469zm0 2.063c.127 0 .242.02.352.047.227.193.336.463.121.838l-2.09 3.838a10.04 10.04 0 0 1-.074-1.317c0-1.105.078-3.406 1.691-3.406zm1.562 1.769c.111.588.127 1.203.127 1.637 0 1.105-.076 3.406-1.689 3.406-.127 0-.244-.012-.354-.039l-.061-.021-.098-.031c-.359-.154-.586-.43-.26-.92l2.335-4.032z"/><path d="M21.229 3.848A9.15 9.15 0 0 0 19.194.782 10.27 10.27 0 0 0 18.302 0h-3.708c1.248.348 2.367 1.009 3.354 1.998.736.736 1.299 1.576 1.684 2.516s.578 1.936.578 2.986c0 2.184-.746 3.994-2.227 5.441a8.23 8.23 0 0 1-2.596 1.717 7.786 7.786 0 0 1-1.046.342h3.892c.336-.257.664-.529.972-.834a8.608 8.608 0 0 0 2.021-3c.465-1.143.693-2.363.693-3.666a9.637 9.637 0 0 0-.69-3.652zM6.957 12.975a8.134 8.134 0 0 1-1.729-2.527 7.59 7.59 0 0 1-.6-2.947c0-1.029.203-2.016.6-2.955a8.244 8.244 0 0 1 1.729-2.561C7.916 1.004 9.021.346 10.268 0H6.58a9.703 9.703 0 0 0-.848.762 9.595 9.595 0 0 0-2.101 3.125A9.396 9.396 0 0 0 2.92 7.5c0 1.268.236 2.471.711 3.613s1.164 2.17 2.068 3.086c.295.291.606.553.924.801h3.88a7.6 7.6 0 0 1-1.019-.328 8.023 8.023 0 0 1-2.527-1.697z"/><path d="M30.514 7.736c-.279.233-.678.35-1.197.35h-.993v1.717h-.991V5.028h2.05c.473 0 .849.123 1.13.369s.422.628.422 1.144c-.001.563-.141.962-.421 1.195zm-.761-1.719c-.127-.106-.304-.159-.531-.159h-.898v1.406h.898c.228 0 .404-.058.531-.172.126-.114.189-.296.189-.544 0-.249-.063-.426-.189-.531zm1.98-.989h1.015v2.933c0 .328.038.567.116.718.12.268.383.401.787.401.402 0 .664-.134.784-.401.077-.15.116-.39.116-.718V5.028h1.014v2.935c0 .508-.079.902-.236 1.186-.293.519-.853.777-1.678.777-.826 0-1.387-.259-1.682-.777-.157-.283-.236-.678-.236-1.186V5.028zm8.352.509c.146.203.219.446.219.729 0 .292-.074.526-.221.703-.083.1-.204.19-.364.272.243.088.427.229.551.421s.187.425.187.699c0 .283-.071.537-.213.761a1.325 1.325 0 0 1-.877.616 3.335 3.335 0 0 1-.675.064H36.54V5.028h2.308c.582.009.994.179 1.237.509zm-2.593.32V6.91h1.16a.956.956 0 0 0 .505-.118c.13-.079.194-.219.194-.419 0-.223-.086-.369-.257-.44a1.78 1.78 0 0 0-.563-.075h-1.039zm0 1.843v1.273h1.159c.207 0 .368-.028.483-.084.209-.104.313-.303.313-.597 0-.248-.101-.419-.304-.512-.113-.052-.272-.078-.478-.081h-1.173zm3.821-2.672h.998v3.916h2.384v.858h-3.382V5.028zm4.962 4.775h-.991V5.028h.991v4.775zm1.39-4.276c.385-.393.874-.59 1.468-.59.795 0 1.376.264 1.743.791.203.296.312.593.327.891h-.998c-.063-.229-.145-.402-.244-.519-.178-.207-.441-.311-.79-.311-.355 0-.636.146-.841.438s-.308.707-.308 1.242.108.937.324 1.203c.217.267.492.4.826.4.342 0 .603-.114.782-.344.1-.123.182-.308.247-.554h.991c-.086.521-.304.943-.655 1.27s-.802.489-1.351.489c-.68 0-1.214-.221-1.603-.661C47.194 8.83 47 8.223 47 7.452c.002-.831.224-1.473.665-1.925zm7.132-.395c.335.11.606.312.813.606.167.237.28.494.341.771s.091.54.091.79c0 .635-.128 1.173-.383 1.613-.346.594-.88.891-1.602.891h-2.059V5.028h2.059c.297.005.544.039.74.104zm-1.829.725v3.116h.922c.471 0 .8-.232.985-.696a2.45 2.45 0 0 0 .152-.91c0-.486-.076-.859-.229-1.119s-.455-.391-.909-.391h-.921zm7.498 3.522c-.36.371-.882.557-1.564.557s-1.204-.186-1.564-.557c-.483-.456-.726-1.112-.726-1.97 0-.875.242-1.531.726-1.97.36-.371.882-.557 1.564-.557s1.204.186 1.564.557c.481.438.722 1.095.722 1.97 0 .858-.241 1.514-.722 1.97zm-.624-.726c.232-.292.349-.706.349-1.244 0-.535-.116-.949-.349-1.242-.231-.293-.545-.438-.94-.438s-.711.146-.946.437c-.235.292-.353.706-.353 1.244s.117.952.353 1.244c.235.291.551.437.946.437s.708-.147.94-.438zm5.274-3.625h1.436v4.774h-.929V6.573l.003-.39.003-.388-.904 4.007h-.97l-.898-4.007.003.388c.003.167.004.297.004.39v3.229h-.93V5.028h1.451l.869 3.754.862-3.754zm3.724 0h1.129l1.689 4.774h-1.082l-.314-.981h-1.759l-.323.982h-1.044l1.704-4.775zm-.066 2.971h1.223l-.602-1.879-.621 1.879zm4.401 1.804h-.991V5.028h.991v4.775zm.918-4.775h1.046l1.895 3.329V5.028h.93v4.774h-.997l-1.943-3.388v3.388h-.93V5.028z" fill="#FFF"/></svg>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
BIN
static/imgs/gongan.png
Normal file
|
After Width: | Height: | Size: 869 B |
BIN
static/imgs/hugo_next_avatar.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
static/imgs/hugo_next_logo.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
static/imgs/icons/apple_touch_icon_next.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
static/imgs/icons/favicon.ico
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
static/imgs/icons/favicon_16x16_next.png
Normal file
|
After Width: | Height: | Size: 345 B |
BIN
static/imgs/icons/favicon_32_32_next.png
Normal file
|
After Width: | Height: | Size: 429 B |
1
static/js/index.js
Normal file
@@ -0,0 +1 @@
|
||||
// TODO keep the js folder
|
||||