-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
48 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Update DOM with Settings Form</title> | ||
<link rel="stylesheet" href="../dist/css/index.min.css" type="text/css" /> | ||
<style> | ||
body { | ||
background-color: orangered; | ||
} | ||
.circle { | ||
border-radius: 50%; | ||
width: 200px; | ||
aspect-ratio: 1; | ||
border: 3px solid rgb(255, 252, 252); | ||
} | ||
.conic { | ||
background-image: conic-gradient( | ||
transparent 0px, transparent 40px, | ||
green 40px, green 100px, | ||
transparent 0 | ||
); | ||
background-size: cover; | ||
} | ||
.radial { | ||
background-image: radial-gradient( | ||
transparent 0%, transparent 23%, | ||
green 23%, green 41%, | ||
yellow 41%, yellow 75%, | ||
rgb(50, 31, 188) 75%, rgb(50, 31, 188) 100% | ||
); | ||
background-size: cover; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="circle radial"></div> | ||
</body> | ||
</html> | ||
|
||
|