Skip to content

Commit

Permalink
Updated to Dark Modee
Browse files Browse the repository at this point in the history
Changed color value to turn it into Dark Mode.
  • Loading branch information
rajanitnavapara authored Oct 20, 2021
1 parent f682234 commit 11d4ec2
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions event-keycodes/style.css → event-keycodes/dark-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

* {
box-sizing: border-box;

}

body {
background-color: #e1e1e1;
background-color: #383838;
font-family: 'Muli', sans-serif;
display: flex;
align-items: center;
Expand All @@ -17,8 +18,8 @@ body {
}

.key {
border: 1px solid #999;
background-color: #eee;
border: 1px solid #999999;
background-color: #2B2B2B;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
display: inline-flex;
align-items: center;
Expand All @@ -28,6 +29,7 @@ body {
flex-direction: column;
margin: 10px;
min-width: 150px;
color: white;
position: relative;
}

Expand All @@ -37,12 +39,6 @@ body {
left: 0;
text-align: center;
width: 100%;
color: #555;
color: #c4c4c4;
font-size: 14px;
}

@media(max-width:768px){
.key{
margin: 10px 0px;
}
}

0 comments on commit 11d4ec2

Please sign in to comment.