Skip to content
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
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

<div class="ui__texts">
<h1 class="text text--title">
<span>Let's</span>
<span>Solve!</span>
<span>Let's</span>
<span>Solve!</span>
</h1>
<div class="text text--note">
Double tap to start
Expand Down
16 changes: 15 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,10 @@ body {
bottom: 75%;
font-size: 4.4em;
height: 1.2em;
animation: mymove 4s infinite;
}
@keyframes mymove {
50% {text-shadow: 1px 10px 0px burlywood;}
}
.text--title span {
display: block;
Expand All @@ -241,6 +245,10 @@ body {
bottom: 78%;
font-size: 3.5em;
line-height: 1;
animation: mymoves 4s infinite;
}
@keyframes mymoves {
50% {color: burlywood;}
}
.text--complete, .text--best-time {
font-size: 1.5em;
Expand All @@ -260,6 +268,12 @@ body {
font-size: 1.2em;
color: rgba(0, 0, 0, 0.25);
opacity: 0;
transition: 0.4s ease;
}
.btn:hover{
cursor:pointer;
color:black;
font-size:1.5em;
}
.btn:after {
position: absolute;
Expand Down Expand Up @@ -342,4 +356,4 @@ body {
}
.ui__buttons {
z-index: 5;
}
}