Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
shivan2418 committed Oct 27, 2019
0 parents commit 06e46a2
Show file tree
Hide file tree
Showing 8 changed files with 2,206 additions and 0 deletions.
119 changes: 119 additions & 0 deletions css/design.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
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-header{
margin-bottom: 20px;
}
.page-header h2{
float: left;
font-size: 22px;
text-transform: uppercase;
font-weight: bold;
color: #555;
}

.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{
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{
margin: 0;
padding: 0;
border-bottom: none;
}

.pagination{
margin: 40px 0 0 0;
text-align: center;
}

.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;
}
56 changes: 56 additions & 0 deletions css/reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

.cf:after {
content: ".";
visibility: hidden;
display: block;
height: 0;
clear: both;
}
Loading

0 comments on commit 06e46a2

Please sign in to comment.