-
Notifications
You must be signed in to change notification settings - Fork 2
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 #24 from lawrencexli/client_app
Updated Client app v1
- Loading branch information
Showing
3 changed files
with
184 additions
and
100 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 |
---|---|---|
@@ -1,22 +1,69 @@ | ||
.img_io { | ||
width: 30%; | ||
float: left; | ||
height: 100px; | ||
* { | ||
font-family: Arial; | ||
} | ||
|
||
.img_view { | ||
width: 20%; | ||
float: left; | ||
height: 100px; | ||
body { | ||
background-image: linear-gradient(orange, #DA5552); | ||
} | ||
|
||
.img_func { | ||
width: 30%; | ||
float: left; | ||
height: 100px; | ||
.row { | ||
display: flex; | ||
padding: 25px; | ||
column-gap: 10%; | ||
} | ||
|
||
.column { | ||
flex: 50%; | ||
float: center; | ||
width: 45%; | ||
} | ||
|
||
img { | ||
border: 2px solid #555; | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
width: 90%; | ||
} | ||
|
||
img[src=""] { | ||
display: none; | ||
} | ||
|
||
.img_func_box { | ||
background-color: gainsboro; | ||
border-radius: 25px; | ||
background-color: aqua; | ||
padding: 25px; | ||
float: center; | ||
justify-content: center; | ||
text-align: center; | ||
box-shadow: 10px 10px; | ||
object-fit: contain; | ||
} | ||
|
||
button { | ||
outline: 0; | ||
color: #fff; | ||
background-color: #0d6efd; | ||
border-color: #0d6efd; | ||
display: inline-block; | ||
font-weight: 400; | ||
line-height: 1.5; | ||
text-align: center; | ||
border: 1px solid transparent; | ||
padding: 6px 12px; | ||
font-size: 16px; | ||
border-radius: .25rem; | ||
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out; | ||
} | ||
|
||
button:hover { | ||
color: #fff; | ||
background-color: #0b5ed7; | ||
border-color: #0a58ca; | ||
} | ||
|
||
.func_title { | ||
font-family: Arial, Helvetica, sans-serif; | ||
float: center; | ||
} |