* #174: New AwesomeWM Website - prototype 1 main page and styling. * Improve spaces and add 15yrs anniversary logo. * Prototype 2 main skeleton finished. * The fonts to path. * Add buttons. * Add bullets and buttons colors. * Update whole html structure, add effects, clean up. * Add corrections for github-pages server specifics. * Change color of bullet points. * The review comments implemented. * Add review fixes 1 of prototype 3. * Center anniversary image to letter 'S'. * hover-color-change added for navigation menu. Co-authored-by: Antonin Fischer <antonin.fischer@firma.seznam.cz>
|
@ -0,0 +1,50 @@
|
|||
/**
|
||||
* AWESOME THEME DARK
|
||||
* background: #222222
|
||||
* foreground: #c4c5c8
|
||||
* color0: #000300
|
||||
* color1: #b44631
|
||||
* color2: #6fc24e
|
||||
* color3: #cab14c
|
||||
* color4: #59929d
|
||||
* color5: #926090
|
||||
* color6: #668d96
|
||||
* color7: #728c8d
|
||||
* color8: #3f5f47
|
||||
* color9: #c1605d
|
||||
* colorA: #a9c68e
|
||||
* colorB: #decf50
|
||||
* colorC: #a6bbcb
|
||||
* colorD: #ad79a2
|
||||
* colorE: #8aa1af
|
||||
* colorF: #bababa
|
||||
* color10: #755cf2
|
||||
*/
|
||||
|
||||
:root {
|
||||
--background-color: #222222;
|
||||
--color: #c4c5c8;
|
||||
--link-color: #59929d;
|
||||
--image-filter: grayscale(50%);
|
||||
--main-headline-color: #b44631;
|
||||
--bullet-points-color: #b44631;
|
||||
--accent-background-color: #00bcd4;
|
||||
--accent-color: #050505;
|
||||
--warning-message: #b44631;
|
||||
--menu-hover-color: #ad79a2;
|
||||
--screenshot-border-color: #347272;
|
||||
--button-background-color: #59929d;
|
||||
--button-text-color: #fafafa;
|
||||
--button-hover-color: #00bcd4;
|
||||
--nav-text-color: #59929d;
|
||||
--nav-accent-color: #c4c5c8;
|
||||
}
|
||||
|
||||
img:not([src*=".svg"]) {
|
||||
filter: var(--image-filter);
|
||||
}
|
||||
|
||||
.lightmode {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
|
@ -0,0 +1,45 @@
|
|||
/**
|
||||
* AWESOME THEME LIGHT
|
||||
* background: #ffffff
|
||||
* foreground: #000300
|
||||
* color0: #000300
|
||||
* color1: #b44631
|
||||
* color2: #6fc24e
|
||||
* color3: #cab14c
|
||||
* color4: #006194
|
||||
* color5: #926090
|
||||
* color6: #59929d
|
||||
* color7: #3c4847
|
||||
* color8: #3f5f47
|
||||
* color9: #c1605d
|
||||
* colorA: #a9c68e
|
||||
* colorB: #decf50
|
||||
* colorC: #a6bbcb
|
||||
* colorD: #ad79a2
|
||||
* colorE: #8aa1af
|
||||
* colorF: #fafafa
|
||||
* colorA: #4f5867
|
||||
*/
|
||||
|
||||
:root {
|
||||
--background-color: #ffffff;
|
||||
--color: #000300;
|
||||
--link-color: #006194;
|
||||
--main-headline-color: #3c4847;
|
||||
--bullet-points-color: #3c4847;
|
||||
--accent-background-color: #006194;
|
||||
--accent-color: #fafafa;
|
||||
--warning-message: #b44631;
|
||||
--menu-hover-color: #000300;
|
||||
--screenshot-border-color: #347272;
|
||||
--button-background-color: #535d6c;
|
||||
--button-text-color: #fafafa;
|
||||
--button-hover-color: #000300;
|
||||
--nav-text-color: #006194;
|
||||
--nav-accent-color: #000300;
|
||||
}
|
||||
|
||||
.darkmode {
|
||||
visibility: hidden;
|
||||
display: none;
|
||||
}
|
|
@ -0,0 +1,391 @@
|
|||
/* Styles for https://awesomewm.org/
|
||||
* Source: https://github.com/awesomeWM/awesome-www
|
||||
* Originally created by Devit Schizoper (01.12.2006)
|
||||
*/
|
||||
|
||||
:root {
|
||||
color-scheme: dark light;
|
||||
supported-color-schemes: dark light;
|
||||
--duration: 0.5s;
|
||||
--timing: ease;
|
||||
}
|
||||
|
||||
*,
|
||||
::before,
|
||||
::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
font-family: Noto Sans, Verdana, Arial, sans-serif;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: var(--background-color);
|
||||
color: var(--color);
|
||||
}
|
||||
|
||||
body.expand {
|
||||
transition:
|
||||
color var(--duration) var(--timing),
|
||||
background-color var(--duration) var(--timing);
|
||||
}
|
||||
|
||||
.preload {
|
||||
transition: none !important;
|
||||
}
|
||||
|
||||
:any-link {
|
||||
color: var(--link-color);
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: 1rem 0;
|
||||
}
|
||||
|
||||
figcaption {
|
||||
margin: 0.5rem 0;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 11px 0 10px 0;
|
||||
padding: 0;
|
||||
text-align: justify;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
li::marker {
|
||||
color: var(--bullet-points-color);
|
||||
}
|
||||
|
||||
#arrow li {
|
||||
background: url(/images/arrow.svg) no-repeat left;
|
||||
background-size: 8px;
|
||||
padding: 3px 0px 3px 18px;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: var(--main-headline-color);
|
||||
font-size: 1.9rem;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--link-color);
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
background: var(--background-color);
|
||||
color: var(--color);
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
iframe {
|
||||
border: 5px solid var(--screenshot-border-color);
|
||||
}
|
||||
|
||||
.align_center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.align_right {
|
||||
display: block;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.screenshot img {
|
||||
border: 5px solid var(--screenshot-border-color);
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 80%;
|
||||
height: auto;
|
||||
max-width: 1024px;
|
||||
}
|
||||
|
||||
.fork-me-banner {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
#justified-logo img {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding-top: 20px;
|
||||
width: 40%;
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
.standout {
|
||||
font-size: larger;
|
||||
font-weight: bold;
|
||||
color: var(--warning-message);
|
||||
}
|
||||
|
||||
.standout a {
|
||||
color: var(--warning-message);
|
||||
}
|
||||
|
||||
/**** header ***/
|
||||
|
||||
#pageheader {
|
||||
display: inline-block;
|
||||
font-family: Noto Sans, Verdana, Arial, sans-serif;
|
||||
font-size: 1.0em;
|
||||
margin-left: 0;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#pageheader h2 {
|
||||
display: block;
|
||||
float: left;
|
||||
font-size: 3.0em;
|
||||
font-weight: bold;
|
||||
letter-spacing: 3px;
|
||||
margin-right: 20px;
|
||||
position: relative;
|
||||
top: 5px;
|
||||
}
|
||||
|
||||
#pageheader h2 a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#pageheader h2 a:hover {
|
||||
color: var(--menu-hover-color);
|
||||
}
|
||||
|
||||
/**** article ***/
|
||||
|
||||
#content {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#content h1 {
|
||||
margin: 0;
|
||||
padding: 20px 0 5px 0;
|
||||
}
|
||||
|
||||
#content h2 {
|
||||
margin: 0;
|
||||
padding: 20px 0 5px 0;
|
||||
}
|
||||
|
||||
#content ul {
|
||||
margin: 0;
|
||||
padding: 11px 0 15px 20px;
|
||||
}
|
||||
|
||||
#content li {
|
||||
margin-bottom: 5px;
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
#content {
|
||||
display: block;
|
||||
display: inline;
|
||||
float: left;
|
||||
margin-left: 20%;
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
/**** clear div ***/
|
||||
|
||||
#clear {
|
||||
clear: both;
|
||||
display: block;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/**** footer ***/
|
||||
|
||||
footer {
|
||||
border-top: dashed 1px gray;
|
||||
margin: 40px auto 0 auto;
|
||||
padding: 20px 0 20px 0;
|
||||
text-align: center;
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
footer p {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#pageinfo {
|
||||
border-top: 0;
|
||||
margin: 0 0;
|
||||
}
|
||||
|
||||
#donate {
|
||||
margin: 1em 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#donate p,
|
||||
#donate div {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.aw-anniversary {
|
||||
margin-left: 65px;
|
||||
}
|
||||
|
||||
/** buttons */
|
||||
|
||||
.flex-container {
|
||||
display: flex;
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 20px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.row {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.flex-href {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: inline-block;
|
||||
background: #4E9CAF;
|
||||
border-radius: 5px;
|
||||
box-sizing: border-box;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
background-color: transparent;
|
||||
border: 1px solid var(--button-background-color);
|
||||
border-color: var(--button-background-color);
|
||||
color: var(--button-background-color);
|
||||
cursor: pointer;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-align-self: center;
|
||||
-ms-flex-item-align: center;
|
||||
align-self: center;
|
||||
font-size: 1rem;
|
||||
font-weight: 900;
|
||||
line-height: 1.5;
|
||||
margin: 8px;
|
||||
padding: 1.2em 2.2em;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.btn:hover,
|
||||
.btn:focus {
|
||||
color: var(--button-hover-color);
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
.shine {
|
||||
border-color: var(--button-background-color);
|
||||
color: var(--button-text-color);
|
||||
box-shadow: 0 0 60px 60px var(--button-background-color) inset, 0 0 0 0 var(--button-background-color);
|
||||
-webkit-transition: all 150ms ease-in-out;
|
||||
transition: all 150ms ease-in-out;
|
||||
}
|
||||
|
||||
.shine:hover {
|
||||
box-shadow: 0 0 1px 0 var(--button-background-color) inset, 0 0 1px 1px var(--button-background-color);
|
||||
}
|
||||
|
||||
/**** navigation ***/
|
||||
|
||||
nav.container {
|
||||
font-family: Noto Sans;
|
||||
font-weight: bold;
|
||||
margin: 0 auto;
|
||||
padding: 1em 1em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
nav.container a {
|
||||
color: var(--link-color);
|
||||
text-decoration: none;
|
||||
font: 0.99em Noto Sans;
|
||||
font-weight: bold;
|
||||
margin: 0px 10px;
|
||||
padding: 5px 10px;
|
||||
position: relative;
|
||||
z-index: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
nav.container a:hover {
|
||||
color: var(--nav-accent-color);
|
||||
}
|
||||
|
||||
/* effect top-bottom borders go out */
|
||||
nav.topBotomBordersOut a:before,
|
||||
nav.topBotomBordersOut a:after {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background: var(--nav-accent-color);
|
||||
content: "";
|
||||
opacity: 0;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
nav.topBotomBordersOut a:before {
|
||||
top: 0px;
|
||||
transform: translateY(10px);
|
||||
}
|
||||
|
||||
nav.topBotomBordersOut a:after {
|
||||
bottom: 0px;
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
|
||||
nav.topBotomBordersOut a:hover:before,
|
||||
nav.topBotomBordersOut a:hover:after {
|
||||
opacity: 1;
|
||||
transform: translateY(0px);
|
||||
}
|
||||
|
||||
/* selected menu item */
|
||||
|
||||
nav.active-menu-about a.menu-about,
|
||||
nav.active-menu-download a.menu-download,
|
||||
nav.active-menu-community a.menu-community,
|
||||
nav.active-menu-recipes a.menu-recipes,
|
||||
nav.active-menu-screenshots a.menu-screenshots,
|
||||
nav.active-menu-doc a.menu-doc {
|
||||
color: var(--nav-accent-color);
|
||||
text-decoration-line: underline;
|
||||
text-decoration-thickness: 1.7px;
|
||||
}
|
||||
|
||||
/* vim: set sw=2 et: */
|
|
@ -0,0 +1,94 @@
|
|||
/**
|
||||
* Dark/Light Theme Switcher build on Checkbox and UL/LI structure
|
||||
*/
|
||||
|
||||
.mode-switch {
|
||||
display: flex;
|
||||
position: absolute;
|
||||
top: 0.5rem;
|
||||
right: 0.5rem;
|
||||
}
|
||||
|
||||
.mode-switch>li {
|
||||
list-style: none;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
.mode-switch-icon {
|
||||
padding: 0px 0px 0px 32px;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.mode-switch-dark {
|
||||
background: url(../images/icons/moon.svg) no-repeat left top;
|
||||
background-size: 32px 32px;
|
||||
filter: invert(100%);
|
||||
}
|
||||
|
||||
.mode-switch-light {
|
||||
background: url(../images/icons/sun.svg) no-repeat left top;
|
||||
background-size: 32px 32px;
|
||||
}
|
||||
|
||||
.switch {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 60px;
|
||||
height: 34px;
|
||||
}
|
||||
|
||||
/* Hide default HTML checkbox */
|
||||
.switch input {
|
||||
opacity: 0;
|
||||
width: 0;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/* The slider */
|
||||
.slider {
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: #ccc;
|
||||
-webkit-transition: 0.4s;
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
.slider:before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
height: 26px;
|
||||
width: 26px;
|
||||
left: 4px;
|
||||
bottom: 4px;
|
||||
background-color: #fafafa;
|
||||
-webkit-transition: 0.4s;
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
input:checked+.slider {
|
||||
background-color: #59929d;
|
||||
}
|
||||
|
||||
input:focus+.slider {
|
||||
box-shadow: 0 0 1px #59929d;
|
||||
}
|
||||
|
||||
input:checked+.slider:before {
|
||||
-webkit-transform: translateX(26px);
|
||||
-ms-transform: translateX(26px);
|
||||
transform: translateX(26px);
|
||||
}
|
||||
|
||||
/* Rounded sliders */
|
||||
.slider.round {
|
||||
border-radius: 34px;
|
||||
}
|
||||
|
||||
.slider.round:before {
|
||||
border-radius: 50%;
|
||||
}
|
Before Width: | Height: | Size: 182 KiB After Width: | Height: | Size: 597 KiB |
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="3.2032166mm"
|
||||
height="5.080101mm"
|
||||
viewBox="0 0 3.2032166 5.080101"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14, custom)"
|
||||
sodipodi:docname="awesome-15-anniversary.svg"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.587745"
|
||||
inkscape:cx="238.43153"
|
||||
inkscape:cy="160.37129"
|
||||
inkscape:window-width="3836"
|
||||
inkscape:window-height="2128"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="29"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer2" /><defs
|
||||
id="defs2" /><g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Vrstva 2"
|
||||
transform="translate(-16.466311,-67.20207)"><path
|
||||
style="fill:#535d6c;fill-opacity:1;stroke-width:0.00401469"
|
||||
d="m 17.068561,72.279908 c -0.06512,-0.0092 -0.135351,-0.03792 -0.185864,-0.07599 -0.03942,-0.0297 -0.305173,-0.29319 -0.333123,-0.330282 -0.03106,-0.04122 -0.05746,-0.09571 -0.07076,-0.14606 -0.009,-0.0339 -0.0106,-0.04887 -0.01099,-0.10008 -4.87e-4,-0.06416 0.004,-0.09644 0.02017,-0.144076 0.01154,-0.03404 0.03677,-0.0815 0.05894,-0.110857 0.0092,-0.01214 0.378923,-0.383873 0.821672,-0.826063 l 0.805001,-0.803982 -0.807579,-0.80591 c -0.868997,-0.867202 -0.830696,-0.827234 -0.86468,-0.902333 -0.03946,-0.0872 -0.0462,-0.204096 -0.01711,-0.297017 0.02317,-0.07401 0.06259,-0.131785 0.142275,-0.208502 0.02508,-0.02415 0.09077,-0.08852 0.145967,-0.143061 0.07486,-0.07396 0.109041,-0.104778 0.134492,-0.121265 0.06588,-0.04267 0.118678,-0.0588 0.202742,-0.06194 0.09159,-0.0034 0.161708,0.01348 0.231318,0.05575 0.02999,0.01821 0.06952,0.05615 0.362732,0.348087 1.034812,1.03032 1.871968,1.868597 1.888844,1.891374 0.03503,0.04727 0.06171,0.10932 0.07242,0.168427 0.0024,0.01354 0.0045,0.04765 0.0045,0.0758 0,0.09521 -0.02315,0.169074 -0.07684,0.245141 -0.01485,0.02105 -0.333789,0.342044 -1.095376,1.102464 -0.590931,0.590026 -1.08514,1.082111 -1.098243,1.093521 -0.07356,0.06406 -0.154793,0.0955 -0.255198,0.09876 -0.0276,8.82e-4 -0.06148,4e-5 -0.07528,-0.0019 z"
|
||||
id="path3950"
|
||||
inkscape:label="bullet" /></g></svg>
|
After Width: | Height: | Size: 2.7 KiB |
|
@ -0,0 +1,172 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="64.847534mm"
|
||||
height="51.782547mm"
|
||||
viewBox="0 0 64.847534 51.782547"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14, custom)"
|
||||
sodipodi:docname="awesome-15yrs-anniversary.svg"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="5.17549"
|
||||
inkscape:cx="155.92726"
|
||||
inkscape:cy="84.146622"
|
||||
inkscape:window-width="3840"
|
||||
inkscape:window-height="2131"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="29"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" /><defs
|
||||
id="defs2" /><g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-15.951548,-9.4948337)"><rect
|
||||
style="fill:#668d96;fill-opacity:1;fill-rule:evenodd;stroke-width:0.265828"
|
||||
id="rect2609"
|
||||
width="64.847534"
|
||||
height="16.421408"
|
||||
x="15.951549"
|
||||
y="9.4948339"
|
||||
inkscape:export-filename="awesome-15yrs-anniversary.svg"
|
||||
inkscape:export-xdpi="25.59"
|
||||
inkscape:export-ydpi="25.59" /><rect
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.279786"
|
||||
id="rect3190"
|
||||
width="42.861866"
|
||||
height="12.18418"
|
||||
x="18.288153"
|
||||
y="11.675345" /><rect
|
||||
style="fill:#668d96;fill-opacity:1;fill-rule:evenodd;stroke-width:0.226721"
|
||||
id="rect3441"
|
||||
width="47.704891"
|
||||
height="35.748558"
|
||||
x="15.963811"
|
||||
y="25.528822" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.224067"
|
||||
id="rect3444"
|
||||
width="42.698082"
|
||||
height="32.622353"
|
||||
x="18.381948"
|
||||
y="26.217089" /><g
|
||||
aria-label="AWESOME WM"
|
||||
id="text1023"
|
||||
style="font-weight:bold;font-size:14.1111px;line-height:1.25;font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold';fill:#535d6c;stroke-width:0.264583"
|
||||
inkscape:label="AwesomeWM"><path
|
||||
d="m 21.839141,19.017636 h 0.705555 l -0.296334,-3.951108 z m 1.890887,-6.053662 1.086555,9.412104 H 22.714029 L 22.60114,20.696857 h -0.761999 l -0.112889,1.679221 h -2.060221 l 1.03011,-9.412104 z"
|
||||
id="path303"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 32.140248,22.376078 h -2.624664 l -0.564444,-5.079996 -0.635,5.079996 h -2.610553 l -0.860778,-9.412104 h 2.017888 l 0.395111,6.265328 0.634999,-6.265328 h 2.144887 l 0.493889,6.364106 0.564444,-6.364106 h 1.989665 z"
|
||||
id="path305"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 37.036802,12.963974 v 1.904998 h -1.481666 v 1.763888 h 1.326444 v 1.763887 h -1.326444 v 2.102554 h 1.566333 v 1.876777 h -3.626553 v -9.412104 z"
|
||||
id="path307"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 40.155368,15.800305 -0.01411,-0.832555 v -0.112889 q 0,-0.479777 -0.324556,-0.479777 -0.211666,0 -0.296333,0.169333 -0.07055,0.169333 -0.07055,0.620888 0,0.338667 0.02822,0.508 0.02822,0.155222 0.127,0.268111 0.02822,0.04233 0.05644,0.07055 0.02822,0.02822 0.112889,0.09878 0.09878,0.07056 0.268111,0.211667 0.183444,0.141111 0.522111,0.39511 0.536222,0.409222 0.860777,0.719667 0.324555,0.310444 0.493888,0.64911 0.169334,0.324555 0.225778,0.747889 0.05644,0.409221 0.05644,1.044221 0,0.874888 -0.127,1.354666 -0.126999,0.465666 -0.423333,0.761999 -0.310444,0.296333 -0.790221,0.451555 -0.479778,0.169333 -1.03011,0.169333 -0.691444,0 -1.213555,-0.239888 -0.522111,-0.254 -0.776111,-0.705555 -0.324555,-0.564444 -0.324555,-1.608666 V 19.07408 h 1.933221 v 1.28411 q 0,0.409222 0.07055,0.564444 0.08467,0.155222 0.282222,0.155222 0.423333,0 0.423333,-0.77611 0,-0.437444 -0.02822,-0.691444 -0.02822,-0.254 -0.183444,-0.465666 -0.141111,-0.225778 -0.465666,-0.479778 -0.310445,-0.254 -0.903111,-0.691444 -0.338666,-0.239888 -0.564444,-0.479777 -0.211666,-0.254 -0.338666,-0.550333 -0.127,-0.296333 -0.183445,-0.691444 -0.04233,-0.395111 -0.04233,-0.931332 0,-0.691444 0.09878,-1.100666 0.112889,-0.409222 0.352777,-0.691444 0.310445,-0.352778 0.804333,-0.536222 0.493889,-0.197555 1.100666,-0.197555 1.058332,0 1.622776,0.52211 0.564444,0.508 0.564444,1.453444 v 1.03011 z"
|
||||
id="path309"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 44.854372,20.174746 q 0,0.451555 0.07055,0.620888 0.08467,0.155223 0.296334,0.155223 0.183444,0 0.253999,-0.155223 0.08467,-0.169333 0.08467,-0.550332 v -5.094108 q 0,-0.493888 -0.07056,-0.64911 -0.07055,-0.169333 -0.26811,-0.169333 -0.211667,0 -0.296334,0.183444 -0.07055,0.169333 -0.07055,0.677333 z m 2.808109,-0.663222 q 0,1.481666 -0.437444,2.144888 -0.620889,0.917221 -1.975554,0.917221 -2.469443,0 -2.469443,-2.793998 v -4.289774 q 0,-1.326444 0.620889,-2.017888 0.634999,-0.705555 1.820332,-0.705555 0.761999,0 1.326443,0.338667 0.578555,0.324555 0.846666,0.917221 0.268111,0.550333 0.268111,1.66511 z"
|
||||
id="path311"
|
||||
style="fill:#668d96;fill-opacity:1;stroke:#668d96;stroke-opacity:1" /><path
|
||||
d="M 54.774471,22.376078 H 52.96825 l 0.01411,-6.208884 -0.832555,6.208884 h -1.298221 l -0.705555,-6.180662 -0.04233,6.180662 h -1.79211 v -9.383882 h 2.765776 l 0.465666,4.261552 0.550333,-4.261552 h 2.681109 z"
|
||||
id="path313"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 58.979568,12.963974 v 1.904998 h -1.481665 v 1.763888 h 1.326443 v 1.763887 h -1.326443 v 2.102554 h 1.566332 v 1.876777 h -3.626553 v -9.412104 z"
|
||||
id="path315"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 70.353111,22.376078 h -2.624664 l -0.564444,-5.079996 -0.635,5.079996 H 63.91845 l -0.860778,-9.412104 h 2.017888 l 0.395111,6.265328 0.634999,-6.265328 h 2.144887 l 0.493889,6.364106 0.564444,-6.364106 h 1.989665 z"
|
||||
style="fill:#ffffff"
|
||||
id="path317" /><path
|
||||
d="m 78.170662,22.376078 h -1.806221 l 0.01411,-6.208884 -0.832555,6.208884 h -1.298221 l -0.705555,-6.180662 -0.04233,6.180662 h -1.79211 v -9.383882 h 2.765776 l 0.465666,4.261552 0.550333,-4.261552 h 2.681109 z"
|
||||
style="fill:#ffffff"
|
||||
id="path319" /></g><g
|
||||
aria-label="1"
|
||||
id="text1081"
|
||||
style="font-weight:bold;font-size:33.275px;line-height:1.25;font-family:'URWImpactW01-BoldCondensed Bold';-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold, Bold';fill:#668d96;fill-opacity:1;stroke-width:0.249562"
|
||||
inkscape:label="1"><path
|
||||
d="m 29.93511,56.815685 h -4.59195 v -13.31 q 0,-0.831875 -0.06655,-1.331 -0.06655,-0.5324 -0.2662,-0.7986 -0.19965,-0.2662 -0.565675,-0.366025 -0.366025,-0.09983 -0.99825,-0.1331 l -1.331,-0.03327 0.03327,-2.462351 q 0.831875,-0.232925 1.630475,-0.632225 0.831875,-0.3993 1.53065,-0.898425 0.698775,-0.499125 1.231175,-1.0648 0.5324,-0.565675 0.86515,-1.164625 h 2.5289 z"
|
||||
style="font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold';fill:#668d96;fill-opacity:1"
|
||||
id="path322" /></g><g
|
||||
aria-label="5"
|
||||
id="text1081-5"
|
||||
style="font-weight:bold;font-size:35.2778px;line-height:1.25;font-family:'URWImpactW01-BoldCondensed Bold';-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold, Bold';fill:#668d96;fill-opacity:1;stroke-width:0.264583"
|
||||
inkscape:label="5"
|
||||
transform="matrix(0.94322692,0,0,0.94322692,2.384834,1.5006406)"><path
|
||||
d="m 42.728308,28.064723 v 3.668891 h -6.244171 l -0.141112,4.233336 c 0.776112,-1.152408 1.810928,-1.728612 3.104447,-1.728612 1.857964,0 3.057409,1.070093 3.598336,3.21028 0.07055,0.329259 0.117592,0.740834 0.141111,1.234723 0.04704,0.470371 0.07056,1.11713 0.07056,1.940279 v 3.598336 c 0,1.340557 -0.568492,0.761152 -1.077197,1.419898 -0.531917,0.635571 -1.036985,1.291237 -1.410969,1.73257 -0.696448,0.821868 -1.123572,1.23198 -1.862367,2.151786 -0.648297,0.708502 -1.101173,1.148702 -1.822207,1.913166 -0.750763,0.795984 -2.317452,0.273233 -3.352267,-0.549916 -1.011297,-0.823149 -1.646297,-1.940279 -1.905001,-3.351391 -0.07056,-0.352778 -0.117593,-0.752593 -0.141111,-1.199445 -0.02352,-0.446852 -0.03528,-1.023056 -0.03528,-1.728612 V 42.8814 h 4.833059 l -0.07056,3.52778 c 0,0.917223 0.0588,1.528704 0.176389,1.834445 0.141111,0.282223 0.411574,0.423334 0.811389,0.423334 0.658519,0 0.987779,-0.517408 0.987779,-1.552223 l 0.03528,-6.949727 c 0,-0.635001 -0.07056,-1.058334 -0.211667,-1.270001 -0.117593,-0.211667 -0.376297,-0.3175 -0.776112,-0.3175 -0.635,0 -0.9525,0.435093 -0.9525,1.305278 H 31.862745 L 32.2508,28.064723 Z"
|
||||
style="font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold';fill:#668d96;fill-opacity:1"
|
||||
id="path1280"
|
||||
inkscape:label="path1280"
|
||||
sodipodi:nodetypes="ccccsccsscscsccssccccscccscccc" /></g><path
|
||||
id="rect1278"
|
||||
style="fill:#668d96;fill-opacity:1;fill-rule:evenodd;stroke-width:0.201696"
|
||||
d="m 32.776777,56.60751 c 0,0 -0.572491,0.102606 -0.919488,-0.222571 C 31.510292,56.059761 31.675116,55.37175 31.675116,55.37175 L 46.732962,37.758118 c 0,0 0.656908,-0.422472 1.119072,-0.08125 0.397652,0.293593 0.267225,0.892631 0.267225,0.892631"
|
||||
sodipodi:nodetypes="czccsc" /><g
|
||||
aria-label="YEAR"
|
||||
id="text1381"
|
||||
style="font-weight:bold;font-size:9.98245px;line-height:1.25;font-family:'URWImpactW01-BoldCondensed Bold';-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold, Bold';fill:#668d96;fill-opacity:1;stroke-width:0.249562"
|
||||
inkscape:label="Year"><path
|
||||
d="m 45.414295,49.374777 v 2.385805 h -1.397543 v -2.395788 l -1.01821,-4.242541 h 1.367596 l 0.359368,2.725209 0.419263,-2.725209 h 1.397543 z"
|
||||
style="font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold';fill:#668d96;fill-opacity:1"
|
||||
id="path325" /><path
|
||||
d="m 49.307448,45.102288 v 1.347631 h -1.048157 v 1.247806 h 0.93835 v 1.247806 h -0.93835 v 1.487385 h 1.108052 v 1.327666 h -2.56549 v -6.658294 z"
|
||||
style="font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold';fill:#668d96;fill-opacity:1"
|
||||
id="path327" /><path
|
||||
d="m 51.044403,49.384759 h 0.499123 l -0.209632,-2.795086 z m 1.337649,-4.282471 0.768648,6.658294 h -1.487385 l -0.07986,-1.187912 h -0.539053 l -0.07986,1.187912 h -1.457438 l 0.728719,-6.658294 z"
|
||||
style="font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold';fill:#668d96;fill-opacity:1"
|
||||
id="path329" /><path
|
||||
d="m 54.967509,47.627848 q 0.03993,0.01 0.06988,0.01 0.03993,0 0.04991,0 0.159719,0 0.209631,-0.09982 0.0599,-0.109807 0.0599,-0.389316 v -0.509105 q 0,-0.289491 -0.08984,-0.379333 -0.07986,-0.08984 -0.369351,-0.09982 l 0.01,1.46742 z m 0.109807,-2.52556 q 0.89842,0 1.267771,0.339403 0.219613,0.209632 0.299473,0.549035 0.08984,0.329421 0.08984,0.948333 0,0.668824 -0.169702,0.958315 -0.159719,0.289491 -0.578982,0.309456 0.229597,0.07986 0.379333,0.179684 0.149737,0.08984 0.239579,0.239579 0.08984,0.139754 0.11979,0.349386 0.03993,0.199649 0.03993,0.48914 v 2.295963 h -1.367595 v -2.595437 q 0,-0.149737 -0.01996,-0.239579 -0.01,-0.08984 -0.0599,-0.139754 -0.03993,-0.05989 -0.129772,-0.07986 -0.07986,-0.01996 -0.219613,-0.01996 h -0.05989 v 3.074594 H 53.45018 l -0.01996,-6.658294 z"
|
||||
style="font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold';fill:#668d96;fill-opacity:1"
|
||||
id="path331" /></g><g
|
||||
aria-label="ANNIVERSARY"
|
||||
id="text1385"
|
||||
style="font-weight:bold;font-size:5.32399px;line-height:1.25;font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold';fill:#668d96;fill-opacity:1;stroke-width:0.249562"
|
||||
inkscape:label="Anniversary"><path
|
||||
d="m 37.190094,55.421008 h 0.2662 L 37.34449,53.930291 Z m 0.713415,-2.283991 0.409947,3.551101 h -0.793275 l -0.04259,-0.633555 h -0.287496 l -0.04259,0.633555 H 36.3702 l 0.388651,-3.551101 z"
|
||||
id="path334"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 40.214122,56.688118 h -0.660175 l -0.436567,-1.597197 -0.0213,1.597197 h -0.649527 v -3.551101 h 0.702767 l 0.404623,1.645113 0.0053,-1.645113 h 0.649527 z"
|
||||
id="path336"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 42.231912,56.688118 h -0.660174 l -0.436567,-1.597197 -0.0213,1.597197 h -0.649527 v -3.551101 h 0.702766 l 0.404624,1.645113 0.0053,-1.645113 h 0.649526 z"
|
||||
id="path338"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 43.270089,56.688118 h -0.793275 v -3.551101 h 0.793275 z"
|
||||
id="path340"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 45.02168,56.688118 h -1.192574 l -0.399299,-3.551101 h 0.851838 l 0.18634,2.433063 0.202311,-2.433063 h 0.798599 z"
|
||||
id="path342"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 46.948962,53.137017 v 0.718738 h -0.559019 v 0.665499 h 0.500455 v 0.665499 h -0.500455 v 0.793274 h 0.590963 v 0.708091 H 45.61264 v -3.551101 z"
|
||||
id="path344"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 47.992469,54.483986 q 0.0213,0.0053 0.03727,0.0053 0.0213,0 0.02662,0 0.08518,0 0.111804,-0.05324 0.03194,-0.05856 0.03194,-0.207635 v -0.271524 q 0,-0.154396 -0.04792,-0.202311 -0.04259,-0.04792 -0.196988,-0.05324 l 0.0053,0.782626 z m 0.05856,-1.346969 q 0.479159,0 0.676147,0.181015 0.117128,0.111804 0.15972,0.29282 0.04792,0.175692 0.04792,0.505779 0,0.356707 -0.09051,0.511103 -0.08518,0.154396 -0.308792,0.165044 0.122452,0.04259 0.202312,0.09583 0.07986,0.04792 0.127776,0.127776 0.04792,0.07454 0.06389,0.18634 0.0213,0.10648 0.0213,0.260875 v 1.224518 H 48.221406 V 55.30388 q 0,-0.07986 -0.01065,-0.127776 -0.0053,-0.04792 -0.03194,-0.07454 -0.0213,-0.03194 -0.06921,-0.04259 -0.04259,-0.01065 -0.117128,-0.01065 h -0.03194 v 1.639789 h -0.777302 l -0.01065,-3.551101 z"
|
||||
id="path346"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 50.14336,54.207139 -0.0053,-0.314116 v -0.04259 q 0,-0.181015 -0.122452,-0.181015 -0.07986,0 -0.111804,0.06389 -0.02662,0.06389 -0.02662,0.234255 0,0.127776 0.01065,0.191664 0.01065,0.05856 0.04792,0.101156 0.01065,0.01597 0.0213,0.02662 0.01065,0.01065 0.04259,0.03727 0.03727,0.02662 0.101156,0.07986 0.06921,0.05324 0.196988,0.149072 0.202311,0.154396 0.324763,0.271524 0.122452,0.117127 0.18634,0.244903 0.06389,0.122452 0.08518,0.282172 0.0213,0.154395 0.0213,0.393975 0,0.330087 -0.04792,0.511103 -0.04791,0.175691 -0.159719,0.287495 -0.117128,0.111804 -0.298144,0.170368 -0.181015,0.06389 -0.388651,0.06389 -0.260875,0 -0.457863,-0.09051 -0.196988,-0.09583 -0.29282,-0.2662 -0.122451,-0.212959 -0.122451,-0.606934 v -0.37268 h 0.729386 v 0.484483 q 0,0.154396 0.02662,0.21296 0.03194,0.05856 0.10648,0.05856 0.15972,0 0.15972,-0.29282 0,-0.165043 -0.01065,-0.260875 -0.01065,-0.09583 -0.06921,-0.175692 -0.05324,-0.08518 -0.175692,-0.181015 -0.117128,-0.09583 -0.340735,-0.260876 -0.127776,-0.09051 -0.21296,-0.181016 -0.07986,-0.09583 -0.127775,-0.207635 -0.04792,-0.111804 -0.06921,-0.260876 -0.01597,-0.149071 -0.01597,-0.351383 0,-0.260875 0.03727,-0.415271 0.04259,-0.154396 0.133099,-0.260876 0.117128,-0.133099 0.303468,-0.202311 0.186339,-0.07454 0.415271,-0.07454 0.399299,0 0.612259,0.196987 0.212959,0.191664 0.212959,0.548371 v 0.388652 z"
|
||||
id="path348"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 51.873654,55.421008 h 0.2662 L 52.02805,53.930291 Z m 0.713415,-2.283991 0.409947,3.551101 h -0.793274 l -0.04259,-0.633555 h -0.287496 l -0.04259,0.633555 H 51.05376 l 0.388651,-3.551101 z"
|
||||
id="path350"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 53.965984,54.483986 q 0.0213,0.0053 0.03727,0.0053 0.0213,0 0.02662,0 0.08518,0 0.111803,-0.05324 0.03194,-0.05856 0.03194,-0.207635 v -0.271524 q 0,-0.154396 -0.04792,-0.202311 -0.04259,-0.04792 -0.196988,-0.05324 l 0.0053,0.782626 z m 0.05856,-1.346969 q 0.479159,0 0.676146,0.181015 0.117128,0.111804 0.15972,0.29282 0.04792,0.175692 0.04792,0.505779 0,0.356707 -0.09051,0.511103 -0.08518,0.154396 -0.308791,0.165044 0.122452,0.04259 0.202311,0.09583 0.07986,0.04792 0.127776,0.127776 0.04792,0.07454 0.06389,0.18634 0.0213,0.10648 0.0213,0.260875 v 1.224518 H 54.194919 V 55.30388 q 0,-0.07986 -0.01065,-0.127776 -0.0053,-0.04792 -0.03194,-0.07454 -0.0213,-0.03194 -0.06921,-0.04259 -0.04259,-0.01065 -0.117128,-0.01065 h -0.03194 v 1.639789 h -0.777303 l -0.01065,-3.551101 z"
|
||||
id="path352"
|
||||
style="fill:#668d96;fill-opacity:1" /><path
|
||||
d="m 56.329835,55.415684 v 1.272434 H 55.584477 V 55.41036 L 55.04143,53.147665 h 0.729386 l 0.191664,1.453449 0.223608,-1.453449 h 0.745358 z"
|
||||
id="path354"
|
||||
style="fill:#668d96;fill-opacity:1" /></g></g></svg>
|
After Width: | Height: | Size: 17 KiB |
|
@ -0,0 +1,154 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="64.847534mm"
|
||||
height="51.782547mm"
|
||||
viewBox="0 0 64.847534 51.782547"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14, custom)"
|
||||
sodipodi:docname="awesome-15yrs-anniversary.svg"
|
||||
xml:space="preserve"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="5.17549"
|
||||
inkscape:cx="155.92726"
|
||||
inkscape:cy="84.146622"
|
||||
inkscape:window-width="3840"
|
||||
inkscape:window-height="2131"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="29"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" /><defs
|
||||
id="defs2" /><g
|
||||
inkscape:label="Vrstva 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-15.951548,-9.4948337)"><rect
|
||||
style="fill:#535d6c;fill-opacity:1;fill-rule:evenodd;stroke-width:0.265828"
|
||||
id="rect2609"
|
||||
width="64.847534"
|
||||
height="16.421408"
|
||||
x="15.951549"
|
||||
y="9.4948339"
|
||||
inkscape:export-filename="awesome-15yrs-anniversary.svg"
|
||||
inkscape:export-xdpi="25.59"
|
||||
inkscape:export-ydpi="25.59" /><rect
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.279786"
|
||||
id="rect3190"
|
||||
width="42.861866"
|
||||
height="12.18418"
|
||||
x="18.288153"
|
||||
y="11.675345" /><rect
|
||||
style="fill:#535d6c;fill-opacity:1;fill-rule:evenodd;stroke-width:0.226721"
|
||||
id="rect3441"
|
||||
width="47.704891"
|
||||
height="35.748558"
|
||||
x="15.963811"
|
||||
y="25.528822" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.224067"
|
||||
id="rect3444"
|
||||
width="42.698082"
|
||||
height="32.622353"
|
||||
x="18.381948"
|
||||
y="26.217089" /><g
|
||||
aria-label="AWESOME WM"
|
||||
id="text1023"
|
||||
style="font-weight:bold;font-size:14.1111px;line-height:1.25;font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold';fill:#535d6c;stroke-width:0.264583"
|
||||
inkscape:label="AwesomeWM"><path
|
||||
d="m 21.839141,19.017636 h 0.705555 l -0.296334,-3.951108 z m 1.890887,-6.053662 1.086555,9.412104 H 22.714029 L 22.60114,20.696857 h -0.761999 l -0.112889,1.679221 h -2.060221 l 1.03011,-9.412104 z"
|
||||
id="path303" /><path
|
||||
d="m 32.140248,22.376078 h -2.624664 l -0.564444,-5.079996 -0.635,5.079996 h -2.610553 l -0.860778,-9.412104 h 2.017888 l 0.395111,6.265328 0.634999,-6.265328 h 2.144887 l 0.493889,6.364106 0.564444,-6.364106 h 1.989665 z"
|
||||
id="path305" /><path
|
||||
d="m 37.036802,12.963974 v 1.904998 h -1.481666 v 1.763888 h 1.326444 v 1.763887 h -1.326444 v 2.102554 h 1.566333 v 1.876777 h -3.626553 v -9.412104 z"
|
||||
id="path307" /><path
|
||||
d="m 40.155368,15.800305 -0.01411,-0.832555 v -0.112889 q 0,-0.479777 -0.324556,-0.479777 -0.211666,0 -0.296333,0.169333 -0.07055,0.169333 -0.07055,0.620888 0,0.338667 0.02822,0.508 0.02822,0.155222 0.127,0.268111 0.02822,0.04233 0.05644,0.07055 0.02822,0.02822 0.112889,0.09878 0.09878,0.07056 0.268111,0.211667 0.183444,0.141111 0.522111,0.39511 0.536222,0.409222 0.860777,0.719667 0.324555,0.310444 0.493888,0.64911 0.169334,0.324555 0.225778,0.747889 0.05644,0.409221 0.05644,1.044221 0,0.874888 -0.127,1.354666 -0.126999,0.465666 -0.423333,0.761999 -0.310444,0.296333 -0.790221,0.451555 -0.479778,0.169333 -1.03011,0.169333 -0.691444,0 -1.213555,-0.239888 -0.522111,-0.254 -0.776111,-0.705555 -0.324555,-0.564444 -0.324555,-1.608666 V 19.07408 h 1.933221 v 1.28411 q 0,0.409222 0.07055,0.564444 0.08467,0.155222 0.282222,0.155222 0.423333,0 0.423333,-0.77611 0,-0.437444 -0.02822,-0.691444 -0.02822,-0.254 -0.183444,-0.465666 -0.141111,-0.225778 -0.465666,-0.479778 -0.310445,-0.254 -0.903111,-0.691444 -0.338666,-0.239888 -0.564444,-0.479777 -0.211666,-0.254 -0.338666,-0.550333 -0.127,-0.296333 -0.183445,-0.691444 -0.04233,-0.395111 -0.04233,-0.931332 0,-0.691444 0.09878,-1.100666 0.112889,-0.409222 0.352777,-0.691444 0.310445,-0.352778 0.804333,-0.536222 0.493889,-0.197555 1.100666,-0.197555 1.058332,0 1.622776,0.52211 0.564444,0.508 0.564444,1.453444 v 1.03011 z"
|
||||
id="path309" /><path
|
||||
d="m 44.854372,20.174746 q 0,0.451555 0.07055,0.620888 0.08467,0.155223 0.296334,0.155223 0.183444,0 0.253999,-0.155223 0.08467,-0.169333 0.08467,-0.550332 v -5.094108 q 0,-0.493888 -0.07056,-0.64911 -0.07055,-0.169333 -0.26811,-0.169333 -0.211667,0 -0.296334,0.183444 -0.07055,0.169333 -0.07055,0.677333 z m 2.808109,-0.663222 q 0,1.481666 -0.437444,2.144888 -0.620889,0.917221 -1.975554,0.917221 -2.469443,0 -2.469443,-2.793998 v -4.289774 q 0,-1.326444 0.620889,-2.017888 0.634999,-0.705555 1.820332,-0.705555 0.761999,0 1.326443,0.338667 0.578555,0.324555 0.846666,0.917221 0.268111,0.550333 0.268111,1.66511 z"
|
||||
id="path311" /><path
|
||||
d="M 54.774471,22.376078 H 52.96825 l 0.01411,-6.208884 -0.832555,6.208884 h -1.298221 l -0.705555,-6.180662 -0.04233,6.180662 h -1.79211 v -9.383882 h 2.765776 l 0.465666,4.261552 0.550333,-4.261552 h 2.681109 z"
|
||||
id="path313" /><path
|
||||
d="m 58.979568,12.963974 v 1.904998 h -1.481665 v 1.763888 h 1.326443 v 1.763887 h -1.326443 v 2.102554 h 1.566332 v 1.876777 h -3.626553 v -9.412104 z"
|
||||
id="path315" /><path
|
||||
d="m 70.353111,22.376078 h -2.624664 l -0.564444,-5.079996 -0.635,5.079996 H 63.91845 l -0.860778,-9.412104 h 2.017888 l 0.395111,6.265328 0.634999,-6.265328 h 2.144887 l 0.493889,6.364106 0.564444,-6.364106 h 1.989665 z"
|
||||
style="fill:#ffffff"
|
||||
id="path317" /><path
|
||||
d="m 78.170662,22.376078 h -1.806221 l 0.01411,-6.208884 -0.832555,6.208884 h -1.298221 l -0.705555,-6.180662 -0.04233,6.180662 h -1.79211 v -9.383882 h 2.765776 l 0.465666,4.261552 0.550333,-4.261552 h 2.681109 z"
|
||||
style="fill:#ffffff"
|
||||
id="path319" /></g><g
|
||||
aria-label="1"
|
||||
id="text1081"
|
||||
style="font-weight:bold;font-size:33.275px;line-height:1.25;font-family:'URWImpactW01-BoldCondensed Bold';-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold, Bold';fill:#535d6c;stroke-width:0.249562"
|
||||
inkscape:label="1"><path
|
||||
d="m 29.93511,56.815685 h -4.59195 v -13.31 q 0,-0.831875 -0.06655,-1.331 -0.06655,-0.5324 -0.2662,-0.7986 -0.19965,-0.2662 -0.565675,-0.366025 -0.366025,-0.09983 -0.99825,-0.1331 l -1.331,-0.03327 0.03327,-2.462351 q 0.831875,-0.232925 1.630475,-0.632225 0.831875,-0.3993 1.53065,-0.898425 0.698775,-0.499125 1.231175,-1.0648 0.5324,-0.565675 0.86515,-1.164625 h 2.5289 z"
|
||||
style="font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold'"
|
||||
id="path322" /></g><g
|
||||
aria-label="5"
|
||||
id="text1081-5"
|
||||
style="font-weight:bold;font-size:35.2778px;line-height:1.25;font-family:'URWImpactW01-BoldCondensed Bold';-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold, Bold';fill:#535d6c;fill-opacity:1;stroke-width:0.264583"
|
||||
inkscape:label="5"
|
||||
transform="matrix(0.94322692,0,0,0.94322692,2.384834,1.5006406)"><path
|
||||
d="m 42.728308,28.064723 v 3.668891 h -6.244171 l -0.141112,4.233336 c 0.776112,-1.152408 1.810928,-1.728612 3.104447,-1.728612 1.857964,0 3.057409,1.070093 3.598336,3.21028 0.07055,0.329259 0.117592,0.740834 0.141111,1.234723 0.04704,0.470371 0.07056,1.11713 0.07056,1.940279 v 3.598336 c 0,1.340557 -0.568492,0.761152 -1.077197,1.419898 -0.531917,0.635571 -1.036985,1.291237 -1.410969,1.73257 -0.696448,0.821868 -1.123572,1.23198 -1.862367,2.151786 -0.648297,0.708502 -1.101173,1.148702 -1.822207,1.913166 -0.750763,0.795984 -2.317452,0.273233 -3.352267,-0.549916 -1.011297,-0.823149 -1.646297,-1.940279 -1.905001,-3.351391 -0.07056,-0.352778 -0.117593,-0.752593 -0.141111,-1.199445 -0.02352,-0.446852 -0.03528,-1.023056 -0.03528,-1.728612 V 42.8814 h 4.833059 l -0.07056,3.52778 c 0,0.917223 0.0588,1.528704 0.176389,1.834445 0.141111,0.282223 0.411574,0.423334 0.811389,0.423334 0.658519,0 0.987779,-0.517408 0.987779,-1.552223 l 0.03528,-6.949727 c 0,-0.635001 -0.07056,-1.058334 -0.211667,-1.270001 -0.117593,-0.211667 -0.376297,-0.3175 -0.776112,-0.3175 -0.635,0 -0.9525,0.435093 -0.9525,1.305278 H 31.862745 L 32.2508,28.064723 Z"
|
||||
style="font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold';fill:#535d6c;fill-opacity:1"
|
||||
id="path1280"
|
||||
inkscape:label="path1280"
|
||||
sodipodi:nodetypes="ccccsccsscscsccssccccscccscccc" /></g><path
|
||||
id="rect1278"
|
||||
style="fill:#535d6c;fill-rule:evenodd;stroke-width:0.201696"
|
||||
d="m 32.776777,56.60751 c 0,0 -0.572491,0.102606 -0.919488,-0.222571 C 31.510292,56.059761 31.675116,55.37175 31.675116,55.37175 L 46.732962,37.758118 c 0,0 0.656908,-0.422472 1.119072,-0.08125 0.397652,0.293593 0.267225,0.892631 0.267225,0.892631"
|
||||
sodipodi:nodetypes="czccsc" /><g
|
||||
aria-label="YEAR"
|
||||
id="text1381"
|
||||
style="font-weight:bold;font-size:9.98245px;line-height:1.25;font-family:'URWImpactW01-BoldCondensed Bold';-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold, Bold';fill:#535d6c;stroke-width:0.249562"
|
||||
inkscape:label="Year"><path
|
||||
d="m 45.414295,49.374777 v 2.385805 h -1.397543 v -2.395788 l -1.01821,-4.242541 h 1.367596 l 0.359368,2.725209 0.419263,-2.725209 h 1.397543 z"
|
||||
style="font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold'"
|
||||
id="path325" /><path
|
||||
d="m 49.307448,45.102288 v 1.347631 h -1.048157 v 1.247806 h 0.93835 v 1.247806 h -0.93835 v 1.487385 h 1.108052 v 1.327666 h -2.56549 v -6.658294 z"
|
||||
style="font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold'"
|
||||
id="path327" /><path
|
||||
d="m 51.044403,49.384759 h 0.499123 l -0.209632,-2.795086 z m 1.337649,-4.282471 0.768648,6.658294 h -1.487385 l -0.07986,-1.187912 h -0.539053 l -0.07986,1.187912 h -1.457438 l 0.728719,-6.658294 z"
|
||||
style="font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold'"
|
||||
id="path329" /><path
|
||||
d="m 54.967509,47.627848 q 0.03993,0.01 0.06988,0.01 0.03993,0 0.04991,0 0.159719,0 0.209631,-0.09982 0.0599,-0.109807 0.0599,-0.389316 v -0.509105 q 0,-0.289491 -0.08984,-0.379333 -0.07986,-0.08984 -0.369351,-0.09982 l 0.01,1.46742 z m 0.109807,-2.52556 q 0.89842,0 1.267771,0.339403 0.219613,0.209632 0.299473,0.549035 0.08984,0.329421 0.08984,0.948333 0,0.668824 -0.169702,0.958315 -0.159719,0.289491 -0.578982,0.309456 0.229597,0.07986 0.379333,0.179684 0.149737,0.08984 0.239579,0.239579 0.08984,0.139754 0.11979,0.349386 0.03993,0.199649 0.03993,0.48914 v 2.295963 h -1.367595 v -2.595437 q 0,-0.149737 -0.01996,-0.239579 -0.01,-0.08984 -0.0599,-0.139754 -0.03993,-0.05989 -0.129772,-0.07986 -0.07986,-0.01996 -0.219613,-0.01996 h -0.05989 v 3.074594 h -1.457438 l -0.01996,-6.658294 z"
|
||||
style="font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold'"
|
||||
id="path331" /></g><g
|
||||
aria-label="ANNIVERSARY"
|
||||
id="text1385"
|
||||
style="font-weight:bold;font-size:5.32399px;line-height:1.25;font-family:URWImpactW01-BoldCondensed;-inkscape-font-specification:'URWImpactW01-BoldCondensed Bold';fill:#535d6c;stroke-width:0.249562"
|
||||
inkscape:label="Anniversary"><path
|
||||
d="m 37.190094,55.421008 h 0.2662 L 37.34449,53.930291 Z m 0.713415,-2.283991 0.409947,3.551101 h -0.793275 l -0.04259,-0.633555 h -0.287496 l -0.04259,0.633555 H 36.3702 l 0.388651,-3.551101 z"
|
||||
id="path334" /><path
|
||||
d="m 40.214122,56.688118 h -0.660175 l -0.436567,-1.597197 -0.0213,1.597197 h -0.649527 v -3.551101 h 0.702767 l 0.404623,1.645113 0.0053,-1.645113 h 0.649527 z"
|
||||
id="path336" /><path
|
||||
d="m 42.231912,56.688118 h -0.660174 l -0.436567,-1.597197 -0.0213,1.597197 h -0.649527 v -3.551101 h 0.702766 l 0.404624,1.645113 0.0053,-1.645113 h 0.649526 z"
|
||||
id="path338" /><path
|
||||
d="m 43.270089,56.688118 h -0.793275 v -3.551101 h 0.793275 z"
|
||||
id="path340" /><path
|
||||
d="m 45.02168,56.688118 h -1.192574 l -0.399299,-3.551101 h 0.851838 l 0.18634,2.433063 0.202311,-2.433063 h 0.798599 z"
|
||||
id="path342" /><path
|
||||
d="m 46.948962,53.137017 v 0.718738 h -0.559019 v 0.665499 h 0.500455 v 0.665499 h -0.500455 v 0.793274 h 0.590963 v 0.708091 H 45.61264 v -3.551101 z"
|
||||
id="path344" /><path
|
||||
d="m 47.992469,54.483986 q 0.0213,0.0053 0.03727,0.0053 0.0213,0 0.02662,0 0.08518,0 0.111804,-0.05324 0.03194,-0.05856 0.03194,-0.207635 v -0.271524 q 0,-0.154396 -0.04792,-0.202311 -0.04259,-0.04792 -0.196988,-0.05324 l 0.0053,0.782626 z m 0.05856,-1.346969 q 0.479159,0 0.676147,0.181015 0.117128,0.111804 0.15972,0.29282 0.04792,0.175692 0.04792,0.505779 0,0.356707 -0.09051,0.511103 -0.08518,0.154396 -0.308792,0.165044 0.122452,0.04259 0.202312,0.09583 0.07986,0.04792 0.127776,0.127776 0.04792,0.07454 0.06389,0.18634 0.0213,0.10648 0.0213,0.260875 v 1.224518 h -0.729386 v -1.384237 q 0,-0.07986 -0.01065,-0.127776 -0.0053,-0.04792 -0.03194,-0.07454 -0.0213,-0.03194 -0.06921,-0.04259 -0.04259,-0.01065 -0.117128,-0.01065 h -0.03194 v 1.639789 h -0.777302 l -0.01065,-3.551101 z"
|
||||
id="path346" /><path
|
||||
d="m 50.14336,54.207139 -0.0053,-0.314116 v -0.04259 q 0,-0.181015 -0.122452,-0.181015 -0.07986,0 -0.111804,0.06389 -0.02662,0.06389 -0.02662,0.234255 0,0.127776 0.01065,0.191664 0.01065,0.05856 0.04792,0.101156 0.01065,0.01597 0.0213,0.02662 0.01065,0.01065 0.04259,0.03727 0.03727,0.02662 0.101156,0.07986 0.06921,0.05324 0.196988,0.149072 0.202311,0.154396 0.324763,0.271524 0.122452,0.117127 0.18634,0.244903 0.06389,0.122452 0.08518,0.282172 0.0213,0.154395 0.0213,0.393975 0,0.330087 -0.04792,0.511103 -0.04791,0.175691 -0.159719,0.287495 -0.117128,0.111804 -0.298144,0.170368 -0.181015,0.06389 -0.388651,0.06389 -0.260875,0 -0.457863,-0.09051 -0.196988,-0.09583 -0.29282,-0.2662 -0.122451,-0.212959 -0.122451,-0.606934 v -0.37268 h 0.729386 v 0.484483 q 0,0.154396 0.02662,0.21296 0.03194,0.05856 0.10648,0.05856 0.15972,0 0.15972,-0.29282 0,-0.165043 -0.01065,-0.260875 -0.01065,-0.09583 -0.06921,-0.175692 -0.05324,-0.08518 -0.175692,-0.181015 -0.117128,-0.09583 -0.340735,-0.260876 -0.127776,-0.09051 -0.21296,-0.181016 -0.07986,-0.09583 -0.127775,-0.207635 -0.04792,-0.111804 -0.06921,-0.260876 -0.01597,-0.149071 -0.01597,-0.351383 0,-0.260875 0.03727,-0.415271 0.04259,-0.154396 0.133099,-0.260876 0.117128,-0.133099 0.303468,-0.202311 0.186339,-0.07454 0.415271,-0.07454 0.399299,0 0.612259,0.196987 0.212959,0.191664 0.212959,0.548371 v 0.388652 z"
|
||||
id="path348" /><path
|
||||
d="m 51.873654,55.421008 h 0.2662 L 52.02805,53.930291 Z m 0.713415,-2.283991 0.409947,3.551101 h -0.793274 l -0.04259,-0.633555 h -0.287496 l -0.04259,0.633555 H 51.05376 l 0.388651,-3.551101 z"
|
||||
id="path350" /><path
|
||||
d="m 53.965984,54.483986 q 0.0213,0.0053 0.03727,0.0053 0.0213,0 0.02662,0 0.08518,0 0.111803,-0.05324 0.03194,-0.05856 0.03194,-0.207635 v -0.271524 q 0,-0.154396 -0.04792,-0.202311 -0.04259,-0.04792 -0.196988,-0.05324 l 0.0053,0.782626 z m 0.05856,-1.346969 q 0.479159,0 0.676146,0.181015 0.117128,0.111804 0.15972,0.29282 0.04792,0.175692 0.04792,0.505779 0,0.356707 -0.09051,0.511103 -0.08518,0.154396 -0.308791,0.165044 0.122452,0.04259 0.202311,0.09583 0.07986,0.04792 0.127776,0.127776 0.04792,0.07454 0.06389,0.18634 0.0213,0.10648 0.0213,0.260875 v 1.224518 h -0.729387 v -1.384237 q 0,-0.07986 -0.01065,-0.127776 -0.0053,-0.04792 -0.03194,-0.07454 -0.0213,-0.03194 -0.06921,-0.04259 -0.04259,-0.01065 -0.117128,-0.01065 h -0.03194 v 1.639789 h -0.777303 l -0.01065,-3.551101 z"
|
||||
id="path352" /><path
|
||||
d="m 56.329835,55.415684 v 1.272434 H 55.584477 V 55.41036 L 55.04143,53.147665 h 0.729386 l 0.191664,1.453449 0.223608,-1.453449 h 0.745358 z"
|
||||
id="path354" /></g></g></svg>
|
After Width: | Height: | Size: 16 KiB |
|
@ -0,0 +1,277 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="113.15533mm"
|
||||
height="17.608917mm"
|
||||
viewBox="0 0 113.15533 17.608917"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
xml:space="preserve"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14, custom)"
|
||||
sodipodi:docname="awesome-dark-1.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.8680251"
|
||||
inkscape:cx="204.84479"
|
||||
inkscape:cy="943.68072"
|
||||
inkscape:window-width="3840"
|
||||
inkscape:window-height="2131"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="29"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g153482" /><defs
|
||||
id="defs2"><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter127867"
|
||||
x="-0.068031715"
|
||||
y="-0.068031715"
|
||||
width="1.16441"
|
||||
height="1.16441"><feFlood
|
||||
flood-opacity="0.909804"
|
||||
flood-color="rgb(170,170,160)"
|
||||
result="flood"
|
||||
id="feFlood127857" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite127859" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.3"
|
||||
result="blur"
|
||||
id="feGaussianBlur127861" /><feOffset
|
||||
dx="0.3"
|
||||
dy="0.3"
|
||||
result="offset"
|
||||
id="feOffset127863" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite127865" /></filter><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter127879"
|
||||
x="-0.068031715"
|
||||
y="-0.068031715"
|
||||
width="1.16441"
|
||||
height="1.16441"><feFlood
|
||||
flood-opacity="0.909804"
|
||||
flood-color="rgb(170,170,160)"
|
||||
result="flood"
|
||||
id="feFlood127869" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite127871" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.3"
|
||||
result="blur"
|
||||
id="feGaussianBlur127873" /><feOffset
|
||||
dx="0.3"
|
||||
dy="0.3"
|
||||
result="offset"
|
||||
id="feOffset127875" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite127877" /></filter><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter127939"
|
||||
x="-0.049861376"
|
||||
y="-0.049885176"
|
||||
width="1.1308861"
|
||||
height="1.1309486"><feFlood
|
||||
flood-opacity="0.513726"
|
||||
flood-color="rgb(170,170,160)"
|
||||
result="flood"
|
||||
id="feFlood127929" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite127931" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.2"
|
||||
result="blur"
|
||||
id="feGaussianBlur127933" /><feOffset
|
||||
dx="0.3"
|
||||
dy="0.3"
|
||||
result="offset"
|
||||
id="feOffset127935" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite127937" /></filter><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter7895"
|
||||
x="-0.0058787751"
|
||||
y="-0.045138371"
|
||||
width="1.0166565"
|
||||
height="1.1278921"><feFlood
|
||||
flood-opacity="0.282353"
|
||||
flood-color="rgb(154,153,150)"
|
||||
result="flood"
|
||||
id="feFlood7885" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite7887" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.2"
|
||||
result="blur"
|
||||
id="feGaussianBlur7889" /><feOffset
|
||||
dx="0.4"
|
||||
dy="0.4"
|
||||
result="offset"
|
||||
id="feOffset7891" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite7893" /></filter></defs><g
|
||||
inkscape:label="AWESOME 11"
|
||||
inkscape:groupmode="layer"
|
||||
id="g153482"
|
||||
style="display:inline"
|
||||
transform="translate(-15.736658,-25.819272)"
|
||||
inkscape:export-filename="../../../../../../../mnt/xpg512/OneCloud/devel/open-source/awesome-www/project-design/awesome-dark-1.svg"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"><path
|
||||
id="path153444"
|
||||
style="fill:#728c8d;fill-opacity:1;stroke-width:0.201443;filter:url(#filter127939)"
|
||||
inkscape:label="cut-circle"
|
||||
d="m 126.89222,26.299278 a 1.2197143,1.2197143 0 0 0 -1.21974,1.219756 1.2197143,1.2197143 0 0 0 1.21974,1.219757 1.2197143,1.2197143 0 0 0 1.21976,-1.219757 1.2197143,1.2197143 0 0 0 -1.21976,-1.219756 z m -4.32371,1.455665 a 4.0831433,4.0831433 0 0 0 -4.08322,4.083215 4.0831433,4.0831433 0 0 0 4.08322,4.083217 4.0831433,4.0831433 0 0 0 4.08321,-4.083217 4.0831433,4.0831433 0 0 0 -4.08321,-4.083215 z m 1.42081,1.410857 a 1.2197143,1.2197143 0 0 1 1.21977,1.219757 1.2197143,1.2197143 0 0 1 -1.21977,1.219756 1.2197143,1.2197143 0 0 1 -1.21975,-1.219756 1.2197143,1.2197143 0 0 1 1.21975,-1.219757 z"
|
||||
inkscape:export-filename="awesome1.svg"
|
||||
inkscape:export-xdpi="25.59"
|
||||
inkscape:export-ydpi="25.59" /><g
|
||||
id="g4688"
|
||||
inkscape:label="underLetters"
|
||||
style="display:inline;fill:#222222;fill-opacity:1;filter:url(#filter7895)"
|
||||
transform="translate(0,-1.7382502)"
|
||||
inkscape:export-filename="awesome5.svg"
|
||||
inkscape:export-xdpi="25.59"
|
||||
inkscape:export-ydpi="25.59"><rect
|
||||
style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke-width:0.259033"
|
||||
id="rect4674"
|
||||
width="10.599338"
|
||||
height="10.589584"
|
||||
x="16.216658"
|
||||
y="33.549"
|
||||
inkscape:label="underLetter7" /><rect
|
||||
style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke-width:0.26265"
|
||||
id="rect4676"
|
||||
width="10.897376"
|
||||
height="10.589584"
|
||||
x="28.011488"
|
||||
y="33.543594"
|
||||
inkscape:label="underLetter6" /><rect
|
||||
style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke-width:0.257088"
|
||||
id="rect4678"
|
||||
width="10.50198"
|
||||
height="10.527855"
|
||||
x="40.112606"
|
||||
y="33.578739"
|
||||
inkscape:label="underLetter5" /><rect
|
||||
style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke-width:0.25713"
|
||||
id="rect4680"
|
||||
width="10.52349"
|
||||
height="10.509721"
|
||||
x="51.948662"
|
||||
y="33.564819"
|
||||
inkscape:label="underLetter4" /><rect
|
||||
style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke-width:0.259033"
|
||||
id="rect4682"
|
||||
width="10.599338"
|
||||
height="10.589584"
|
||||
x="63.735455"
|
||||
y="33.536289"
|
||||
inkscape:label="underLetter3" /><rect
|
||||
style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke-width:0.257964"
|
||||
id="rect4684"
|
||||
width="10.512033"
|
||||
height="10.589584"
|
||||
x="75.541809"
|
||||
y="33.580673"
|
||||
inkscape:label="underLetter2" /><rect
|
||||
style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke-width:0.258545"
|
||||
id="rect4686"
|
||||
width="10.559443"
|
||||
height="10.589584"
|
||||
x="87.306877"
|
||||
y="33.548592"
|
||||
inkscape:label="underLetter1" /></g><g
|
||||
aria-label="A"
|
||||
id="text153448"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#728c8d;stroke-width:0.264583"
|
||||
inkscape:label="A"><path
|
||||
d="M 16.232481,42.406261 V 35.46097 H 23.5085 v -0.330728 h -7.276019 v -3.307281 h 10.5833 v 10.5833 H 23.5085 v -3.63801 h -3.968738 v 0.330728 h 3.638009 v 3.307282 z"
|
||||
id="path108" /></g><g
|
||||
aria-label="W"
|
||||
id="text153452"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#537d85;stroke-width:0.264583"
|
||||
inkscape:label="W"><path
|
||||
d="m 28.015234,31.821286 h 7.276018 v 7.276019 h 0.330729 v -7.276019 h 3.307281 v 10.5833 H 28.015234 q 0,-2.480461 0.527098,-2.893871 0.537433,-0.41341 3.110911,-0.41341 v -7.276019 h -0.330728 v 7.286354 l -3.307281,3.296946 z"
|
||||
id="path111" /></g><g
|
||||
aria-label="E"
|
||||
id="text153456"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#5e7970;stroke-width:0.264583"
|
||||
inkscape:label="E"><path
|
||||
d="m 50.723295,31.831029 v 6.94529 h -7.276018 v 0.330729 h 7.276018 v 3.307281 H 40.139996 v -10.5833 q 2.48046,0 2.893871,0.537433 0.41341,0.527098 0.41341,3.100576 h 7.276018 V 35.13831 h -7.286354 l -3.296945,-3.307281 z"
|
||||
id="path114" /></g><g
|
||||
aria-label="S"
|
||||
id="text153460"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#728c8d;stroke-width:0.264583"
|
||||
inkscape:label="S"><path
|
||||
d="m 62.521837,42.402442 v -6.94529 h -7.276018 v -0.330728 h 7.276018 V 31.819142 H 51.938538 v 6.945291 h 7.276018 v 0.341063 h -7.276018 v 3.296946 z"
|
||||
id="path117" /></g><g
|
||||
aria-label="O"
|
||||
id="text153464"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#5e7970;stroke-width:0.264583"
|
||||
inkscape:label="O"><path
|
||||
d="m 67.096075,42.413425 q 0,-2.718172 0,-3.172923 0.01033,-0.465087 0.01033,-0.465087 0,0 0,-0.454751 -0.01033,-0.465086 -0.02067,-3.183258 h 7.234677 V 31.830125 H 63.737118 q 0,3.958402 0,4.619858 0,0.661457 0,0.671792 0,0 0,0.661456 0,0.671792 0,4.630194 z m 1.333248,0 q 0,-2.728507 0,-3.183258 0,-0.454752 0,-0.454752 0,0 0,-0.454751 0,-0.454751 0,-3.183258 0,0 0.795814,0 0.78548,0 1.80867,0 1.02319,0 1.984368,0 0.971514,0 1.302242,0 V 31.830125 H 63.737118 q 0,3.958402 0,4.619858 0,0.661457 0,0.671792 0,0 0,0.661456 0,0.671792 0,4.630194 z m 0.434081,0 q 0,0 0,-0.113688 0,-0.113688 0,-0.795815 0,-0.682126 0,-2.160068 0,-1.477941 0,-4.206448 h 5.405337 V 31.830125 H 63.737118 q 0,3.958402 0,4.619858 0,0.661457 0,0.671792 0,0 0,0.661456 0,0.671792 0,4.630194 z m 2.098056,-10.5833 q 0,2.718172 -0.01033,3.172923 0,0.465086 0,0.465086 0,0 0,0.454751 0.01033,0.465087 0.02067,3.183258 h -7.234677 v 3.307282 h 10.583299 q 0,-3.958402 0,-4.619859 0,-0.661456 0,-0.661456 0,-0.01033 0,-0.671791 0,-0.671792 0,-4.630194 z m -1.333248,0 q 0,2.728507 0,3.183258 0,0.454751 0,0.454751 0,0 0,0.454751 0,0.454752 0,3.183258 0,0 -0.795814,0 -0.795815,0 -1.819005,0 -1.012855,0 -1.984369,0 -0.961178,0 -1.291906,0 v 3.307282 h 10.583299 q 0,-3.958402 0,-4.619859 0,-0.661456 0,-0.661456 0,-0.01033 0,-0.671791 0,-0.671792 0,-4.630194 z m -0.43408,0 q 0,0 0,0.113688 0,0.113688 0,0.795814 0,0.682127 0,2.160068 0,1.477942 0,4.206448 h -5.405338 v 3.307282 h 10.531623 q 0,-3.958402 0,-4.619859 0,-0.661456 0,-0.661456 0,-0.01033 0,-0.671791 0,-0.671792 0,-4.630194 z"
|
||||
id="path120" /></g><g
|
||||
aria-label="M"
|
||||
id="text153468"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#537d85;stroke-width:0.264583"
|
||||
inkscape:label="M"><path
|
||||
d="m 75.527039,42.414882 h 6.94529 v -7.276019 h 0.330728 v 7.276019 h 3.307281 v -10.5833 H 75.527039 q 0,2.480461 0.527098,2.893871 0.537433,0.41341 3.110911,0.41341 v 7.276019 H 78.83432 v -7.286354 l -3.307281,-3.296946 z"
|
||||
id="path123" /></g><g
|
||||
aria-label="E"
|
||||
id="text153472"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#728c8d;stroke-width:0.264583"
|
||||
inkscape:label="E"><path
|
||||
d="m 97.893129,31.826772 v 6.94529 h -7.276018 v 0.330728 h 7.276018 v 3.307281 H 87.30983 V 31.826772 q 2.480461,0 2.893871,0.537433 0.41341,0.527098 0.41341,3.100576 h 7.276018 V 35.134053 H 90.606776 L 87.30983,31.826772 Z"
|
||||
id="path126" /></g><g
|
||||
aria-label="w"
|
||||
id="text153476"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#eaeaea;stroke-width:0.264583;filter:url(#filter127867)"
|
||||
inkscape:label="W"><path
|
||||
d="m 99.979752,31.822515 h 3.307278 v 7.276018 h 0.33073 v -7.276018 h 3.63801 v 7.276018 h 0.33073 v -7.276018 h 2.97655 V 42.405814 H 99.979752 V 31.987879 h 0.330728 v 10.087207 h 9.92184 v -9.921843 h -2.31509 v 7.276018 h -0.99219 v -7.276018 h -2.97655 v 7.276018 h -0.99219 v -7.276018 h -2.64582 v -0.165364 h -0.330728 z"
|
||||
id="path129" /></g><g
|
||||
aria-label="m"
|
||||
id="text153480"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#eaeaea;stroke-width:0.264583;filter:url(#filter127879)"
|
||||
inkscape:label="M"><path
|
||||
d="m 111.76244,31.82488 h 10.5833 v 10.583299 h -3.30728 v -7.276018 h -0.33073 v 7.276018 h -3.30728 v -7.276018 h -0.33073 v 7.276018 h -3.30728 V 31.990244 h 0.33073 v 10.087207 h 2.64583 v -7.276018 h 0.99218 v 7.276018 h 2.64583 v -7.276018 h 0.99218 v 7.276018 h 2.64583 v -9.921843 h -9.92185 v -0.165364 h -0.33073 z"
|
||||
id="path132" /></g></g></svg>
|
After Width: | Height: | Size: 14 KiB |
|
@ -0,0 +1,271 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="112.65951mm"
|
||||
height="17.608902mm"
|
||||
viewBox="0 0 112.65951 17.608902"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
xml:space="preserve"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14, custom)"
|
||||
sodipodi:docname="awesome-dark-2.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.8680251"
|
||||
inkscape:cx="300.38091"
|
||||
inkscape:cy="298.98623"
|
||||
inkscape:window-width="3840"
|
||||
inkscape:window-height="2131"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="29"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g126891" /><defs
|
||||
id="defs2"><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter127375"
|
||||
x="-0.0088181629"
|
||||
y="-0.067707558"
|
||||
width="1.0213106"
|
||||
height="1.1636266"><feFlood
|
||||
flood-opacity="0.341176"
|
||||
flood-color="rgb(170,170,160)"
|
||||
result="flood"
|
||||
id="feFlood127365" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite127367" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.3"
|
||||
result="blur"
|
||||
id="feGaussianBlur127369" /><feOffset
|
||||
dx="0.3"
|
||||
dy="0.3"
|
||||
result="offset"
|
||||
id="feOffset127371" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite127373" /></filter><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter127867"
|
||||
x="-0.068031715"
|
||||
y="-0.068031715"
|
||||
width="1.16441"
|
||||
height="1.16441"><feFlood
|
||||
flood-opacity="0.909804"
|
||||
flood-color="rgb(170,170,160)"
|
||||
result="flood"
|
||||
id="feFlood127857" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite127859" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.3"
|
||||
result="blur"
|
||||
id="feGaussianBlur127861" /><feOffset
|
||||
dx="0.3"
|
||||
dy="0.3"
|
||||
result="offset"
|
||||
id="feOffset127863" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite127865" /></filter><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter127879"
|
||||
x="-0.068031715"
|
||||
y="-0.068031715"
|
||||
width="1.16441"
|
||||
height="1.16441"><feFlood
|
||||
flood-opacity="0.909804"
|
||||
flood-color="rgb(170,170,160)"
|
||||
result="flood"
|
||||
id="feFlood127869" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite127871" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.3"
|
||||
result="blur"
|
||||
id="feGaussianBlur127873" /><feOffset
|
||||
dx="0.3"
|
||||
dy="0.3"
|
||||
result="offset"
|
||||
id="feOffset127875" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite127877" /></filter><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter127939"
|
||||
x="-0.049861376"
|
||||
y="-0.049885176"
|
||||
width="1.1308861"
|
||||
height="1.1309486"><feFlood
|
||||
flood-opacity="0.513726"
|
||||
flood-color="rgb(170,170,160)"
|
||||
result="flood"
|
||||
id="feFlood127929" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite127931" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.2"
|
||||
result="blur"
|
||||
id="feGaussianBlur127933" /><feOffset
|
||||
dx="0.3"
|
||||
dy="0.3"
|
||||
result="offset"
|
||||
id="feOffset127935" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite127937" /></filter></defs><g
|
||||
inkscape:label="AWESOME 6"
|
||||
inkscape:groupmode="layer"
|
||||
id="g126891"
|
||||
style="display:inline"
|
||||
transform="translate(-16.232479,-25.819274)"><g
|
||||
id="g126851"
|
||||
inkscape:label="underLetters"
|
||||
style="filter:url(#filter127375)"
|
||||
transform="translate(0,-1.7329156)"><rect
|
||||
style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke-width:0.259033"
|
||||
id="rect126837"
|
||||
width="10.599338"
|
||||
height="10.589584"
|
||||
x="16.216658"
|
||||
y="33.549"
|
||||
inkscape:label="underLetter7" /><rect
|
||||
style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke-width:0.26265"
|
||||
id="rect126839"
|
||||
width="10.897376"
|
||||
height="10.589584"
|
||||
x="28.011488"
|
||||
y="33.543594"
|
||||
inkscape:label="underLetter6" /><rect
|
||||
style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke-width:0.257088"
|
||||
id="rect126841"
|
||||
width="10.50198"
|
||||
height="10.527855"
|
||||
x="40.112606"
|
||||
y="33.578739"
|
||||
inkscape:label="underLetter5" /><rect
|
||||
style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke-width:0.25713"
|
||||
id="rect126843"
|
||||
width="10.52349"
|
||||
height="10.509721"
|
||||
x="51.948662"
|
||||
y="33.564819"
|
||||
inkscape:label="underLetter4" /><rect
|
||||
style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke-width:0.259033"
|
||||
id="rect126845"
|
||||
width="10.599338"
|
||||
height="10.589584"
|
||||
x="63.735455"
|
||||
y="33.536289"
|
||||
inkscape:label="underLetter3" /><rect
|
||||
style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke-width:0.257964"
|
||||
id="rect126847"
|
||||
width="10.512033"
|
||||
height="10.589584"
|
||||
x="75.541809"
|
||||
y="33.580673"
|
||||
inkscape:label="underLetter2" /><rect
|
||||
style="fill:#222222;fill-opacity:1;fill-rule:evenodd;stroke-width:0.258545"
|
||||
id="rect126849"
|
||||
width="10.559443"
|
||||
height="10.589584"
|
||||
x="87.306877"
|
||||
y="33.548592"
|
||||
inkscape:label="underLetter1" /></g><path
|
||||
id="path126853"
|
||||
style="fill:#7892b1;fill-opacity:1;stroke-width:0.201443;filter:url(#filter127939)"
|
||||
inkscape:label="cut-circle"
|
||||
d="m 126.89222,26.299278 a 1.2197143,1.2197143 0 0 0 -1.21974,1.219756 1.2197143,1.2197143 0 0 0 1.21974,1.219757 1.2197143,1.2197143 0 0 0 1.21976,-1.219757 1.2197143,1.2197143 0 0 0 -1.21976,-1.219756 z m -4.32371,1.455665 a 4.0831433,4.0831433 0 0 0 -4.08322,4.083215 4.0831433,4.0831433 0 0 0 4.08322,4.083217 4.0831433,4.0831433 0 0 0 4.08321,-4.083217 4.0831433,4.0831433 0 0 0 -4.08321,-4.083215 z m 1.42081,1.410857 a 1.2197143,1.2197143 0 0 1 1.21977,1.219757 1.2197143,1.2197143 0 0 1 -1.21977,1.219756 1.2197143,1.2197143 0 0 1 -1.21975,-1.219756 1.2197143,1.2197143 0 0 1 1.21975,-1.219757 z"
|
||||
inkscape:export-filename="awesome3.svg"
|
||||
inkscape:export-xdpi="25.59"
|
||||
inkscape:export-ydpi="25.59" /><g
|
||||
aria-label="A"
|
||||
id="text126857"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#c13e4b;stroke-width:0.264583"
|
||||
inkscape:label="A"><path
|
||||
d="M 16.232481,42.406261 V 35.46097 H 23.5085 v -0.330728 h -7.276019 v -3.307281 h 10.5833 v 10.5833 H 23.5085 v -3.63801 h -3.968738 v 0.330728 h 3.638009 v 3.307282 z"
|
||||
id="path108" /></g><g
|
||||
aria-label="W"
|
||||
id="text126861"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#d17255;stroke-width:0.264583"
|
||||
inkscape:label="W"><path
|
||||
d="m 28.015234,31.821286 h 7.276018 v 7.276019 h 0.330729 v -7.276019 h 3.307281 v 10.5833 H 28.015234 q 0,-2.480461 0.527098,-2.893871 0.537433,-0.41341 3.110911,-0.41341 v -7.276019 h -0.330728 v 7.286354 l -3.307281,3.296946 z"
|
||||
id="path111" /></g><g
|
||||
aria-label="E"
|
||||
id="text126865"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#e8cc5c;stroke-width:0.264583"
|
||||
inkscape:label="E"><path
|
||||
d="m 50.723295,31.831029 v 6.94529 h -7.276018 v 0.330729 h 7.276018 v 3.307281 H 40.139996 v -10.5833 q 2.48046,0 2.893871,0.537433 0.41341,0.527098 0.41341,3.100576 h 7.276018 V 35.13831 h -7.286354 l -3.296945,-3.307281 z"
|
||||
id="path114" /></g><g
|
||||
aria-label="S"
|
||||
id="text126869"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#8ebc65;stroke-width:0.264583"
|
||||
inkscape:label="S"><path
|
||||
d="m 62.521837,42.402442 v -6.94529 h -7.276018 v -0.330728 h 7.276018 V 31.819142 H 51.938538 v 6.945291 h 7.276018 v 0.341063 h -7.276018 v 3.296946 z"
|
||||
id="path117" /></g><g
|
||||
aria-label="O"
|
||||
id="text126873"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#af70a4;stroke-width:0.264583"
|
||||
inkscape:label="O"><path
|
||||
d="m 67.096075,42.413425 q 0,-2.718172 0,-3.172923 0.01033,-0.465087 0.01033,-0.465087 0,0 0,-0.454751 -0.01033,-0.465086 -0.02067,-3.183258 h 7.234677 V 31.830125 H 63.737118 q 0,3.958402 0,4.619858 0,0.661457 0,0.671792 0,0 0,0.661456 0,0.671792 0,4.630194 z m 1.333248,0 q 0,-2.728507 0,-3.183258 0,-0.454752 0,-0.454752 0,0 0,-0.454751 0,-0.454751 0,-3.183258 0,0 0.795814,0 0.78548,0 1.80867,0 1.02319,0 1.984368,0 0.971514,0 1.302242,0 V 31.830125 H 63.737118 q 0,3.958402 0,4.619858 0,0.661457 0,0.671792 0,0 0,0.661456 0,0.671792 0,4.630194 z m 0.434081,0 q 0,0 0,-0.113688 0,-0.113688 0,-0.795815 0,-0.682126 0,-2.160068 0,-1.477941 0,-4.206448 h 5.405337 V 31.830125 H 63.737118 q 0,3.958402 0,4.619858 0,0.661457 0,0.671792 0,0 0,0.661456 0,0.671792 0,4.630194 z m 2.098056,-10.5833 q 0,2.718172 -0.01033,3.172923 0,0.465086 0,0.465086 0,0 0,0.454751 0.01033,0.465087 0.02067,3.183258 h -7.234677 v 3.307282 h 10.583299 q 0,-3.958402 0,-4.619859 0,-0.661456 0,-0.661456 0,-0.01033 0,-0.671791 0,-0.671792 0,-4.630194 z m -1.333248,0 q 0,2.728507 0,3.183258 0,0.454751 0,0.454751 0,0 0,0.454751 0,0.454752 0,3.183258 0,0 -0.795814,0 -0.795815,0 -1.819005,0 -1.012855,0 -1.984369,0 -0.961178,0 -1.291906,0 v 3.307282 h 10.583299 q 0,-3.958402 0,-4.619859 0,-0.661456 0,-0.661456 0,-0.01033 0,-0.671791 0,-0.671792 0,-4.630194 z m -0.43408,0 q 0,0 0,0.113688 0,0.113688 0,0.795814 0,0.682127 0,2.160068 0,1.477942 0,4.206448 h -5.405338 v 3.307282 h 10.531623 q 0,-3.958402 0,-4.619859 0,-0.661456 0,-0.661456 0,-0.01033 0,-0.671791 0,-0.671792 0,-4.630194 z"
|
||||
id="path120" /></g><g
|
||||
aria-label="M"
|
||||
id="text126877"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#5e81ac;stroke-width:0.264583"
|
||||
inkscape:label="M"><path
|
||||
d="m 75.527039,42.414882 h 6.94529 v -7.276019 h 0.330728 v 7.276019 h 3.307281 v -10.5833 H 75.527039 q 0,2.480461 0.527098,2.893871 0.537433,0.41341 3.110911,0.41341 v 7.276019 H 78.83432 v -7.286354 l -3.307281,-3.296946 z"
|
||||
id="path123" /></g><g
|
||||
aria-label="E"
|
||||
id="text126881"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#81868e;stroke-width:0.264583"
|
||||
inkscape:label="E"><path
|
||||
d="m 97.893129,31.826772 v 6.94529 h -7.276018 v 0.330728 h 7.276018 v 3.307281 H 87.30983 V 31.826772 q 2.480461,0 2.893871,0.537433 0.41341,0.527098 0.41341,3.100576 h 7.276018 V 35.134053 H 90.606776 L 87.30983,31.826772 Z"
|
||||
id="path126" /></g><g
|
||||
aria-label="w"
|
||||
id="text126885"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#eaeaea;stroke-width:0.264583;filter:url(#filter127867)"
|
||||
inkscape:label="W"><path
|
||||
d="m 99.979752,31.822515 h 3.307278 v 7.276018 h 0.33073 v -7.276018 h 3.63801 v 7.276018 h 0.33073 v -7.276018 h 2.97655 V 42.405814 H 99.979752 V 31.987879 h 0.330728 v 10.087207 h 9.92184 v -9.921843 h -2.31509 v 7.276018 h -0.99219 v -7.276018 h -2.97655 v 7.276018 h -0.99219 v -7.276018 h -2.64582 v -0.165364 h -0.330728 z"
|
||||
id="path129" /></g><g
|
||||
aria-label="m"
|
||||
id="text126889"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#eaeaea;stroke-width:0.264583;filter:url(#filter127879)"
|
||||
inkscape:label="M"><path
|
||||
d="m 111.76244,31.82488 h 10.5833 v 10.583299 h -3.30728 v -7.276018 h -0.33073 v 7.276018 h -3.30728 v -7.276018 h -0.33073 v 7.276018 h -3.30728 V 31.990244 h 0.33073 v 10.087207 h 2.64583 v -7.276018 h 0.99218 v 7.276018 h 2.64583 v -7.276018 h 0.99218 v 7.276018 h 2.64583 v -9.921843 h -9.92185 v -0.165364 h -0.33073 z"
|
||||
id="path132" /></g></g></svg>
|
After Width: | Height: | Size: 13 KiB |
|
@ -0,0 +1,245 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="113.15533mm"
|
||||
height="17.413486mm"
|
||||
viewBox="0 0 113.15533 17.413486"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
xml:space="preserve"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14, custom)"
|
||||
sodipodi:docname="awesome1.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.8680251"
|
||||
inkscape:cx="89.085692"
|
||||
inkscape:cy="90.48038"
|
||||
inkscape:window-width="3840"
|
||||
inkscape:window-height="2131"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="29"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g24136" /><defs
|
||||
id="defs2"><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter4030"
|
||||
x="-0.045354476"
|
||||
y="-0.045354476"
|
||||
width="1.1190555"
|
||||
height="1.1190555"><feFlood
|
||||
flood-opacity="0.596078"
|
||||
flood-color="rgb(0,0,0)"
|
||||
result="flood"
|
||||
id="feFlood4020" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite4022" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.2"
|
||||
result="blur"
|
||||
id="feGaussianBlur4024" /><feOffset
|
||||
dx="0.3"
|
||||
dy="0.3"
|
||||
result="offset"
|
||||
id="feOffset4026" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite4028" /></filter><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter6742"
|
||||
x="-0.049861376"
|
||||
y="-0.049885176"
|
||||
width="1.1308861"
|
||||
height="1.1309486"><feFlood
|
||||
flood-opacity="0.541176"
|
||||
flood-color="rgb(0,0,0)"
|
||||
result="flood"
|
||||
id="feFlood6732" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite6734" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.2"
|
||||
result="blur"
|
||||
id="feGaussianBlur6736" /><feOffset
|
||||
dx="0.3"
|
||||
dy="0.3"
|
||||
result="offset"
|
||||
id="feOffset6738" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite6740" /></filter><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter23974"
|
||||
x="-0.0058787751"
|
||||
y="-0.0454724"
|
||||
width="1.0166565"
|
||||
height="1.1288385"><feFlood
|
||||
flood-opacity="0.282353"
|
||||
flood-color="rgb(0,0,0)"
|
||||
result="flood"
|
||||
id="feFlood23964" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite23966" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.2"
|
||||
result="blur"
|
||||
id="feGaussianBlur23968" /><feOffset
|
||||
dx="0.4"
|
||||
dy="0.4"
|
||||
result="offset"
|
||||
id="feOffset23970" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite23972" /></filter></defs><g
|
||||
inkscape:label="AWESOME 2"
|
||||
inkscape:groupmode="layer"
|
||||
id="g24136"
|
||||
transform="translate(-15.736658,-25.819275)"
|
||||
style="display:inline"
|
||||
inkscape:export-filename="awesome1.svg"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96"><g
|
||||
id="g24096"
|
||||
inkscape:label="underLetters"
|
||||
style="filter:url(#filter23974)"
|
||||
transform="translate(0,-1.7329156)"
|
||||
inkscape:export-filename="awesome6.svg"
|
||||
inkscape:export-xdpi="25.59"
|
||||
inkscape:export-ydpi="25.59"><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.258145"
|
||||
id="rect24082"
|
||||
width="10.599338"
|
||||
height="10.51714"
|
||||
x="16.216658"
|
||||
y="33.549"
|
||||
inkscape:label="underLetter7" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.261819"
|
||||
id="rect24084"
|
||||
width="10.897376"
|
||||
height="10.522709"
|
||||
x="28.011488"
|
||||
y="33.543594"
|
||||
inkscape:label="underLetter6" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.257336"
|
||||
id="rect24086"
|
||||
width="10.599338"
|
||||
height="10.45125"
|
||||
x="40.112606"
|
||||
y="33.578739"
|
||||
inkscape:label="underLetter5" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.256128"
|
||||
id="rect24088"
|
||||
width="10.52349"
|
||||
height="10.427953"
|
||||
x="51.948662"
|
||||
y="33.564819"
|
||||
inkscape:label="underLetter4" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.256891"
|
||||
id="rect24090"
|
||||
width="10.539145"
|
||||
height="10.474722"
|
||||
x="63.735455"
|
||||
y="33.536289"
|
||||
inkscape:label="underLetter3" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.257011"
|
||||
id="rect24092"
|
||||
width="10.512033"
|
||||
height="10.51147"
|
||||
x="75.541809"
|
||||
y="33.580673"
|
||||
inkscape:label="underLetter2" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.257399"
|
||||
id="rect24094"
|
||||
width="10.559443"
|
||||
height="10.495921"
|
||||
x="87.306877"
|
||||
y="33.548592"
|
||||
inkscape:label="underLetter1" /></g><path
|
||||
id="path24098"
|
||||
style="fill:#537d85;fill-opacity:1;stroke-width:0.201443;filter:url(#filter6742)"
|
||||
inkscape:label="cut-circle"
|
||||
d="m 126.89222,26.299278 a 1.2197143,1.2197143 0 0 0 -1.21974,1.219756 1.2197143,1.2197143 0 0 0 1.21974,1.219757 1.2197143,1.2197143 0 0 0 1.21976,-1.219757 1.2197143,1.2197143 0 0 0 -1.21976,-1.219756 z m -4.32371,1.455665 a 4.0831433,4.0831433 0 0 0 -4.08322,4.083215 4.0831433,4.0831433 0 0 0 4.08322,4.083217 4.0831433,4.0831433 0 0 0 4.08321,-4.083217 4.0831433,4.0831433 0 0 0 -4.08321,-4.083215 z m 1.42081,1.410857 a 1.2197143,1.2197143 0 0 1 1.21977,1.219757 1.2197143,1.2197143 0 0 1 -1.21977,1.219756 1.2197143,1.2197143 0 0 1 -1.21975,-1.219756 1.2197143,1.2197143 0 0 1 1.21975,-1.219757 z" /><g
|
||||
aria-label="A"
|
||||
id="text24102"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#993b29;stroke-width:0.264583"
|
||||
inkscape:label="A"><path
|
||||
d="M 16.232481,42.406261 V 35.46097 H 23.5085 v -0.330728 h -7.276019 v -3.307281 h 10.5833 v 10.5833 H 23.5085 v -3.63801 h -3.968738 v 0.330728 h 3.638009 v 3.307282 z"
|
||||
id="path51" /></g><g
|
||||
aria-label="W"
|
||||
id="text24106"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#7d505f;stroke-width:0.264583"
|
||||
inkscape:label="W"><path
|
||||
d="m 28.015234,31.821286 h 7.276018 v 7.276019 h 0.330729 v -7.276019 h 3.307281 v 10.5833 H 28.015234 q 0,-2.480461 0.527098,-2.893871 0.537433,-0.41341 3.110911,-0.41341 v -7.276019 h -0.330728 v 7.286354 l -3.307281,3.296946 z"
|
||||
id="path54" /></g><g
|
||||
aria-label="E"
|
||||
id="text24110"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#c5ab47;stroke-width:0.264583"
|
||||
inkscape:label="E"><path
|
||||
d="m 50.723295,31.831029 v 6.94529 h -7.276018 v 0.330729 h 7.276018 v 3.307281 H 40.139996 v -10.5833 q 2.48046,0 2.893871,0.537433 0.41341,0.527098 0.41341,3.100576 h 7.276018 V 35.13831 h -7.286354 l -3.296945,-3.307281 z"
|
||||
id="path57" /></g><g
|
||||
aria-label="S"
|
||||
id="text24114"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#639e3c;stroke-width:0.264583"
|
||||
inkscape:label="S"><path
|
||||
d="m 62.521837,42.402442 v -6.94529 h -7.276018 v -0.330728 h 7.276018 V 31.819142 H 51.938538 v 6.945291 h 7.276018 v 0.341063 h -7.276018 v 3.296946 z"
|
||||
id="path60" /></g><g
|
||||
aria-label="O"
|
||||
id="text24118"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#3f5f47;stroke-width:0.264583"
|
||||
inkscape:label="O"><path
|
||||
d="m 67.096075,42.413425 q 0,-2.718172 0,-3.172923 0.01033,-0.465087 0.01033,-0.465087 0,0 0,-0.454751 -0.01033,-0.465086 -0.02067,-3.183258 h 7.234677 V 31.830125 H 63.737118 q 0,3.958402 0,4.619858 0,0.661457 0,0.671792 0,0 0,0.661456 0,0.671792 0,4.630194 z m 1.333248,0 q 0,-2.728507 0,-3.183258 0,-0.454752 0,-0.454752 0,0 0,-0.454751 0,-0.454751 0,-3.183258 0,0 0.795814,0 0.78548,0 1.80867,0 1.02319,0 1.984368,0 0.971514,0 1.302242,0 V 31.830125 H 63.737118 q 0,3.958402 0,4.619858 0,0.661457 0,0.671792 0,0 0,0.661456 0,0.671792 0,4.630194 z m 0.434081,0 q 0,0 0,-0.113688 0,-0.113688 0,-0.795815 0,-0.682126 0,-2.160068 0,-1.477941 0,-4.206448 h 5.405337 V 31.830125 H 63.737118 q 0,3.958402 0,4.619858 0,0.661457 0,0.671792 0,0 0,0.661456 0,0.671792 0,4.630194 z m 2.098056,-10.5833 q 0,2.718172 -0.01033,3.172923 0,0.465086 0,0.465086 0,0 0,0.454751 0.01033,0.465087 0.02067,3.183258 h -7.234677 v 3.307282 h 10.583299 q 0,-3.958402 0,-4.619859 0,-0.661456 0,-0.661456 0,-0.01033 0,-0.671791 0,-0.671792 0,-4.630194 z m -1.333248,0 q 0,2.728507 0,3.183258 0,0.454751 0,0.454751 0,0 0,0.454751 0,0.454752 0,3.183258 0,0 -0.795814,0 -0.795815,0 -1.819005,0 -1.012855,0 -1.984369,0 -0.961178,0 -1.291906,0 v 3.307282 h 10.583299 q 0,-3.958402 0,-4.619859 0,-0.661456 0,-0.661456 0,-0.01033 0,-0.671791 0,-0.671792 0,-4.630194 z m -0.43408,0 q 0,0 0,0.113688 0,0.113688 0,0.795814 0,0.682127 0,2.160068 0,1.477942 0,4.206448 h -5.405338 v 3.307282 h 10.531623 q 0,-3.958402 0,-4.619859 0,-0.661456 0,-0.661456 0,-0.01033 0,-0.671791 0,-0.671792 0,-4.630194 z"
|
||||
id="path63" /></g><g
|
||||
aria-label="M"
|
||||
id="text24122"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#537d85;stroke-width:0.264583"
|
||||
inkscape:label="M"><path
|
||||
d="m 75.527039,42.414882 h 6.94529 v -7.276019 h 0.330728 v 7.276019 h 3.307281 v -10.5833 H 75.527039 q 0,2.480461 0.527098,2.893871 0.537433,0.41341 3.110911,0.41341 v 7.276019 H 78.83432 v -7.286354 l -3.307281,-3.296946 z"
|
||||
id="path66" /></g><g
|
||||
aria-label="E"
|
||||
id="text24126"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#5e7970;stroke-width:0.264583"
|
||||
inkscape:label="E"><path
|
||||
d="m 97.893129,31.826772 v 6.94529 h -7.276018 v 0.330728 h 7.276018 v 3.307281 H 87.30983 V 31.826772 q 2.480461,0 2.893871,0.537433 0.41341,0.527098 0.41341,3.100576 h 7.276018 V 35.134053 H 90.606776 L 87.30983,31.826772 Z"
|
||||
id="path69" /></g><g
|
||||
aria-label="w"
|
||||
id="text24130"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;stroke-width:0.264583;filter:url(#filter4030)"
|
||||
inkscape:label="W"><path
|
||||
d="m 99.979752,31.822515 h 3.307278 v 7.276018 h 0.33073 v -7.276018 h 3.63801 v 7.276018 h 0.33073 v -7.276018 h 2.97655 V 42.405814 H 99.979752 V 31.987879 h 0.330728 v 10.087207 h 9.92184 v -9.921843 h -2.31509 v 7.276018 h -0.99219 v -7.276018 h -2.97655 v 7.276018 h -0.99219 v -7.276018 h -2.64582 v -0.165364 h -0.330728 z"
|
||||
id="path72" /></g><g
|
||||
aria-label="m"
|
||||
id="text24134"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;stroke-width:0.264583;filter:url(#filter4030)"
|
||||
inkscape:label="M"><path
|
||||
d="m 111.76244,31.82488 h 10.5833 v 10.583299 h -3.30728 v -7.276018 h -0.33073 v 7.276018 h -3.30728 v -7.276018 h -0.33073 v 7.276018 h -3.30728 V 31.990244 h 0.33073 v 10.087207 h 2.64583 v -7.276018 h 0.99218 v 7.276018 h 2.64583 v -7.276018 h 0.99218 v 7.276018 h 2.64583 v -9.921843 h -9.92185 v -0.165364 h -0.33073 z"
|
||||
id="path75" /></g></g></svg>
|
After Width: | Height: | Size: 12 KiB |
|
@ -0,0 +1,239 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="113.15533mm"
|
||||
height="17.49807mm"
|
||||
viewBox="0 0 113.15533 17.49807"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
xml:space="preserve"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14, custom)"
|
||||
sodipodi:docname="awesome4.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="4.056"
|
||||
inkscape:cx="132.643"
|
||||
inkscape:cy="22.312623"
|
||||
inkscape:window-width="3840"
|
||||
inkscape:window-height="2131"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="29"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="g90815" /><defs
|
||||
id="defs2"><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter4030"
|
||||
x="-0.045354476"
|
||||
y="-0.045354476"
|
||||
width="1.1190555"
|
||||
height="1.1190555"><feFlood
|
||||
flood-opacity="0.596078"
|
||||
flood-color="rgb(0,0,0)"
|
||||
result="flood"
|
||||
id="feFlood4020" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite4022" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.2"
|
||||
result="blur"
|
||||
id="feGaussianBlur4024" /><feOffset
|
||||
dx="0.3"
|
||||
dy="0.3"
|
||||
result="offset"
|
||||
id="feOffset4026" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite4028" /></filter><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter6742"
|
||||
x="-0.049861376"
|
||||
y="-0.049885176"
|
||||
width="1.1308861"
|
||||
height="1.1309486"><feFlood
|
||||
flood-opacity="0.541176"
|
||||
flood-color="rgb(0,0,0)"
|
||||
result="flood"
|
||||
id="feFlood6732" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite6734" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.2"
|
||||
result="blur"
|
||||
id="feGaussianBlur6736" /><feOffset
|
||||
dx="0.3"
|
||||
dy="0.3"
|
||||
result="offset"
|
||||
id="feOffset6738" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite6740" /></filter><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter23974"
|
||||
x="-0.0058787751"
|
||||
y="-0.045138371"
|
||||
width="1.0166565"
|
||||
height="1.1278921"><feFlood
|
||||
flood-opacity="0.282353"
|
||||
flood-color="rgb(0,0,0)"
|
||||
result="flood"
|
||||
id="feFlood23964" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite23966" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.2"
|
||||
result="blur"
|
||||
id="feGaussianBlur23968" /><feOffset
|
||||
dx="0.4"
|
||||
dy="0.4"
|
||||
result="offset"
|
||||
id="feOffset23970" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite23972" /></filter></defs><g
|
||||
inkscape:label="AWESOME 3"
|
||||
inkscape:groupmode="layer"
|
||||
id="g90815"
|
||||
transform="translate(-15.736658,-25.819278)"
|
||||
style="display:inline"><g
|
||||
id="g90775"
|
||||
inkscape:label="underLetters"
|
||||
style="filter:url(#filter23974)"
|
||||
transform="translate(0,-1.7329156)"><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.259033"
|
||||
id="rect90761"
|
||||
width="10.599338"
|
||||
height="10.589584"
|
||||
x="16.216658"
|
||||
y="33.549"
|
||||
inkscape:label="underLetter7" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.26265"
|
||||
id="rect90763"
|
||||
width="10.897376"
|
||||
height="10.589584"
|
||||
x="28.011488"
|
||||
y="33.543594"
|
||||
inkscape:label="underLetter6" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.258277"
|
||||
id="rect90765"
|
||||
width="10.599338"
|
||||
height="10.527855"
|
||||
x="40.112606"
|
||||
y="33.578739"
|
||||
inkscape:label="underLetter5" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.25713"
|
||||
id="rect90767"
|
||||
width="10.52349"
|
||||
height="10.509721"
|
||||
x="51.948662"
|
||||
y="33.564819"
|
||||
inkscape:label="underLetter4" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.258296"
|
||||
id="rect90769"
|
||||
width="10.539145"
|
||||
height="10.589584"
|
||||
x="63.735455"
|
||||
y="33.536289"
|
||||
inkscape:label="underLetter3" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.257964"
|
||||
id="rect90771"
|
||||
width="10.512033"
|
||||
height="10.589584"
|
||||
x="75.541809"
|
||||
y="33.580673"
|
||||
inkscape:label="underLetter2" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.258545"
|
||||
id="rect90773"
|
||||
width="10.559443"
|
||||
height="10.589584"
|
||||
x="87.306877"
|
||||
y="33.548592"
|
||||
inkscape:label="underLetter1" /></g><path
|
||||
id="path90777"
|
||||
style="fill:#535d6c;fill-opacity:1;stroke-width:0.201443;filter:url(#filter6742)"
|
||||
inkscape:label="cut-circle"
|
||||
d="m 126.89222,26.299278 a 1.2197143,1.2197143 0 0 0 -1.21974,1.219756 1.2197143,1.2197143 0 0 0 1.21974,1.219757 1.2197143,1.2197143 0 0 0 1.21976,-1.219757 1.2197143,1.2197143 0 0 0 -1.21976,-1.219756 z m -4.32371,1.455665 a 4.0831433,4.0831433 0 0 0 -4.08322,4.083215 4.0831433,4.0831433 0 0 0 4.08322,4.083217 4.0831433,4.0831433 0 0 0 4.08321,-4.083217 4.0831433,4.0831433 0 0 0 -4.08321,-4.083215 z m 1.42081,1.410857 a 1.2197143,1.2197143 0 0 1 1.21977,1.219757 1.2197143,1.2197143 0 0 1 -1.21977,1.219756 1.2197143,1.2197143 0 0 1 -1.21975,-1.219756 1.2197143,1.2197143 0 0 1 1.21975,-1.219757 z" /><g
|
||||
aria-label="A"
|
||||
id="text90781"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#535d6c;stroke-width:0.264583"
|
||||
inkscape:label="A"><path
|
||||
d="M 16.232481,42.406261 V 35.46097 H 23.5085 v -0.330728 h -7.276019 v -3.307281 h 10.5833 v 10.5833 H 23.5085 v -3.63801 h -3.968738 v 0.330728 h 3.638009 v 3.307282 z"
|
||||
id="path332" /></g><g
|
||||
aria-label="W"
|
||||
id="text90785"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#535d6c;stroke-width:0.264583"
|
||||
inkscape:label="W"><path
|
||||
d="m 28.015234,31.821286 h 7.276018 v 7.276019 h 0.330729 v -7.276019 h 3.307281 v 10.5833 H 28.015234 q 0,-2.480461 0.527098,-2.893871 0.537433,-0.41341 3.110911,-0.41341 v -7.276019 h -0.330728 v 7.286354 l -3.307281,3.296946 z"
|
||||
id="path335" /></g><g
|
||||
aria-label="E"
|
||||
id="text90789"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#535d6c;stroke-width:0.264583"
|
||||
inkscape:label="E"><path
|
||||
d="m 50.723295,31.831029 v 6.94529 h -7.276018 v 0.330729 h 7.276018 v 3.307281 H 40.139996 v -10.5833 q 2.48046,0 2.893871,0.537433 0.41341,0.527098 0.41341,3.100576 h 7.276018 V 35.13831 h -7.286354 l -3.296945,-3.307281 z"
|
||||
id="path338" /></g><g
|
||||
aria-label="S"
|
||||
id="text90793"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#535d6c;stroke-width:0.264583"
|
||||
inkscape:label="S"><path
|
||||
d="m 62.521837,42.402442 v -6.94529 h -7.276018 v -0.330728 h 7.276018 V 31.819142 H 51.938538 v 6.945291 h 7.276018 v 0.341063 h -7.276018 v 3.296946 z"
|
||||
id="path341" /></g><g
|
||||
aria-label="O"
|
||||
id="text90797"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#535d6c;stroke-width:0.264583"
|
||||
inkscape:label="O"><path
|
||||
d="m 67.096075,42.413425 q 0,-2.718172 0,-3.172923 0.01033,-0.465087 0.01033,-0.465087 0,0 0,-0.454751 -0.01033,-0.465086 -0.02067,-3.183258 h 7.234677 V 31.830125 H 63.737118 q 0,3.958402 0,4.619858 0,0.661457 0,0.671792 0,0 0,0.661456 0,0.671792 0,4.630194 z m 1.333248,0 q 0,-2.728507 0,-3.183258 0,-0.454752 0,-0.454752 0,0 0,-0.454751 0,-0.454751 0,-3.183258 0,0 0.795814,0 0.78548,0 1.80867,0 1.02319,0 1.984368,0 0.971514,0 1.302242,0 V 31.830125 H 63.737118 q 0,3.958402 0,4.619858 0,0.661457 0,0.671792 0,0 0,0.661456 0,0.671792 0,4.630194 z m 0.434081,0 q 0,0 0,-0.113688 0,-0.113688 0,-0.795815 0,-0.682126 0,-2.160068 0,-1.477941 0,-4.206448 h 5.405337 V 31.830125 H 63.737118 q 0,3.958402 0,4.619858 0,0.661457 0,0.671792 0,0 0,0.661456 0,0.671792 0,4.630194 z m 2.098056,-10.5833 q 0,2.718172 -0.01033,3.172923 0,0.465086 0,0.465086 0,0 0,0.454751 0.01033,0.465087 0.02067,3.183258 h -7.234677 v 3.307282 h 10.583299 q 0,-3.958402 0,-4.619859 0,-0.661456 0,-0.661456 0,-0.01033 0,-0.671791 0,-0.671792 0,-4.630194 z m -1.333248,0 q 0,2.728507 0,3.183258 0,0.454751 0,0.454751 0,0 0,0.454751 0,0.454752 0,3.183258 0,0 -0.795814,0 -0.795815,0 -1.819005,0 -1.012855,0 -1.984369,0 -0.961178,0 -1.291906,0 v 3.307282 h 10.583299 q 0,-3.958402 0,-4.619859 0,-0.661456 0,-0.661456 0,-0.01033 0,-0.671791 0,-0.671792 0,-4.630194 z m -0.43408,0 q 0,0 0,0.113688 0,0.113688 0,0.795814 0,0.682127 0,2.160068 0,1.477942 0,4.206448 h -5.405338 v 3.307282 h 10.531623 q 0,-3.958402 0,-4.619859 0,-0.661456 0,-0.661456 0,-0.01033 0,-0.671791 0,-0.671792 0,-4.630194 z"
|
||||
id="path344" /></g><g
|
||||
aria-label="M"
|
||||
id="text90801"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#535d6c;stroke-width:0.264583"
|
||||
inkscape:label="M"><path
|
||||
d="m 75.527039,42.414882 h 6.94529 v -7.276019 h 0.330728 v 7.276019 h 3.307281 v -10.5833 H 75.527039 q 0,2.480461 0.527098,2.893871 0.537433,0.41341 3.110911,0.41341 v 7.276019 H 78.83432 v -7.286354 l -3.307281,-3.296946 z"
|
||||
id="path347" /></g><g
|
||||
aria-label="E"
|
||||
id="text90805"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#535d6c;stroke-width:0.264583"
|
||||
inkscape:label="E"><path
|
||||
d="m 97.893129,31.826772 v 6.94529 h -7.276018 v 0.330728 h 7.276018 v 3.307281 H 87.30983 V 31.826772 q 2.480461,0 2.893871,0.537433 0.41341,0.527098 0.41341,3.100576 h 7.276018 V 35.134053 H 90.606776 L 87.30983,31.826772 Z"
|
||||
id="path350" /></g><g
|
||||
aria-label="w"
|
||||
id="text90809"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;stroke-width:0.264583;filter:url(#filter4030)"
|
||||
inkscape:label="W"><path
|
||||
d="m 99.979752,31.822515 h 3.307278 v 7.276018 h 0.33073 v -7.276018 h 3.63801 v 7.276018 h 0.33073 v -7.276018 h 2.97655 V 42.405814 H 99.979752 V 31.987879 h 0.330728 v 10.087207 h 9.92184 v -9.921843 h -2.31509 v 7.276018 h -0.99219 v -7.276018 h -2.97655 v 7.276018 h -0.99219 v -7.276018 h -2.64582 v -0.165364 h -0.330728 z"
|
||||
id="path353" /></g><g
|
||||
aria-label="m"
|
||||
id="text90813"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;stroke-width:0.264583;filter:url(#filter4030)"
|
||||
inkscape:label="M"><path
|
||||
d="m 111.76244,31.82488 h 10.5833 v 10.583299 h -3.30728 v -7.276018 h -0.33073 v 7.276018 h -3.30728 v -7.276018 h -0.33073 v 7.276018 h -3.30728 V 31.990244 h 0.33073 v 10.087207 h 2.64583 v -7.276018 h 0.99218 v 7.276018 h 2.64583 v -7.276018 h 0.99218 v 7.276018 h 2.64583 v -9.921843 h -9.92185 v -0.165364 h -0.33073 z"
|
||||
id="path356" /></g></g></svg>
|
After Width: | Height: | Size: 12 KiB |
|
@ -0,0 +1,239 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="113.15533mm"
|
||||
height="17.498066mm"
|
||||
viewBox="0 0 113.15533 17.498066"
|
||||
version="1.1"
|
||||
id="svg5"
|
||||
xml:space="preserve"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14, custom)"
|
||||
sodipodi:docname="awesome3.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||
id="namedview7"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:document-units="mm"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.8680251"
|
||||
inkscape:cx="274.92786"
|
||||
inkscape:cy="1022.8293"
|
||||
inkscape:window-width="3840"
|
||||
inkscape:window-height="2131"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="29"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" /><defs
|
||||
id="defs2"><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter4030"
|
||||
x="-0.045354476"
|
||||
y="-0.045354476"
|
||||
width="1.1190555"
|
||||
height="1.1190555"><feFlood
|
||||
flood-opacity="0.596078"
|
||||
flood-color="rgb(0,0,0)"
|
||||
result="flood"
|
||||
id="feFlood4020" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite4022" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.2"
|
||||
result="blur"
|
||||
id="feGaussianBlur4024" /><feOffset
|
||||
dx="0.3"
|
||||
dy="0.3"
|
||||
result="offset"
|
||||
id="feOffset4026" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite4028" /></filter><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter6742"
|
||||
x="-0.049861376"
|
||||
y="-0.049885176"
|
||||
width="1.1308861"
|
||||
height="1.1309486"><feFlood
|
||||
flood-opacity="0.541176"
|
||||
flood-color="rgb(0,0,0)"
|
||||
result="flood"
|
||||
id="feFlood6732" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite6734" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.2"
|
||||
result="blur"
|
||||
id="feGaussianBlur6736" /><feOffset
|
||||
dx="0.3"
|
||||
dy="0.3"
|
||||
result="offset"
|
||||
id="feOffset6738" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite6740" /></filter><filter
|
||||
style="color-interpolation-filters:sRGB"
|
||||
inkscape:label="Drop Shadow"
|
||||
id="filter23974"
|
||||
x="-0.0058787751"
|
||||
y="-0.045138371"
|
||||
width="1.0166565"
|
||||
height="1.1278921"><feFlood
|
||||
flood-opacity="0.282353"
|
||||
flood-color="rgb(0,0,0)"
|
||||
result="flood"
|
||||
id="feFlood23964" /><feComposite
|
||||
in="flood"
|
||||
in2="SourceGraphic"
|
||||
operator="in"
|
||||
result="composite1"
|
||||
id="feComposite23966" /><feGaussianBlur
|
||||
in="composite1"
|
||||
stdDeviation="0.2"
|
||||
result="blur"
|
||||
id="feGaussianBlur23968" /><feOffset
|
||||
dx="0.4"
|
||||
dy="0.4"
|
||||
result="offset"
|
||||
id="feOffset23970" /><feComposite
|
||||
in="SourceGraphic"
|
||||
in2="offset"
|
||||
operator="over"
|
||||
result="composite2"
|
||||
id="feComposite23972" /></filter></defs><g
|
||||
inkscape:label="AWESOME 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
style="display:inline"
|
||||
transform="translate(-15.736658,-25.819278)"><g
|
||||
id="g23858"
|
||||
inkscape:label="underLetters"
|
||||
style="filter:url(#filter23974)"
|
||||
transform="translate(0,-1.7329156)"><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.259033"
|
||||
id="rect23761"
|
||||
width="10.599338"
|
||||
height="10.589584"
|
||||
x="16.216658"
|
||||
y="33.549"
|
||||
inkscape:label="underLetter7" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.26265"
|
||||
id="rect23761-7"
|
||||
width="10.897376"
|
||||
height="10.589584"
|
||||
x="28.011488"
|
||||
y="33.543594"
|
||||
inkscape:label="underLetter6" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.257088"
|
||||
id="rect23761-9"
|
||||
width="10.50198"
|
||||
height="10.527855"
|
||||
x="40.112606"
|
||||
y="33.578739"
|
||||
inkscape:label="underLetter5" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.25713"
|
||||
id="rect23761-2"
|
||||
width="10.52349"
|
||||
height="10.509721"
|
||||
x="51.948662"
|
||||
y="33.564819"
|
||||
inkscape:label="underLetter4" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.259033"
|
||||
id="rect23761-0"
|
||||
width="10.599338"
|
||||
height="10.589584"
|
||||
x="63.735455"
|
||||
y="33.536289"
|
||||
inkscape:label="underLetter3" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.257964"
|
||||
id="rect23761-23"
|
||||
width="10.512033"
|
||||
height="10.589584"
|
||||
x="75.541809"
|
||||
y="33.580673"
|
||||
inkscape:label="underLetter2" /><rect
|
||||
style="fill:#ffffff;fill-rule:evenodd;stroke-width:0.258545"
|
||||
id="rect23761-75"
|
||||
width="10.559443"
|
||||
height="10.589584"
|
||||
x="87.306877"
|
||||
y="33.548592"
|
||||
inkscape:label="underLetter1" /></g><path
|
||||
id="path3265"
|
||||
style="fill:#7892b1;fill-opacity:1;stroke-width:0.201443;filter:url(#filter6742)"
|
||||
inkscape:label="cut-circle"
|
||||
d="m 126.89222,26.299278 a 1.2197143,1.2197143 0 0 0 -1.21974,1.219756 1.2197143,1.2197143 0 0 0 1.21974,1.219757 1.2197143,1.2197143 0 0 0 1.21976,-1.219757 1.2197143,1.2197143 0 0 0 -1.21976,-1.219756 z m -4.32371,1.455665 a 4.0831433,4.0831433 0 0 0 -4.08322,4.083215 4.0831433,4.0831433 0 0 0 4.08322,4.083217 4.0831433,4.0831433 0 0 0 4.08321,-4.083217 4.0831433,4.0831433 0 0 0 -4.08321,-4.083215 z m 1.42081,1.410857 a 1.2197143,1.2197143 0 0 1 1.21977,1.219757 1.2197143,1.2197143 0 0 1 -1.21977,1.219756 1.2197143,1.2197143 0 0 1 -1.21975,-1.219756 1.2197143,1.2197143 0 0 1 1.21975,-1.219757 z" /><g
|
||||
aria-label="A"
|
||||
id="text545"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#c13e4b;stroke-width:0.264583"
|
||||
inkscape:label="A"><path
|
||||
d="M 16.232481,42.406261 V 35.46097 H 23.5085 v -0.330728 h -7.276019 v -3.307281 h 10.5833 v 10.5833 H 23.5085 v -3.63801 h -3.968738 v 0.330728 h 3.638009 v 3.307282 z"
|
||||
id="path51" /></g><g
|
||||
aria-label="W"
|
||||
id="text791"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#d17255;stroke-width:0.264583"
|
||||
inkscape:label="W"><path
|
||||
d="m 28.015234,31.821286 h 7.276018 v 7.276019 h 0.330729 v -7.276019 h 3.307281 v 10.5833 H 28.015234 q 0,-2.480461 0.527098,-2.893871 0.537433,-0.41341 3.110911,-0.41341 v -7.276019 h -0.330728 v 7.286354 l -3.307281,3.296946 z"
|
||||
id="path54" /></g><g
|
||||
aria-label="E"
|
||||
id="text933"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#e8cc5c;stroke-width:0.264583"
|
||||
inkscape:label="E"><path
|
||||
d="m 50.723295,31.831029 v 6.94529 h -7.276018 v 0.330729 h 7.276018 v 3.307281 H 40.139996 v -10.5833 q 2.48046,0 2.893871,0.537433 0.41341,0.527098 0.41341,3.100576 h 7.276018 V 35.13831 h -7.286354 l -3.296945,-3.307281 z"
|
||||
id="path57" /></g><g
|
||||
aria-label="S"
|
||||
id="text1359"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#8ebc65;stroke-width:0.264583"
|
||||
inkscape:label="S"><path
|
||||
d="m 62.521837,42.402442 v -6.94529 h -7.276018 v -0.330728 h 7.276018 V 31.819142 H 51.938538 v 6.945291 h 7.276018 v 0.341063 h -7.276018 v 3.296946 z"
|
||||
id="path60" /></g><g
|
||||
aria-label="O"
|
||||
id="text1501"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#af70a4;stroke-width:0.264583"
|
||||
inkscape:label="O"><path
|
||||
d="m 67.096075,42.413425 q 0,-2.718172 0,-3.172923 0.01033,-0.465087 0.01033,-0.465087 0,0 0,-0.454751 -0.01033,-0.465086 -0.02067,-3.183258 h 7.234677 V 31.830125 H 63.737118 q 0,3.958402 0,4.619858 0,0.661457 0,0.671792 0,0 0,0.661456 0,0.671792 0,4.630194 z m 1.333248,0 q 0,-2.728507 0,-3.183258 0,-0.454752 0,-0.454752 0,0 0,-0.454751 0,-0.454751 0,-3.183258 0,0 0.795814,0 0.78548,0 1.80867,0 1.02319,0 1.984368,0 0.971514,0 1.302242,0 V 31.830125 H 63.737118 q 0,3.958402 0,4.619858 0,0.661457 0,0.671792 0,0 0,0.661456 0,0.671792 0,4.630194 z m 0.434081,0 q 0,0 0,-0.113688 0,-0.113688 0,-0.795815 0,-0.682126 0,-2.160068 0,-1.477941 0,-4.206448 h 5.405337 V 31.830125 H 63.737118 q 0,3.958402 0,4.619858 0,0.661457 0,0.671792 0,0 0,0.661456 0,0.671792 0,4.630194 z m 2.098056,-10.5833 q 0,2.718172 -0.01033,3.172923 0,0.465086 0,0.465086 0,0 0,0.454751 0.01033,0.465087 0.02067,3.183258 h -7.234677 v 3.307282 h 10.583299 q 0,-3.958402 0,-4.619859 0,-0.661456 0,-0.661456 0,-0.01033 0,-0.671791 0,-0.671792 0,-4.630194 z m -1.333248,0 q 0,2.728507 0,3.183258 0,0.454751 0,0.454751 0,0 0,0.454751 0,0.454752 0,3.183258 0,0 -0.795814,0 -0.795815,0 -1.819005,0 -1.012855,0 -1.984369,0 -0.961178,0 -1.291906,0 v 3.307282 h 10.583299 q 0,-3.958402 0,-4.619859 0,-0.661456 0,-0.661456 0,-0.01033 0,-0.671791 0,-0.671792 0,-4.630194 z m -0.43408,0 q 0,0 0,0.113688 0,0.113688 0,0.795814 0,0.682127 0,2.160068 0,1.477942 0,4.206448 h -5.405338 v 3.307282 h 10.531623 q 0,-3.958402 0,-4.619859 0,-0.661456 0,-0.661456 0,-0.01033 0,-0.671791 0,-0.671792 0,-4.630194 z"
|
||||
id="path63" /></g><g
|
||||
aria-label="M"
|
||||
id="text1858"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#5e81ac;stroke-width:0.264583"
|
||||
inkscape:label="M"><path
|
||||
d="m 75.527039,42.414882 h 6.94529 v -7.276019 h 0.330728 v 7.276019 h 3.307281 v -10.5833 H 75.527039 q 0,2.480461 0.527098,2.893871 0.537433,0.41341 3.110911,0.41341 v 7.276019 H 78.83432 v -7.286354 l -3.307281,-3.296946 z"
|
||||
id="path66" /></g><g
|
||||
aria-label="E"
|
||||
id="text2353"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;fill:#81868e;stroke-width:0.264583"
|
||||
inkscape:label="E"><path
|
||||
d="m 97.893129,31.826772 v 6.94529 h -7.276018 v 0.330728 h 7.276018 v 3.307281 H 87.30983 V 31.826772 q 2.480461,0 2.893871,0.537433 0.41341,0.527098 0.41341,3.100576 h 7.276018 V 35.134053 H 90.606776 L 87.30983,31.826772 Z"
|
||||
id="path69" /></g><g
|
||||
aria-label="w"
|
||||
id="text2787"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;stroke-width:0.264583;filter:url(#filter4030)"
|
||||
inkscape:label="W"><path
|
||||
d="m 99.979752,31.822515 h 3.307278 v 7.276018 h 0.33073 v -7.276018 h 3.63801 v 7.276018 h 0.33073 v -7.276018 h 2.97655 V 42.405814 H 99.979752 V 31.987879 h 0.330728 v 10.087207 h 9.92184 v -9.921843 h -2.31509 v 7.276018 h -0.99219 v -7.276018 h -2.97655 v 7.276018 h -0.99219 v -7.276018 h -2.64582 v -0.165364 h -0.330728 z"
|
||||
id="path72" /></g><g
|
||||
aria-label="m"
|
||||
id="text2882"
|
||||
style="font-size:10.5833px;line-height:1.25;font-family:awesomewm-font;-inkscape-font-specification:awesomewm-font;stroke-width:0.264583;filter:url(#filter4030)"
|
||||
inkscape:label="M"><path
|
||||
d="m 111.76244,31.82488 h 10.5833 v 10.583299 h -3.30728 v -7.276018 h -0.33073 v 7.276018 h -3.30728 v -7.276018 h -0.33073 v 7.276018 h -3.30728 V 31.990244 h 0.33073 v 10.087207 h 2.64583 v -7.276018 h 0.99218 v 7.276018 h 2.64583 v -7.276018 h 0.99218 v 7.276018 h 2.64583 v -9.921843 h -9.92185 v -0.165364 h -0.33073 z"
|
||||
id="path75" /></g></g></svg>
|
After Width: | Height: | Size: 12 KiB |
|
@ -0,0 +1,6 @@
|
|||
<svg width="24px" height="24px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<g>
|
||||
<path fill="none" d="M0 0h24v24H0z"/>
|
||||
<path d="M11.38 2.019a7.5 7.5 0 1 0 10.6 10.6C21.662 17.854 17.316 22 12.001 22 6.477 22 2 17.523 2 12c0-5.315 4.146-9.661 9.38-9.981z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 304 B |
|
@ -0,0 +1,127 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="Capa_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 612.001 612.001"
|
||||
style="enable-background:new 0 0 612.001 612.001;"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="sun.svg"
|
||||
inkscape:export-filename="sun.svg"
|
||||
inkscape:export-xdpi="25.59"
|
||||
inkscape:export-ydpi="25.59"
|
||||
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs504" /><sodipodi:namedview
|
||||
id="namedview502"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.6781019"
|
||||
inkscape:cx="289.91088"
|
||||
inkscape:cy="306.5964"
|
||||
inkscape:window-width="1896"
|
||||
inkscape:window-height="1307"
|
||||
inkscape:window-x="1926"
|
||||
inkscape:window-y="836"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Capa_1" />
|
||||
<g
|
||||
id="g469">
|
||||
<g
|
||||
id="g467">
|
||||
<path
|
||||
d="m 306,149.341 c -86.382,0 -156.661,70.278 -156.661,156.661 0,86.382 70.278,156.66 156.661,156.66 86.383,0 156.66,-70.278 156.66,-156.66 0,-86.384 -70.278,-156.661 -156.66,-156.661 z"
|
||||
id="path449"
|
||||
style="display:inline;fill:#4f5867;fill-opacity:1" />
|
||||
<path
|
||||
d="M274.194,117.278h63.612c5.032,0,9.356-2.101,11.863-5.763c2.508-3.662,2.9-8.453,1.079-13.146L315.749,8.257 c-2.789-7.184-7.305-8.256-9.749-8.256s-6.96,1.073-9.749,8.255l-35,90.114c-1.821,4.692-1.427,9.482,1.079,13.145 C264.837,115.178,269.162,117.278,274.194,117.278z"
|
||||
id="path451"
|
||||
style="fill:#4f5867;fill-opacity:1" />
|
||||
<path
|
||||
d="M337.806,494.723h-63.612c-5.032,0-9.357,2.102-11.863,5.764c-2.506,3.663-2.9,8.453-1.079,13.145l34.999,90.114 c2.789,7.182,7.305,8.254,9.749,8.254c2.444,0,6.96-1.072,9.749-8.254l34.999-90.115c1.821-4.69,1.429-9.48-1.079-13.144 C347.162,496.825,342.838,494.723,337.806,494.723z"
|
||||
id="path453"
|
||||
style="fill:#4f5867;fill-opacity:1" />
|
||||
<path
|
||||
d="M127.54,190.824c2.412,5.477,7.028,8.746,12.348,8.746c3.644,0,7.257-1.608,10.174-4.526l44.981-44.98 c3.558-3.558,5.13-8.102,4.312-12.466c-0.819-4.362-3.928-8.028-8.532-10.056l-88.467-38.973c-2.233-0.983-4.336-1.482-6.25-1.482 c-3.201,0-5.959,1.415-7.568,3.882c-1.357,2.081-2.454,5.747,0.031,11.389L127.54,190.824z"
|
||||
id="path455"
|
||||
style="fill:#4f5867;fill-opacity:1" />
|
||||
<path
|
||||
d="M484.46,421.178c-2.412-5.477-7.027-8.746-12.346-8.746c-3.645,0-7.259,1.609-10.177,4.527l-44.981,44.98 c-3.558,3.559-5.13,8.104-4.312,12.466c0.818,4.362,3.929,8.028,8.532,10.055l88.466,38.974c2.233,0.983,4.336,1.482,6.25,1.482 c3.201,0,5.959-1.417,7.568-3.882c1.358-2.083,2.455-5.748-0.03-11.389L484.46,421.178z"
|
||||
id="path457"
|
||||
style="fill:#4f5867;fill-opacity:1" />
|
||||
<path
|
||||
d="M461.937,195.044c2.918,2.918,6.532,4.526,10.176,4.526c5.319,0,9.934-3.269,12.348-8.746l38.972-88.465 c2.486-5.643,1.389-9.308,0.031-11.389c-1.609-2.467-4.367-3.882-7.568-3.882c-1.914,0-4.017,0.499-6.251,1.483l-88.466,38.97 c-4.604,2.029-7.715,5.694-8.532,10.057c-0.818,4.363,0.754,8.908,4.312,12.466L461.937,195.044z"
|
||||
id="path459"
|
||||
style="fill:#4f5867;fill-opacity:1" />
|
||||
<path
|
||||
d="M150.063,416.959c-2.918-2.918-6.532-4.527-10.177-4.527c-5.319,0-9.934,3.269-12.346,8.746l-38.972,88.465 c-2.486,5.643-1.389,9.308-0.031,11.39c1.609,2.466,4.368,3.882,7.568,3.882c1.914,0,4.017-0.499,6.251-1.484l88.466-38.972 c4.604-2.028,7.715-5.694,8.532-10.056c0.818-4.362-0.753-8.907-4.312-12.466L150.063,416.959z"
|
||||
id="path461"
|
||||
style="fill:#4f5867;fill-opacity:1" />
|
||||
<path
|
||||
d="M603.745,296.251l-90.111-34.996c-1.942-0.755-3.896-1.137-5.806-1.137c-7.593,0-13.104,5.921-13.104,14.078l0.001,63.613 c0,8.157,5.511,14.078,13.104,14.078c1.912,0,3.866-0.382,5.806-1.136l90.112-34.999c7.182-2.79,8.254-7.306,8.254-9.751 C612.001,303.558,610.926,299.04,603.745,296.251z"
|
||||
id="path463"
|
||||
style="fill:#4f5867;fill-opacity:1" />
|
||||
<path
|
||||
d="M104.173,351.886c7.594,0,13.106-5.921,13.106-14.078v-63.613c0-8.157-5.511-14.078-13.106-14.078 c-1.912,0-3.864,0.382-5.805,1.136L8.255,296.251C1.073,299.04,0,303.556,0,306.001c0,2.444,1.072,6.96,8.255,9.752l90.111,34.996 C100.308,351.503,102.261,351.886,104.173,351.886z"
|
||||
id="path465"
|
||||
style="fill:#4f5867;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g471">
|
||||
</g>
|
||||
<g
|
||||
id="g473">
|
||||
</g>
|
||||
<g
|
||||
id="g475">
|
||||
</g>
|
||||
<g
|
||||
id="g477">
|
||||
</g>
|
||||
<g
|
||||
id="g479">
|
||||
</g>
|
||||
<g
|
||||
id="g481">
|
||||
</g>
|
||||
<g
|
||||
id="g483">
|
||||
</g>
|
||||
<g
|
||||
id="g485">
|
||||
</g>
|
||||
<g
|
||||
id="g487">
|
||||
</g>
|
||||
<g
|
||||
id="g489">
|
||||
</g>
|
||||
<g
|
||||
id="g491">
|
||||
</g>
|
||||
<g
|
||||
id="g493">
|
||||
</g>
|
||||
<g
|
||||
id="g495">
|
||||
</g>
|
||||
<g
|
||||
id="g497">
|
||||
</g>
|
||||
<g
|
||||
id="g499">
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
15
index.mdwn
|
@ -8,10 +8,19 @@ It is primarily targeted at power users, developers and any people dealing with
|
|||
every day computing tasks and who want to have fine-grained control on their
|
||||
graphical environment.
|
||||
|
||||
<div class="screenshot">
|
||||
[[!img images/screen.png alt="awesome screenshot" size="382x216"]]
|
||||
<div class="flex-container">
|
||||
<div class="row">
|
||||
<a class="btn shine" href="https://awesomewm.org/doc/api/documentation/07-my-first-awesome.md.html#">awesome 4.3<br/>documentation<br/>(stable)</a>
|
||||
<a class="flex-href" href="https://awesomewm.org/apidoc/documentation/07-my-first-awesome.md.html#">
|
||||
Docs for latest git version</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="screenshot">
|
||||
[[!img images/screen.png link="images/screen.png" alt="awesome screenshot"]]
|
||||
</div>
|
||||
|
||||
|
||||
# Concepts
|
||||
|
||||
A window manager is probably one of the most used software applications in
|
||||
|
@ -39,7 +48,7 @@ window manager.
|
|||
* Very stable, fast and small codebase and footprint.
|
||||
* First window manager using the asynchronous [XCB](http://xcb.freedesktop.org)
|
||||
library instead of the old, synchronous
|
||||
[Xlib](http://en.wikipedia.org/wiki/Xlib), which makes **awesome** less
|
||||
[Xlib](http://en.wikipedia.org/wiki/Xlib), which makes **awesome** less
|
||||
subject to latency compared to other window managers.
|
||||
* Documented source code and API.
|
||||
* No mouse needed: everything can be performed with the keyboard.
|
||||
|
|
312
local.css
|
@ -1,312 +0,0 @@
|
|||
/* Styles for https://awesomewm.org/
|
||||
* Source: https://github.com/awesomeWM/awesome-www
|
||||
* Originally created by Devit Schizoper (01.12.2006)
|
||||
*/
|
||||
|
||||
body {
|
||||
font-family: Verdana, Arial, sans-serif;
|
||||
font-size: 0.8em;
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 11px 0 10px 0;
|
||||
padding: 0;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-image: url(images/bullet.gif);
|
||||
margin:0;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #3f4c4b;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #006699;
|
||||
}
|
||||
|
||||
ul.active-menu-about li.menu-about,
|
||||
ul.active-menu-download li.menu-download,
|
||||
ul.active-menu-community li.menu-community,
|
||||
ul.active-menu-recipes li.menu-recipes,
|
||||
ul.active-menu-screenshots li.menu-screenshots,
|
||||
ul.active-menu-doc li.menu-doc {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
blockquote{
|
||||
background: #F7FDE3;
|
||||
color: #606060;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
/**** Main Container ***/
|
||||
|
||||
#wrap {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
/**** Top ***/
|
||||
|
||||
#top {
|
||||
display: inline-block;
|
||||
font-size: 1.0em;
|
||||
margin-left: 0;
|
||||
overflow:hidden;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#top h2 {
|
||||
display:block;
|
||||
float:left;
|
||||
font-size: 3.0em;
|
||||
font-weight: bold;
|
||||
letter-spacing: 3px;
|
||||
margin-right: 20px;
|
||||
position: relative;
|
||||
top: 5px;
|
||||
}
|
||||
|
||||
#top h2 a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#top h2 a:hover {
|
||||
color: black;
|
||||
}
|
||||
|
||||
/**** Center Logo ****/
|
||||
|
||||
#center-logo img {
|
||||
margin-left: 40%;
|
||||
padding-top: 20px;
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
/**** Main Menu ***/
|
||||
|
||||
#menu {
|
||||
display: inline-block;
|
||||
height: 50px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#menu ul {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
overflow: auto;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#menu ul {
|
||||
float: right;
|
||||
}
|
||||
|
||||
#menu ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
#menu li {
|
||||
display: block;
|
||||
float: left;
|
||||
}
|
||||
|
||||
#menu li a {
|
||||
display: block;
|
||||
font-size: 0.99em;
|
||||
font-weight: bold;
|
||||
padding: 20px 15px 50px 15px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
* html #menu a {width:1%;}
|
||||
|
||||
#menu li a:hover {
|
||||
color: black;
|
||||
}
|
||||
|
||||
#menu li a.current {
|
||||
color: gray;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
/**** Content Container ***/
|
||||
|
||||
#content {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#content h1 {
|
||||
margin: 0;
|
||||
padding: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
#content h2 {
|
||||
margin: 0;
|
||||
padding: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
|
||||
/**** Content ***/
|
||||
|
||||
.screenshot {
|
||||
margin: 32px 32px 32px 32px;
|
||||
text-align: center;
|
||||
}
|
||||
.screenshot img {
|
||||
border: 2px solid #347272;
|
||||
}
|
||||
|
||||
.screenshot p {
|
||||
padding-left: 80px;
|
||||
}
|
||||
|
||||
#left ul {
|
||||
margin:0;
|
||||
padding: 15px 0 15px 35px;
|
||||
}
|
||||
|
||||
#left li {
|
||||
margin-bottom:5px;
|
||||
}
|
||||
|
||||
#left {
|
||||
display: block;
|
||||
display: inline;
|
||||
float:left;
|
||||
margin-left: 20%;
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
|
||||
/**** Sidebar ***/
|
||||
|
||||
#right {
|
||||
display:block;
|
||||
float: right;
|
||||
margin-top: 10px;
|
||||
width: 0px;
|
||||
}
|
||||
|
||||
#right .box {
|
||||
background: #F6F9FB;
|
||||
border: 1px solid #E1E1E1;
|
||||
float: right;
|
||||
padding:10px 10px 15px 10px;
|
||||
width: 24em;/*280px*/
|
||||
}
|
||||
|
||||
#right .box h2 {
|
||||
font-size: 1.1em;
|
||||
margin: 0 0 0 0;
|
||||
padding: 0 0 5px 0;
|
||||
}
|
||||
|
||||
#right .box a {
|
||||
font-size: 10px;
|
||||
margin: 10px 0 10px 0;
|
||||
}
|
||||
|
||||
#right .box p {
|
||||
line-height: 15px;
|
||||
margin: 5px 0 10px 0;
|
||||
}
|
||||
|
||||
#right .box ul {
|
||||
margin:10px 0 10px 0;
|
||||
padding: 0 0 7px 20px;
|
||||
}
|
||||
|
||||
#right .box li {
|
||||
margin-top:5px;
|
||||
}
|
||||
|
||||
#nav {
|
||||
float: right;
|
||||
list-style: none;
|
||||
margin: 2.0em 0;
|
||||
width: 25em;
|
||||
}
|
||||
#nav li {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
#nav a {
|
||||
background-color: #F7F9FB;
|
||||
border-bottom: 2px;
|
||||
border-top: 2px;
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
height: 2.0em;
|
||||
padding: 0.3em 0.3em 0.3em 0.8em;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#nav a:hover{
|
||||
background: url(images/bg_t.gif) no-repeat;
|
||||
background-color: #fff;
|
||||
color: #1a1a1a;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/**** Clear Div ***/
|
||||
|
||||
#clear {
|
||||
clear: both;
|
||||
display: block;
|
||||
height:1px;
|
||||
overflow:hidden;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
/**** Footer ***/
|
||||
|
||||
#pageinfo {
|
||||
border-top: 0;
|
||||
margin: 0 0;
|
||||
}
|
||||
|
||||
#footer {
|
||||
border-top: dashed 1px gray;
|
||||
margin: 40px auto 0 auto;
|
||||
padding: 20px 0 20px 0;
|
||||
text-align: center;
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
#footer p {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#donate {
|
||||
margin: 1em 0;
|
||||
text-align: center;
|
||||
}
|
||||
#donate p, #donate div {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.standout {
|
||||
font-size:larger;
|
||||
font-weight:bold;
|
||||
color: #A94442;
|
||||
}
|
||||
|
||||
.standout a {
|
||||
color: red;
|
||||
}
|
||||
|
||||
/* vim: set sw=2 et: */
|
|
@ -0,0 +1,51 @@
|
|||
const checkbox = document.querySelector("input[type='checkbox']");
|
||||
const mode_switch_icon = document.querySelector(".mode-switch-icon");
|
||||
|
||||
// configure and set correct state of theme checkbox
|
||||
checkbox.checked = siteVars['theme_active'] == 'dark'
|
||||
checkbox.addEventListener("click", () => {
|
||||
theme_switch();
|
||||
set_theme_checkbox();
|
||||
});
|
||||
|
||||
set_theme_checkbox();
|
||||
|
||||
// apply specific styling after page reload
|
||||
document.getElementById('navbar').classList.add("topBotomBordersOut");
|
||||
|
||||
// set correct state of dark/light theme mode
|
||||
function set_theme_checkbox() {
|
||||
if (checkbox.checked) {
|
||||
mode_switch_icon.classList.add("mode-switch-dark");
|
||||
mode_switch_icon.classList.remove("mode-switch-light");
|
||||
} else {
|
||||
mode_switch_icon.classList.add("mode-switch-light");
|
||||
mode_switch_icon.classList.remove("mode-switch-dark");
|
||||
}
|
||||
}
|
||||
|
||||
// switch dark/light mode and store the state to local storage
|
||||
function theme_switch() {
|
||||
if (siteVars['theme_active'] == 'light') {
|
||||
siteVars['theme_active'] = siteVars['theme_forced'] = 'dark';
|
||||
|
||||
document.getElementById('css-darkmode').setAttribute('media', 'all');
|
||||
document.getElementById('css-darkmode').disabled = false;
|
||||
|
||||
document.getElementById('css-lightmode').setAttribute('media', 'not all');
|
||||
document.getElementById('css-lightmode').disabled = true;
|
||||
} else {
|
||||
siteVars['theme_active'] = siteVars['theme_forced'] = 'light';
|
||||
|
||||
document.getElementById('css-darkmode').setAttribute('media', 'not all');
|
||||
document.getElementById('css-darkmode').disabled = true;
|
||||
|
||||
document.getElementById('css-lightmode').setAttribute('media', 'all');
|
||||
document.getElementById('css-lightmode').disabled = false;
|
||||
}
|
||||
localStorage.setItem('theme_forced', siteVars['theme_active']);
|
||||
|
||||
document.body.classList.add('expand');
|
||||
document.body.offsetHeight;
|
||||
document.body.classList.remove('expand');
|
||||
}
|
|
@ -0,0 +1,37 @@
|
|||
var siteVars = new Array();
|
||||
siteVars['theme_active'] = 'light';
|
||||
siteVars['theme_forced'] = '';
|
||||
|
||||
// combine prefers color theme or custom selected user dark/light theme
|
||||
let themeForcedStored = localStorage.getItem('theme_forced');
|
||||
if (themeForcedStored == 'light' || themeForcedStored == 'dark') {
|
||||
siteVars['theme_forced'] = themeForcedStored;
|
||||
}
|
||||
|
||||
siteVars['theme_active'] = 'light';
|
||||
if ((window.matchMedia &&
|
||||
window.matchMedia('(prefers-color-scheme: dark)').matches) ||
|
||||
siteVars['theme_forced'] == 'dark') {
|
||||
siteVars['theme_active'] = 'dark';
|
||||
}
|
||||
|
||||
if (siteVars['theme_forced'] != '') {
|
||||
siteVars['theme_active'] = siteVars['theme_forced'];
|
||||
}
|
||||
|
||||
if (siteVars['theme_forced'] != '') {
|
||||
if (siteVars['theme_forced'] == 'dark') {
|
||||
document.getElementById('css-darkmode').setAttribute('media', 'all');
|
||||
document.getElementById('css-darkmode').disabled = false;
|
||||
|
||||
document.getElementById('css-lightmode').setAttribute('media', 'not all');
|
||||
document.getElementById('css-lightmode').disabled = true;
|
||||
|
||||
} else {
|
||||
document.getElementById('css-darkmode').setAttribute('media', 'not all');
|
||||
document.getElementById('css-darkmode').disabled = true;
|
||||
|
||||
document.getElementById('css-lightmode').setAttribute('media', 'all');
|
||||
document.getElementById('css-lightmode').disabled = false;
|
||||
}
|
||||
}
|
|
@ -1,154 +1,144 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title><TMPL_VAR TITLE> - awesome window manager</title>
|
||||
<link rel="icon" href="<TMPL_VAR BASEURL>images/icons/aw_16.png" type="image/png" />
|
||||
<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
|
||||
<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css" type="text/css" />
|
||||
<TMPL_IF NAME="FEEDLINKS"><TMPL_VAR FEEDLINKS></TMPL_IF>
|
||||
<TMPL_IF NAME="META"><TMPL_VAR META></TMPL_IF>
|
||||
<title>
|
||||
<TMPL_VAR TITLE> - awesome window manager
|
||||
</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<meta name="supported-color-schemes" content="dark light">
|
||||
<meta name="color-scheme" content="dark light">
|
||||
<meta name="theme-color" content="">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="<TMPL_VAR BASEURL>style.css">
|
||||
<link rel="stylesheet" type="text/css" href="<TMPL_VAR BASEURL>css/mode-switch.css">
|
||||
<link rel="stylesheet" type="text/css" href="<TMPL_VAR BASEURL>css/local.css" />
|
||||
<link id="css-lightmode" rel="stylesheet" type="text/css" href="<TMPL_VAR BASEURL>css/light.css"
|
||||
media="(prefers-color-scheme: no-preference), (prefers-color-scheme: light)" />
|
||||
<link id="css-darkmode" rel="stylesheet" type="text/css" href="<TMPL_VAR BASEURL>css/dark.css"
|
||||
media="(prefers-color-scheme: dark)" />
|
||||
|
||||
<script src="<TMPL_VAR BASEURL>script/dark-light-mode.js"></script>
|
||||
|
||||
<link rel="icon" href="<TMPL_VAR BASEURL>images/icons/aw_16.png" type="image/png" />
|
||||
|
||||
<TMPL_IF NAME="FEEDLINKS">
|
||||
<TMPL_VAR FEEDLINKS>
|
||||
</TMPL_IF>
|
||||
<TMPL_IF NAME="META">
|
||||
<TMPL_VAR META>
|
||||
</TMPL_IF>
|
||||
|
||||
<meta property="og:title" content="home" />
|
||||
<meta property="og:locale" content="en_US" />
|
||||
<meta name="description" content="The awesomewm.org website" />
|
||||
<meta property="og:description" content="The awesomewm.org website" />
|
||||
<link rel="canonical" href="https://awesomewm.org/" />
|
||||
<meta property="og:url" content="https://awesomewm.org/" />
|
||||
<meta property="og:site_name" content="awesome window manager" />
|
||||
<meta property="og:type" content="website" />
|
||||
<script type="application/ld+json">
|
||||
{"@context": "https://schema.org","@type": "WebSite","description": "The awesomewm.org website","headline": "home","name": "awesome window manager","publisher": {"@type": "Organization","logo": {"@type": "ImageObject","url": "https://awesomewm.org/images/icons/aw_64.png"}},"url": "https://awesomewm.org/"}</script>
|
||||
</head>
|
||||
<body>
|
||||
<header id="pageheader">
|
||||
<a href="https://github.com/awesomeWM/awesome"><img class="fork-me-banner"
|
||||
src="https://camo.githubusercontent.com/82b228a3648bf44fc1163ef44c62fcc60081495e/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f7265645f6161303030302e706e67"
|
||||
alt="Fork me on GitHub"
|
||||
data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_left_red_aa0000.png"></a>
|
||||
|
||||
<div id="wrap">
|
||||
<a href="https://github.com/awesomeWM/awesome"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://camo.githubusercontent.com/82b228a3648bf44fc1163ef44c62fcc60081495e/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f7265645f6161303030302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_left_red_aa0000.png"></a>
|
||||
<div id="top">
|
||||
<TMPL_IF NAME="SEARCHFORM">
|
||||
<TMPL_VAR SEARCHFORM>
|
||||
</TMPL_IF>
|
||||
<div id="center-logo">
|
||||
<a href="<TMPL_VAR BASEURL>index.html" title="Back to main page">
|
||||
<img alt="awesome-logo" src="<TMPL_VAR BASEURL>images/awesome-logo.svg">
|
||||
</a>
|
||||
</div>
|
||||
<div id="menu">
|
||||
<ul class="active-menu-<TMPL_VAR NAME="title">">
|
||||
<li class="menu-about"><a href="<TMPL_VAR BASEURL>index.html">home</a></li>
|
||||
<li class="menu-download"><a href="<TMPL_VAR BASEURL>download/">download</a></li>
|
||||
<li class="menu-community"><a href="<TMPL_VAR BASEURL>community/">community</a></li>
|
||||
<li class="menu-recipes"><a href="<TMPL_VAR BASEURL>recipes/">recipes</a></li>
|
||||
<li class="menu-screenshots"><a href="<TMPL_VAR BASEURL>screenshots/">screenshots</a></li>
|
||||
<li class="menu-doc"><a href="<TMPL_VAR BASEURL>doc/">doc</a></li>
|
||||
<li class="menu-issues"><a href="https://github.com/awesomeWM/awesome/issues">bugs/issues</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<figure class="darkmode" id="justified-logo">
|
||||
<img alt="awesome-logo" src="<TMPL_VAR BASEURL>images/awesome-dark-1.svg">
|
||||
</figure>
|
||||
<figure class="lightmode" id="justified-logo">
|
||||
<img alt="awesome-logo" src="<TMPL_VAR BASEURL>images/awesome2.svg">
|
||||
</figure>
|
||||
|
||||
<TMPL_IF NAME="HAVE_ACTIONS">
|
||||
<div class="actions">
|
||||
<ul>
|
||||
<TMPL_IF NAME="EDITURL">
|
||||
<li><a href="<TMPL_VAR EDITURL>">Edit</a></li>
|
||||
<nav id="navbar" class="container active-menu-<TMPL_VAR NAME="title">">
|
||||
<a class="menu-about" alt="home" href="<TMPL_VAR BASEURL>index.html">home</a>
|
||||
<a class="menu-download" alt="download" href="<TMPL_VAR BASEURL>download/">download</a>
|
||||
<a class="menu-community" alt="community" href="<TMPL_VAR BASEURL>community/">community</a>
|
||||
<a class="menu-recipes" alt="recipes" href="<TMPL_VAR BASEURL>recipes/">recipes</a>
|
||||
<a class="menu-screenshots" alt="screenshots" href="<TMPL_VAR BASEURL>screenshots/">screenshots</a>
|
||||
<a class="menu-doc" alt="doc" href="<TMPL_VAR BASEURL>doc/">doc</a>
|
||||
<a class="menu-issues" alt="bugs/issues" href="https://github.com/awesomeWM/awesome/issues">bugs/issues</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<article id="content">
|
||||
<TMPL_VAR CONTENT>
|
||||
</article>
|
||||
|
||||
<section id="clear"></section>
|
||||
|
||||
<footer>
|
||||
<section id="pageinfo">
|
||||
<figure class="darkmode">
|
||||
<img class="aw-anniversary" alt="15years anniversary" src="<TMPL_VAR BASEURL>images/awesome-15yrs-anniversary-dark.svg"
|
||||
width="250">
|
||||
</figure>
|
||||
<figure class="lightmode">
|
||||
<img class="aw-anniversary" alt="15years anniversary" src="<TMPL_VAR BASEURL>images/awesome-15yrs-anniversary.svg" width="250">
|
||||
</figure>
|
||||
|
||||
<script type='text/javascript'
|
||||
src='https://www.openhub.net/p/awesome/widgets/project_factoids_stats?format=js'></script>
|
||||
|
||||
<section id="donate">
|
||||
<strong>Donations:</strong>
|
||||
<div>
|
||||
<script
|
||||
id='fbirvwx'>(function (i) { var f, s = document.getElementById(i); f = document.createElement('iframe'); f.src = 'https://button.flattr.com/view/?fid=mqwonm&button=compact&url=https%3A%2F%2Fawesomewm.org%2F'; f.title = 'Flattr'; f.height = 20; f.width = 110; f.style.borderWidth = 0; s.parentNode.insertBefore(f, s); })('fbirvwx');</script>
|
||||
</div>
|
||||
<p>Bitcoin: 1A2LsrF81rWEEJ7qnXdkCUJpdCYUxqfQoP</p>
|
||||
</section>
|
||||
|
||||
<section class="copyright">
|
||||
<a id="pagecopyright"></a>
|
||||
<TMPL_IF COPYRIGHT>
|
||||
<TMPL_VAR COPYRIGHT>
|
||||
</TMPL_IF>
|
||||
Copyleft 2007-2022, AwesomeWM project
|
||||
</section>
|
||||
|
||||
<TMPL_IF LICENSE>
|
||||
<section class="license">
|
||||
<a name="pagelicense"></a>
|
||||
License: <TMPL_VAR LICENSE>
|
||||
</section>
|
||||
</TMPL_IF>
|
||||
<TMPL_IF NAME="RECENTCHANGESURL">
|
||||
<li><a href="<TMPL_VAR RECENTCHANGESURL>">RecentChanges</a></li>
|
||||
</TMPL_IF>
|
||||
<TMPL_IF NAME="HISTORYURL">
|
||||
<li><a href="<TMPL_VAR HISTORYURL>">History</a></li>
|
||||
</TMPL_IF>
|
||||
<TMPL_IF NAME="PREFSURL">
|
||||
<li><a href="<TMPL_VAR PREFSURL>">Preferences</a></li>
|
||||
</TMPL_IF>
|
||||
<TMPL_IF NAME="DISCUSSIONLINK">
|
||||
<li><TMPL_VAR DISCUSSIONLINK><br /></li>
|
||||
</TMPL_IF>
|
||||
</ul>
|
||||
</div>
|
||||
</TMPL_IF>
|
||||
|
||||
<TMPL_IF SIDEBAR>
|
||||
<div id="sidebar">
|
||||
<TMPL_VAR SIDEBAR>
|
||||
</div>
|
||||
</TMPL_IF>
|
||||
|
||||
<div id="content">
|
||||
<!-- <h1><TMPL_VAR TITLE></h1> -->
|
||||
<div id="left">
|
||||
<TMPL_VAR CONTENT>
|
||||
</div>
|
||||
<!--
|
||||
<div id="right">
|
||||
<ul id="nav">
|
||||
<li><a href="/">home</a></li>
|
||||
</ul>
|
||||
<div class="box">
|
||||
<h2 style="margin-top:17px">Latest news</h2>
|
||||
<ul>
|
||||
<li><a href="#">Recent Entries1</a> <i>01 Des 06</i></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
-->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="clear"></div>
|
||||
|
||||
<div id="footer">
|
||||
<div id="pageinfo">
|
||||
|
||||
<TMPL_IF NAME="TAGS">
|
||||
<div class="tags">
|
||||
Tags:
|
||||
<TMPL_LOOP NAME="TAGS">
|
||||
<TMPL_VAR NAME=LINK>
|
||||
</TMPL_LOOP>
|
||||
</div>
|
||||
</TMPL_IF>
|
||||
|
||||
<script type='text/javascript' src='https://www.openhub.net/p/awesome/widgets/project_factoids_stats?format=js'></script>
|
||||
|
||||
<div id="donate">
|
||||
<strong>Donations:</strong>
|
||||
<div>
|
||||
<script id='fbirvwx'>(function(i){var f,s=document.getElementById(i);f=document.createElement('iframe');f.src='https://button.flattr.com/view/?fid=mqwonm&button=compact&url=https%3A%2F%2Fawesomewm.org%2F';f.title='Flattr';f.height=20;f.width=110;f.style.borderWidth=0;s.parentNode.insertBefore(f,s);})('fbirvwx');</script>
|
||||
</div>
|
||||
<p>Bitcoin: 1A2LsrF81rWEEJ7qnXdkCUJpdCYUxqfQoP</p>
|
||||
</div>
|
||||
|
||||
<div class="copyright">
|
||||
<a id="pagecopyright"></a>
|
||||
<TMPL_IF COPYRIGHT>
|
||||
<TMPL_VAR COPYRIGHT>
|
||||
</TMPL_IF>
|
||||
Copyleft 2007-2022, AwesomeWM project
|
||||
</div>
|
||||
<TMPL_IF LICENSE>
|
||||
<div class="license">
|
||||
<a name="pagelicense"></a>
|
||||
License: <TMPL_VAR LICENSE>
|
||||
</div>
|
||||
</TMPL_IF>
|
||||
|
||||
<div class="pagedate">
|
||||
Last edited <TMPL_VAR NAME=MTIME>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<TMPL_IF EXTRAFOOTER><TMPL_VAR EXTRAFOOTER></TMPL_IF>
|
||||
<!-- from <TMPL_VAR NAME=WIKINAME> -->
|
||||
</div>
|
||||
|
||||
<!-- Piwik -->
|
||||
<script type="text/javascript">
|
||||
var _paq = _paq || [];
|
||||
_paq.push(["setCookieDomain", "*.awesomewm.org"]);
|
||||
_paq.push(["setDomains", ["*.awesomewm.org"]]);
|
||||
_paq.push(['trackPageView']);
|
||||
_paq.push(['enableLinkTracking']);
|
||||
(function() {
|
||||
var u="https://piwik.awesomewm.org/";
|
||||
_paq.push(['setTrackerUrl', u+'piwik.php']);
|
||||
_paq.push(['setSiteId', 26]);
|
||||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
|
||||
})();
|
||||
</script>
|
||||
<noscript><p><img src="https://piwik.awesomewm.org/piwik.php?idsite=26" style="border:0;" alt="" /></p></noscript>
|
||||
<!-- End Piwik Code -->
|
||||
<section class="pagedate">
|
||||
Last edited <TMPL_VAR NAME=MTIME>
|
||||
</section>
|
||||
</section>
|
||||
</footer>
|
||||
|
||||
<!-- dark/light support -->
|
||||
<ul class="mode-switch">
|
||||
<li class="mode-switch-icon"></li>
|
||||
<li><label class="switch"><input type="checkbox"><span class="slider round"></span></label></li>
|
||||
</ul>
|
||||
<script defer src="<TMPL_VAR BASEURL>script/dark-light-mode-switch.js"></script>
|
||||
<!-- Piwik -->
|
||||
<script type="text/javascript">
|
||||
var _paq = _paq || [];
|
||||
_paq.push(["setCookieDomain", "*.awesomewm.org"]);
|
||||
_paq.push(["setDomains", ["*.awesomewm.org"]]);
|
||||
_paq.push(['trackPageView']);
|
||||
_paq.push(['enableLinkTracking']);
|
||||
(function () {
|
||||
var u = "https://piwik.awesomewm.org/";
|
||||
_paq.push(['setTrackerUrl', u + 'piwik.php']);
|
||||
_paq.push(['setSiteId', 26]);
|
||||
var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
|
||||
g.type = 'text/javascript'; g.async = true; g.defer = true; g.src = u + 'piwik.js'; s.parentNode.insertBefore(g, s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>
|
||||
<p><img src="https://piwik.awesomewm.org/piwik.php?idsite=26" style="border:0;" alt="" /></p>
|
||||
</noscript>
|
||||
</body>
|
||||
</html>
|
||||
|
|