-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
5057ff7
commit 4123799
Showing
1 changed file
with
85 additions
and
0 deletions.
There are no files selected for viewing
85 changes: 85 additions & 0 deletions
85
...ects/Web Development/JavaScript Projects/Others/27). Selection Sort Visualizer/select.css
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,85 @@ | ||
body { | ||
background-color:papayawhip; | ||
} | ||
*{ | ||
font-size: 16px; | ||
font-weight: bold !important; | ||
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; | ||
} | ||
.head { | ||
margin-top: 20px; | ||
margin-right: 20vw; | ||
margin-left: 20vw; | ||
text-align: center; | ||
font-size: 30px; | ||
background-color:greenyellow; | ||
color: white; | ||
border-radius: 19px; | ||
font-weight: bolder; | ||
} | ||
.container { | ||
display: flex; | ||
flex-direction: row; | ||
margin: 2rem 5rem; | ||
} | ||
.input-field { | ||
width: 180px; | ||
height: 40px; | ||
border: 1px solid black; | ||
border-radius: 5px; | ||
outline: none; | ||
text-align: center; | ||
} | ||
.button-blue, | ||
.button-green { | ||
width: 100px; | ||
text-align: center; | ||
margin-left: 10px; | ||
border: 1px solid black; | ||
border-radius: 5px; | ||
height: 40px; | ||
color: white; | ||
} | ||
.button-green { | ||
background-color: #4cd430; | ||
} | ||
.button-blue { | ||
background-color: #3478d5; | ||
} | ||
#input-visualizer { | ||
margin: 0 5rem; | ||
margin-top: 2rem; | ||
display: flex; | ||
text-align: center; | ||
} | ||
#input-visualizer div { | ||
margin-right: 10px; | ||
background-color: #e6852c; | ||
border: 1px solid black; | ||
border-radius: 5px; | ||
padding: 10px; | ||
width: 50px; | ||
color: white; | ||
} | ||
|
||
#output-visualizer { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
#output-visualizer div { | ||
margin: 0 5rem; | ||
margin-top: 2rem; | ||
display: flex; | ||
text-align: center; | ||
} | ||
|
||
#output-visualizer div span { | ||
margin-right: 10px; | ||
background-color: #3478d5; | ||
border: 1px solid black; | ||
border-radius: 5px; | ||
padding: 10px; | ||
width: 50px; | ||
color: white; | ||
} |