-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into autocompletion
- Loading branch information
Showing
17 changed files
with
6,817 additions
and
270 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,125 @@ | ||
|
||
|
||
/*Calculator CSS*/ | ||
|
||
|
||
.modal-content | ||
{ | ||
width: fit-content; | ||
max-height: 300px; | ||
|
||
} | ||
#calculator { | ||
width: 325px; | ||
height: auto; | ||
padding: 20px 20px 9px; | ||
background: #9dd2ea; | ||
background: linear-gradient(#9dd2ea, #8bceec); | ||
border-radius: 3px; | ||
box-shadow: 0px 4px #009de4, 0px 10px 15px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
.top span.clear { | ||
float: left; | ||
} | ||
|
||
.top .screen { | ||
height: 40px; | ||
width: 212px; | ||
|
||
float: right; | ||
|
||
padding: 0 10px; | ||
|
||
background: rgba(0, 0, 0, 0.2); | ||
border-radius: 3px; | ||
box-shadow: inset 0px 4px rgba(0, 0, 0, 0.2); | ||
|
||
font-size: 17px; | ||
line-height: 40px; | ||
color: white; | ||
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); | ||
text-align: right; | ||
letter-spacing: 1px; | ||
} | ||
|
||
.keys, .top {overflow: hidden;} | ||
|
||
.keys span, .top span.clear { | ||
float: left; | ||
position: relative; | ||
top: 0; | ||
|
||
cursor: pointer; | ||
|
||
width: 66px; | ||
height: 36px; | ||
|
||
background: white; | ||
border-radius: 3px; | ||
box-shadow: 0px 4px rgba(0, 0, 0, 0.2); | ||
|
||
margin: 0 5px 11px 0; | ||
|
||
color: #888; | ||
line-height: 36px; | ||
text-align: center; | ||
|
||
user-select: none; | ||
|
||
transition: all 0.2s ease; | ||
|
||
} | ||
.keys span.eval{ | ||
width : 280px; | ||
} | ||
.keys span.operator { | ||
background: rgba(255, 216, 221, 1); | ||
} | ||
|
||
.keys span.eval { | ||
background: #f1ff92; | ||
box-shadow: 0px 4px #9da853; | ||
color: #888e5f; | ||
} | ||
|
||
.top span.clear { | ||
background: #ff9fa8; | ||
box-shadow: 0px 4px #ff7c87; | ||
color: white; | ||
} | ||
|
||
/* Some hover effects */ | ||
.keys span:hover { | ||
background: #9c89f6; | ||
box-shadow: 0px 4px #6b54d3; | ||
color: white; | ||
} | ||
|
||
.keys span.eval:hover { | ||
background: #abb850; | ||
box-shadow: 0px 4px #717a33; | ||
color: #ffffff; | ||
} | ||
|
||
.top span.clear:hover { | ||
background: #f68991; | ||
box-shadow: 0px 4px #d3545d; | ||
color: white; | ||
} | ||
|
||
.keys span:active { | ||
box-shadow: 0px 0px #6b54d3; | ||
top: 4px; | ||
} | ||
|
||
.keys span.eval:active { | ||
box-shadow: 0px 0px #717a33; | ||
top: 4px; | ||
} | ||
|
||
.top span.clear:active { | ||
top: 4px; | ||
box-shadow: 0px 0px #d3545d; | ||
} | ||
|
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,38 @@ | ||
/*Stopwatch Css*/ | ||
|
||
@mixin transition { | ||
-webkit-transition: all 0.5s ease-in-out; | ||
-moz-transition: all 0.5s ease-in-out; | ||
transition: all 0.5s ease-in-out; | ||
} | ||
@mixin corners ($radius) { | ||
-moz-border-radius: $radius; | ||
-webkit-border-radius: $radius; | ||
border-radius: $radius; | ||
-khtml-border-radius: $radius; | ||
} | ||
#seconds, #tens{ | ||
font-size:2em; | ||
} | ||
|
||
.stopW_btn | ||
{ | ||
|
||
width: 66px; | ||
height: 36px; | ||
border-radius: 3px; | ||
background: #ff9fa8; | ||
color: white; | ||
margin: 0 5px 11px 0; | ||
box-shadow: 0px 0px #d3545d; | ||
line-height: 36px; | ||
text-align: center; | ||
user-select: none; | ||
transition: all 0.2s ease; | ||
} | ||
|
||
.stopW_btn:hover { | ||
background: #ff707d; | ||
box-shadow: 0px 4px #e4d6d8; | ||
color: #ffffff; | ||
} |
Oops, something went wrong.