This repository has been archived by the owner on May 7, 2022. It is now read-only.
-
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
app6460
committed
Feb 27, 2022
1 parent
da8c909
commit ddf05c3
Showing
3 changed files
with
50 additions
and
11 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 |
---|---|---|
@@ -1,45 +1,81 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
font-family: 'Bebas Neue', cursive; | ||
letter-spacing: 2px; | ||
} | ||
|
||
body { | ||
background: rgb(241, 241, 241); | ||
} | ||
|
||
.header { | ||
width: 100%; | ||
height: 80px; | ||
display: flex; | ||
align-items: center; | ||
box-shadow: 0px 3px 10px 10px rgba(0, 0, 0, 0.24); | ||
background: rgb(68, 54, 197); | ||
background: rgb(96, 80, 238); | ||
} | ||
|
||
.header > span { | ||
margin-left: 10px; | ||
-webkit-user-select: none; | ||
-khtml-user-select: none; | ||
-moz-user-select: none; | ||
user-select: none; | ||
font-size: 25px; | ||
margin-left: 10px; | ||
-webkit-user-select: none; | ||
-khtml-user-select: none; | ||
-moz-user-select: none; | ||
user-select: none; | ||
} | ||
|
||
.logo { | ||
width: 60px; | ||
height: 60px; | ||
} | ||
|
||
.logo > img { | ||
width: 100%; | ||
} | ||
|
||
.logo > img:hover { | ||
cursor: pointer; | ||
} | ||
|
||
.board { | ||
display: flex; | ||
align-items: center; | ||
width: 100%; | ||
height: 60vh; | ||
} | ||
|
||
.screen { | ||
width: 80%; | ||
height: 80%; | ||
margin-left: auto; | ||
margin-right: auto; | ||
background: black; | ||
} | ||
margin: 0 auto; | ||
display: flex; | ||
justify-content: center; | ||
background: linear-gradient(0deg, rgb(193, 225, 253) 21%, rgb(199, 201, 253) 100%); | ||
box-shadow: 0 0 0 5px black inset; | ||
border-radius: 15px; | ||
} | ||
|
||
.input { | ||
height: 100px; | ||
text-align: center; | ||
} | ||
|
||
.input > input { | ||
text-align: center; | ||
width: 100px; | ||
height: 100%; | ||
font-size: 80px; | ||
outline: none; | ||
border: black solid; | ||
border-width: 0px; | ||
box-shadow: 5px 5px 10px 2px rgba(131, 131, 131, 0.315); | ||
border-radius: 10px; | ||
transition: border-width 500ms ease-out; | ||
} | ||
|
||
.input > input:focus { | ||
border-width: 3px black; | ||
} |