-
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
Showing
2 changed files
with
39 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,49 @@ | ||
.create-form-div, .update-form-div { | ||
background-color: rgb(241, 237, 237); | ||
box-shadow: 1px 0px 40px 0px rgba(78, 108, 246, 0.99); | ||
min-width: 700px; | ||
.create-form-div, | ||
.update-form-div { | ||
background-color: rgb(241, 237, 237); | ||
box-shadow: 1px 0px 40px 0px rgba(78, 108, 246, 0.99); | ||
min-width: 700px; | ||
} | ||
|
||
.create-form-div input, .update-form-div input{ | ||
height: 20px; | ||
border-radius: 3px; | ||
border: 0.5px solid rgb(180, 179, 179); | ||
padding: 5px; | ||
font-size: 1em; | ||
.create-form-div input, | ||
.update-form-div input { | ||
height: 20px; | ||
border-radius: 3px; | ||
border: 0.5px solid rgb(180, 179, 179); | ||
padding: 5px; | ||
font-size: 1em; | ||
} | ||
|
||
.item-map { | ||
border: 1px solid rgb(180, 179, 179); | ||
border-radius: 3px; | ||
border: 1px solid rgb(180, 179, 179); | ||
border-radius: 3px; | ||
height: 500px; | ||
} | ||
|
||
.create-btn, .update-btn { | ||
width: 30%; | ||
margin: 10px auto; | ||
padding: 5px; | ||
border: 1px solid black; | ||
border-radius: 3px; | ||
font-size: 1.25em; | ||
background-color: aquamarine; | ||
.create-btn, | ||
.update-btn { | ||
width: 30%; | ||
margin: 10px auto; | ||
padding: 5px; | ||
border: 1px solid black; | ||
border-radius: 3px; | ||
font-size: 1.25em; | ||
background-color: aquamarine; | ||
} | ||
|
||
.create-btn:hover, .update-btn:hover { | ||
background-color: rgb(82, 199, 160); | ||
cursor: pointer; | ||
.create-btn:hover, | ||
.update-btn:hover { | ||
background-color: rgb(82, 199, 160); | ||
cursor: pointer; | ||
} | ||
|
||
.selection { | ||
height: 25px; | ||
width: 310px; | ||
margin: 0; | ||
font-size: 1em; | ||
height: 25px; | ||
width: 310px; | ||
margin: 0; | ||
font-size: 1em; | ||
} | ||
|
||
.hidden { | ||
display: none; | ||
display: none; | ||
} | ||
|
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