-
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
fababb3
commit 6e76204
Showing
3 changed files
with
115 additions
and
2 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
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,67 @@ | ||
body { | ||
background-color: #272822; | ||
color: white; | ||
font-family: Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace; | ||
} | ||
|
||
.button { | ||
width: 60px; | ||
height: 60px; | ||
text-decoration: none; | ||
border: 1px solid black; | ||
font-size: 18px; | ||
font-family: Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace; | ||
} | ||
|
||
.button:focus { | ||
outline: 0; | ||
} | ||
|
||
|
||
|
||
|
||
.operands .button { | ||
background-color: #e0e0e0; | ||
color: black; | ||
} | ||
|
||
.operands .button:hover { | ||
background-color: #ccc; | ||
} | ||
|
||
.operands .button:focus { | ||
outline: 0; | ||
} | ||
|
||
.operands .button:disabled { | ||
background-color: #ccc; | ||
} | ||
|
||
|
||
|
||
|
||
|
||
.operators .button { | ||
background-color: #f5923e; | ||
color: white; | ||
font-size: 24px; | ||
} | ||
|
||
.operators .button:hover { | ||
background-color: #c2732f; | ||
} | ||
|
||
|
||
|
||
|
||
|
||
.equals { | ||
color: white; | ||
background-color: #7b9a38; | ||
width: 300px; | ||
font-size: 32px; | ||
} | ||
|
||
.equals:hover { | ||
background-color: #688035; | ||
} |