Skip to content

Commit

Permalink
Code completed.
Browse files Browse the repository at this point in the history
  • Loading branch information
shivan2418 committed Oct 28, 2019
1 parent cd5e53a commit f0c0e7c
Show file tree
Hide file tree
Showing 4 changed files with 757 additions and 700 deletions.
16 changes: 16 additions & 0 deletions .vscode/launch.json
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"
}
]
}
205 changes: 107 additions & 98 deletions css/design.css
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;
}
Loading

0 comments on commit f0c0e7c

Please sign in to comment.