-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #453 from Princi123sharma/main
change the layout
- Loading branch information
Showing
3 changed files
with
81 additions
and
18 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,47 +1,106 @@ | ||
*{ | ||
margin: 0; | ||
padding: 0; | ||
font-size: 20px; | ||
} | ||
margin:0px; | ||
padding:0px; | ||
box-sizing: border-box; | ||
} | ||
html,body{ | ||
height:100%; | ||
width:100%; | ||
background-image: url(./gif.gif); | ||
background-size: cover; | ||
background-position: center; | ||
position: fixed; | ||
} | ||
|
||
|
||
|
||
|
||
.App { | ||
text-align: center; | ||
background-color: black; | ||
width: 256px; | ||
background-color:#010101af; | ||
width: 450px; | ||
height:630px; | ||
border: black 2px solid; | ||
margin-left: 39%; | ||
margin-top:8%; | ||
border-radius: 10%; | ||
position: relative; | ||
|
||
|
||
} | ||
|
||
.buttons{ | ||
display: grid; | ||
position: absolute; | ||
top:28%; | ||
left:15%; | ||
|
||
margin:20px; | ||
|
||
grid-template-columns: repeat(4,1fr); | ||
grid-auto-rows: minmax(60px, auto); | ||
} | ||
|
||
|
||
.buttons button{ | ||
background-color: skyblue; | ||
.btn{ | ||
background-color: palevioletred; | ||
color: white; | ||
margin: 2px; | ||
|
||
margin: 10px; | ||
border-radius: 3px; | ||
border: none; | ||
height:60px; | ||
width:60px; | ||
margin-left: 0px; | ||
font-size: 15px; | ||
font-family: monument; | ||
border-radius: 50px; | ||
cursor: pointer; | ||
} | ||
.btn:hover{ | ||
background: #efeeee; | ||
color: #010101; | ||
scale: 0.8; | ||
transition: all ease 0.5s; | ||
} | ||
|
||
|
||
.Clear{ | ||
grid-column: 1/span 2; | ||
|
||
|
||
} | ||
|
||
|
||
.Del{ | ||
grid-column: 3/span 2; | ||
} | ||
|
||
.highlight{ | ||
background-color: rgb(15, 80, 153) !important; | ||
background-color: rgb(246, 243, 243); | ||
color:rgb(14, 13, 13); | ||
font-size: 12px; | ||
|
||
} | ||
|
||
|
||
|
||
|
||
.display{ | ||
border: none; | ||
background-color: black; | ||
color: white; | ||
width: 250px; | ||
height: 50px; | ||
text-align: right; | ||
|
||
|
||
font-size: 40px; | ||
background-color: #fff; | ||
position: absolute; | ||
top:10%; | ||
color: rgb(16, 16, 17); | ||
width: 380px; | ||
height: 60px; | ||
text-align: center; | ||
|
||
|
||
left: 8%; | ||
border-radius: 50px; | ||
border: 1px solid black; | ||
font-family: gilroy; | ||
} | ||
|