Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating lumos styles #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified hp-lumos/demo/demo_lumos.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hp-lumos/hp.TTF
Binary file not shown.
61 changes: 32 additions & 29 deletions hp-lumos/index.html
Original file line number Diff line number Diff line change
@@ -1,32 +1,36 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lumos</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style.css" />
<style type="text/css">
.st0 {
fill: black;
}
.st0 {
fill: black;
}
</style>
</head>
</head>

<body>
<body>
<div class="container">
<div class="canvas">
<span id="L">L</span>
<span id="U">U</span>
<span id="M">M</span>
<span id="O">O</span>
<span id="S">S</span>
</div>
<div class="wand">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" viewBox="0 0 1800 1800" style="enable-background:new 0 0 1800 1800;" xml:space="preserve">
<path class="st0" d="M1763.88,1725.05c0.02,2.78-2.88,4.81-7.03,7.64c-5.09,3.47-11.48,7.83-19.87,8.26
<div class="canvas"><p>Lumos</p></div>
<div class="wand">
<div class="circle"></div>
<svg
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
viewBox="0 0 1800 1800"
style="enable-background: new 0 0 1800 1800"
xml:space="preserve"
>
<path
class="st0"
d="M1763.88,1725.05c0.02,2.78-2.88,4.81-7.03,7.64c-5.09,3.47-11.48,7.83-19.87,8.26
c-4.72,0.24-9.29-0.8-25.38-10.09c-13.16-7.6-22.6-14.12-23.85-14.98c-3.76-2.61-7.18-4.98-10.3-7.17c-2.84-0.83-5.6-1.92-8.24-3.24
c-13.93-6.98-23.25-19.9-32.93-31.63c-8.42-10.19-21.44-18.52-31.47-27.15c-10.63-9.14-21.25-18.3-31.86-27.47
c-42.42-36.69-84.62-73.65-126.08-111.41c-6.64-6.04-13.26-12.11-19.85-18.19c-8.62-7.95-17.3-16.05-23.65-25.91
Expand All @@ -38,11 +42,10 @@
c26.03,22.82,54.03,43.21,80.63,65.33c18.42,15.32,34.82,32.65,50.88,50.36c2.15,0.95,3.75,1.8,4.69,2.32
c10.71,5.89,13.33,10.74,31.49,28.74c10.99,10.9,16.49,16.35,20.79,20.18c10.11,9,14.08,11.42,17.12,18.34
c2.71,6.17,1.52,8.7,5.51,15.6c3.34,5.77,5.37,6.06,8.56,12.23c3.58,6.94,1.79,8.1,4.89,12.84
C1757.4,1720.52,1763.85,1720.91,1763.88,1725.05z" />
</svg>
</div>
<div class="circle"></div>
C1757.4,1720.52,1763.85,1720.91,1763.88,1725.05z"
/>
</svg>
</div>
</div>
</body>

</html>
</body>
</html>
76 changes: 36 additions & 40 deletions hp-lumos/style.css
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I really appreciate the addition of the font; it complements the theme beautifully. I've observed that the smoothness of the circle could be enhanced. I'm currently exploring some options to refine this aspect. Once I validate it, I'll proceed with the merge. Sorry for the delay in evaluating your suggestion.

Original file line number Diff line number Diff line change
Expand Up @@ -24,62 +24,58 @@ body {

.circle {
position: absolute;
width: 25vmin;
height: 25vmin;
top: 30vmin;
left: 78vmin;
background-color: rgba(255, 255, 255, 0.484);
width: 100px;
height: 100px;
filter: blur(5), brightness(5);

background-color: rgba(255, 255, 255, 1);
opacity: 0.4;
border-radius: 50%;
box-shadow: 0 0 100px 0px #d8dbbfed, 0 0 100px 0 var(--white);
animation: blink 3s linear reverse infinite;
box-shadow: 0 0 100px 0px rgb(255, 220, 159), 0 0 100px 0 var(--white);
animation: blink 8s linear reverse infinite;
}

@keyframes blink {
0% {
opacity: 0.4;
scale: 0.5;
opacity: 0;
background-color: rgba(255, 255, 255, 0.8);
}
7% {
25% {
opacity: 0.5;
background-color: rgba(255, 255, 255, 0.5);
}
12% {
opacity: 0.6;
}
17% {
opacity: 0.85;
}
27% {
opacity: 0.5;
40%{
scale:1;
}
32% {
50% {
scale: 1.1;
opacity: 1;
background-color: rgba(255, 255, 255, 1);
}
35% {
opacity: 0.1;
}
42% {
opacity: 0.25;
}
47% {
opacity: 0.5;
}
62% {
75% {
opacity: 1;
background-color: rgba(255, 255, 255, 1);
}
72% {
opacity: 0.85;
}
82% {
opacity: 0.4;
}
92% {
opacity: 0.5;
}

100% {
opacity: 1;
opacity: 0;
background-color: rgba(255, 255, 255, 0.8);
}

}
@media (max-width: 1250px) {


}
@font-face {
font-family: harry;
src: url("./hp.TTF");
}

div > span {
opacity: 0.15;
.canvas{
font-family: harry;
opacity: 0.4;
margin-bottom: 50px;
padding-left: 25px;
}