-
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
1 parent
cd5e53a
commit f0c0e7c
Showing
4 changed files
with
757 additions
and
700 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
|
||
|
||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "Launch Program", | ||
"program": "${workspaceFolder}/js/script.js" | ||
} | ||
] | ||
} |
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,119 +1,128 @@ | ||
body{ | ||
background-color: #e1f1f6; | ||
font-family: Helvetica, sans-serif; | ||
color: #222; | ||
body { | ||
background-color: #e1f1f6; | ||
font-family: Helvetica, sans-serif; | ||
color: #222; | ||
} | ||
|
||
.page{ | ||
margin: 50px auto; | ||
width: 70%; | ||
background-color: #fff; | ||
border-radius: 5px; | ||
padding: 50px; | ||
.page { | ||
margin: 50px auto; | ||
width: 70%; | ||
background-color: #fff; | ||
border-radius: 5px; | ||
padding: 50px; | ||
} | ||
|
||
.page-header{ | ||
margin-bottom: 20px; | ||
.page-header { | ||
margin-bottom: 20px; | ||
} | ||
.page-header h2{ | ||
|
||
.page-header h2 { | ||
float: left; | ||
font-size: 22px; | ||
text-transform: uppercase; | ||
font-weight: bold; | ||
color: #555; | ||
} | ||
} | ||
|
||
.page-header .student-search{ | ||
.page-header .student-search { | ||
float: right; | ||
} | ||
|
||
.page-header .student-search input{ | ||
border-radius: 5px; | ||
border: 1px solid #eaeaea; | ||
padding: 8px 15px; | ||
font-size: 14px; | ||
} | ||
|
||
.page-header .student-search button{ | ||
border-radius: 5px; | ||
border: 1px solid #eaeaea; | ||
padding: 8px 15px; | ||
font-size: 14px; | ||
background-color: #4ba6c3; | ||
color: #fff | ||
} | ||
|
||
.student-list{} | ||
|
||
.student-item{ | ||
} | ||
|
||
.page-header .student-search input { | ||
border-radius: 5px; | ||
border: 1px solid #eaeaea; | ||
padding: 8px 15px; | ||
font-size: 14px; | ||
} | ||
|
||
.page-header .student-search button { | ||
border-radius: 5px; | ||
border: 1px solid #eaeaea; | ||
padding: 8px 15px; | ||
font-size: 14px; | ||
background-color: #4ba6c3; | ||
color: #fff | ||
} | ||
|
||
.student-list {} | ||
|
||
.student-item { | ||
margin: 0 0 20px 0; | ||
padding: 0 0 20px 0; | ||
border-bottom: 1px solid #eaeaea; | ||
} | ||
|
||
.student-details{ | ||
width: 50%; | ||
float: left; | ||
} | ||
|
||
.student-details .avatar{ | ||
width: 40px; | ||
height: auto; | ||
border-radius: 20px; | ||
float: left; | ||
margin-right: 14px | ||
} | ||
|
||
.student-details h3{ | ||
margin: 4px 0 2px 0; | ||
font-weight: bold; | ||
color: #4ba6c3; | ||
} | ||
|
||
.student-details .email{ | ||
color: #888; | ||
font-size: 14px; | ||
} | ||
|
||
|
||
.joined-details{ | ||
width: 50%; | ||
float: left; | ||
text-align: right; | ||
} | ||
|
||
.joined-details .date{ | ||
margin-top: 15px; | ||
display: block; | ||
font-size: 14px; | ||
color: #999; | ||
} | ||
|
||
.student-item:last-child{ | ||
} | ||
|
||
.student-details { | ||
width: 50%; | ||
float: left; | ||
} | ||
|
||
.student-details .avatar { | ||
width: 40px; | ||
height: auto; | ||
border-radius: 20px; | ||
float: left; | ||
margin-right: 14px | ||
} | ||
|
||
.student-details h3 { | ||
margin: 4px 0 2px 0; | ||
font-weight: bold; | ||
color: #4ba6c3; | ||
} | ||
|
||
.student-details .email { | ||
color: #888; | ||
font-size: 14px; | ||
} | ||
|
||
.joined-details { | ||
width: 50%; | ||
float: left; | ||
text-align: right; | ||
} | ||
|
||
.joined-details .date { | ||
margin-top: 15px; | ||
display: block; | ||
font-size: 14px; | ||
color: #999; | ||
} | ||
|
||
.student-item:last-child { | ||
margin: 0; | ||
padding: 0; | ||
border-bottom: none; | ||
} | ||
} | ||
|
||
.pagination{ | ||
margin: 40px 0 0 0; | ||
text-align: center; | ||
.pagination { | ||
margin: 40px 0 0 0; | ||
text-align: center; | ||
} | ||
.pagination li{ | ||
|
||
.pagination li { | ||
display: inline; | ||
} | ||
|
||
.pagination li a{ | ||
border: 1px solid #eaeaea; | ||
border-radius: 5px; | ||
padding: 3px 8px; | ||
text-decoration: none; | ||
color: #4ba6c3; | ||
} | ||
|
||
.pagination li a.active, | ||
.pagination li a:hover{ | ||
background-color: #4ba6c3; | ||
color: #fff; | ||
} | ||
} | ||
|
||
.pagination li a { | ||
border: 1px solid #eaeaea; | ||
border-radius: 5px; | ||
padding: 3px 8px; | ||
text-decoration: none; | ||
color: #4ba6c3; | ||
} | ||
|
||
.pagination li a.active, | ||
.pagination li a:hover { | ||
background-color: #4ba6c3; | ||
color: #fff; | ||
} | ||
|
||
.nav_btn { | ||
padding: 10px; | ||
margin: 1px; | ||
} | ||
|
||
.active { | ||
border-color: cyan; | ||
} |
Oops, something went wrong.