Skip to content

Commit

Permalink
aaa
Browse files Browse the repository at this point in the history
  • Loading branch information
FutureShock314 committed Sep 22, 2023
1 parent 342bffa commit 4e70f6b
Show file tree
Hide file tree
Showing 3 changed files with 213 additions and 0 deletions.
106 changes: 106 additions & 0 deletions .history/magic/style_20230922122918.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
html {
width: 100%;
height: 100%;
margin: 0;
}

body {
background: linear-gradient(60deg, darkolivegreen, darkseagreen);
color: white;
font-family: "Fredoka";
width: 100%;
margin: 0;
overflow: hidden;
padding: 0;
}

canvas {
width: 100vw;
height: 100vh;
position: absolute;
z-index: -10;
isolation: isoltate;
}

h1 {
margin: auto;
margin-top: 20px;
width: fit-content;
font-size: 50px;
}
ol, li {
margin: auto;
width: fit-content;
font-size: 24px;
}

.icon-row {
display: flex;
}

.icon {
display: grid;
place-content: center;
text-align: center;
margin: 10px;
}

.block {
display: block;
width: 200px;
margin: auto;
margin-top: 20px;
border: none;
background-color: seagreen;
padding: 14px 28px;
font-size: 24px;
cursor: pointer;
text-align: center;
transition: width 0.5s ease-in-out, background-color 0.5s ease-in-out,
font-size 0.5s ease-in-out;
color: white;
border-radius: 10px;
font-family: "Fredoka";
}

.block:hover {
width: 300px;
background-color: mediumseagreen;
font-size: 28px;
}

.block-small {
display: block;
width: 192px;
margin: auto;
border: none;
background-color: seagreen;
padding: 14px 28px;
font-size: 24px;
cursor: pointer;
text-align: center;
transition: width 0.5s ease-in-out, background-color 0.5s ease-in-out,
font-size 0.5s ease-in-out;
color: white;
border-radius: 10px;
font-family: "Fredoka";
}

.block-small:hover {
width: 256px;
background-color: mediumseagreen;
}


#icon-rows {
margin: 5%;
}

#reveal-modal {
margin: auto;
display: block;
}

#answer {
margin: auto;
}
106 changes: 106 additions & 0 deletions .history/magic/style_20230922122920.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
html {
width: 100%;
height: 100%;
margin: 0;
}

body {
background: linear-gradient(60deg, darkolivegreen, darkseagreen);
color: white;
font-family: "Fredoka";
width: 100%;
margin: 0;
overflow: hidden;
padding: 0;
}

canvas {
width: 100vw;
height: 100vh;
position: absolute;
z-index: -10;
isolation: isolate;
}

h1 {
margin: auto;
margin-top: 20px;
width: fit-content;
font-size: 50px;
}
ol, li {
margin: auto;
width: fit-content;
font-size: 24px;
}

.icon-row {
display: flex;
}

.icon {
display: grid;
place-content: center;
text-align: center;
margin: 10px;
}

.block {
display: block;
width: 200px;
margin: auto;
margin-top: 20px;
border: none;
background-color: seagreen;
padding: 14px 28px;
font-size: 24px;
cursor: pointer;
text-align: center;
transition: width 0.5s ease-in-out, background-color 0.5s ease-in-out,
font-size 0.5s ease-in-out;
color: white;
border-radius: 10px;
font-family: "Fredoka";
}

.block:hover {
width: 300px;
background-color: mediumseagreen;
font-size: 28px;
}

.block-small {
display: block;
width: 192px;
margin: auto;
border: none;
background-color: seagreen;
padding: 14px 28px;
font-size: 24px;
cursor: pointer;
text-align: center;
transition: width 0.5s ease-in-out, background-color 0.5s ease-in-out,
font-size 0.5s ease-in-out;
color: white;
border-radius: 10px;
font-family: "Fredoka";
}

.block-small:hover {
width: 256px;
background-color: mediumseagreen;
}


#icon-rows {
margin: 5%;
}

#reveal-modal {
margin: auto;
display: block;
}

#answer {
margin: auto;
}
1 change: 1 addition & 0 deletions magic/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ canvas {
height: 100vh;
position: absolute;
z-index: -10;
isolation: isolate;
}

h1 {
Expand Down

0 comments on commit 4e70f6b

Please sign in to comment.