-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
356a000
commit 57b7cbf
Showing
5 changed files
with
399 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
html { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
body { | ||
background: linear-gradient(60deg, darkolivegreen, darkseagreen); | ||
color: white; | ||
font-family: "Fredoka"; | ||
} | ||
|
||
canva { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
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; | ||
} |
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,98 @@ | ||
html { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
body { | ||
background: linear-gradient(60deg, darkolivegreen, darkseagreen); | ||
color: white; | ||
font-family: "Fredoka"; | ||
} | ||
|
||
canvas { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
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; | ||
} |
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,98 @@ | ||
html { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
body { | ||
background: linear-gradient(60deg, darkolivegreen, darkseagreen); | ||
color: white; | ||
font-family: "Fredoka"; | ||
} | ||
|
||
canvas { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
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; | ||
} |
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,101 @@ | ||
html { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
body { | ||
background: linear-gradient(60deg, darkolivegreen, darkseagreen); | ||
color: white; | ||
font-family: "Fredoka"; | ||
width: 100%; | ||
margin: 0; | ||
overflow: hidden; | ||
} | ||
|
||
canvas { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
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; | ||
} |
Oops, something went wrong.