Update logo
This commit is contained in:
parent
efc87e188e
commit
32ef792a34
4 changed files with 27 additions and 30 deletions
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
<title>Edgar P. Burkhart</title>
|
<title>Edgar P. Burkhart</title>
|
||||||
|
|
||||||
<link rel="icon" href="static/svg/logo-border.svg" />
|
<link rel="icon" href="static/svg/logo.svg" />
|
||||||
<link rel="stylesheet" href="static/css/main.css" />
|
<link rel="stylesheet" href="static/css/main.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -52,10 +52,6 @@ a {
|
||||||
}
|
}
|
||||||
a:hover {text-decoration: underline;}
|
a:hover {text-decoration: underline;}
|
||||||
|
|
||||||
.logo {
|
|
||||||
border-radius: 50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav {
|
nav {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
@ -84,7 +80,6 @@ nav a.active {
|
||||||
}
|
}
|
||||||
nav img {
|
nav img {
|
||||||
height: 2rem;
|
height: 2rem;
|
||||||
border: .1rem solid white;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {list-style-type: "–"}
|
ul {list-style-type: "–"}
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
<svg version="1.1"
|
|
||||||
width="100"
|
|
||||||
height="100"
|
|
||||||
xmlns="http://www.w3.org/2000/svg">
|
|
||||||
|
|
||||||
<path fill="#8ac149" stroke="black" stroke-width="2" d="M 60 40
|
|
||||||
Q 80 45 75 55
|
|
||||||
Q 75 50 55 50"/>
|
|
||||||
<path fill="white" stroke="black" stroke-width="2" d="M 10,100
|
|
||||||
v -50
|
|
||||||
a 25 25 0 0 1 25 -25
|
|
||||||
c 10 0 20 12 25 15
|
|
||||||
l -5 10
|
|
||||||
C 30 50 40 55 45 100"/>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 344 B |
|
@ -2,14 +2,31 @@
|
||||||
width="100"
|
width="100"
|
||||||
height="100"
|
height="100"
|
||||||
xmlns="http://www.w3.org/2000/svg">
|
xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<defs>
|
||||||
<path fill="#8ac149" stroke="#8ac149" stroke-width="2" d="M 60 40
|
<rect id="basemask" x="0" y="0" width="100" height="100" />
|
||||||
|
<path id="goa" d="M 60 40
|
||||||
Q 80 45 75 55
|
Q 80 45 75 55
|
||||||
Q 75 50 55 50"/>
|
Q 75 50 55 50" transform="translate(8 0)" />
|
||||||
<path fill="white" stroke="white" stroke-width="2" d="M 10,100
|
<path id="gob" d="M 10,100
|
||||||
v -50
|
v -50
|
||||||
a 25 25 0 0 1 25 -25
|
a 25 25 0 0 1 25 -25
|
||||||
c 10 0 20 12 25 15
|
c 10 0 20 12 25 15
|
||||||
l -5 10
|
l -5 10
|
||||||
C 30 50 40 55 45 100"/>
|
C 30 50 40 55 45 100" transform="translate(8 0)" />
|
||||||
|
</defs>
|
||||||
|
|
||||||
|
<mask id="mask">
|
||||||
|
<use href="#basemask" fill="black" />
|
||||||
|
<circle cx="50" cy="50" r="50" fill="white" />
|
||||||
|
</mask>
|
||||||
|
<mask id="mask-go">
|
||||||
|
<use href="#basemask" fill="white" />
|
||||||
|
<use href="#goa" fill="black" />
|
||||||
|
<use href="#gob" fill="black" />
|
||||||
|
</mask>
|
||||||
|
|
||||||
|
<circle cx="50" cy="50" r="50" fill="black" mask="url(#mask-go)" />
|
||||||
|
|
||||||
|
<use href="#goa" fill="#8ac149" mask="url(#mask)" />
|
||||||
|
<use href="#gob" fill="white" mask="url(#mask)" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 346 B After Width: | Height: | Size: 847 B |
Loading…
Reference in a new issue