Skip to content

Commit

Permalink
Did some stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
owengregson committed Sep 5, 2024
1 parent 33f11c6 commit 2e0297b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
18 changes: 14 additions & 4 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,23 +1,33 @@
body {
font-family: "Inter", sans-serif;
padding: 0;
margin: 0;
background-color: white;
display: flex;
justify-content: center;
align-items: center;
height: 350px;
width: 300px;
height: 366px;
width: 316px;
border: 0px solid;
border-image: linear-gradient(#47e2f6, #069be5, #059fe9, #176ec4) 1;
animation: rotate 2s ease-in infinite;
box-sizing: border-box;
}

@keyframes rotate {
50% {
border-image: linear-gradient(#176ec4, #059fe9, #069be5, #47e2f6) 1;
}
}

.container {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
height: 100%;
max-height: 350px;
max-width: 300px;
max-height: 366px;
max-width: 316px;
padding: 20px;
box-sizing: border-box;
text-align: center;
Expand Down
2 changes: 1 addition & 1 deletion pages/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<title>Main Menu</title>
</head>
<body>
<div class="container">
<div class="container popup">
<div class="logo-container">
<img
src="../assets/images/icon_512x.png"
Expand Down

0 comments on commit 2e0297b

Please sign in to comment.