-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassignment1.css
More file actions
97 lines (90 loc) · 1.61 KB
/
assignment1.css
File metadata and controls
97 lines (90 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
body{
background-color: #f0f2f5;
display:flex;
justify-content: center;
padding: 40px;
}
table{
width:100%;
height:300px;
border-collapse: collapse;
}
th,td{
text-align: left;
padding:14px 16px;
font-size: 14px;
}
.studentimage{
border-radius: 50%;
height: 36px;
width: 36px;
object-fit: cover;
}
.profile{
display:flex;
align-items: center;
gap: 10px;
}
th{
color:white;
font-weight: 600;
font-size: 12px;
letter-spacing: 0.5px;
}
tbody tr{
border-bottom: 1px solid #eee;
}
tbody tr:hover{
background-color: #f9fbff;
}
tr:nth-child(even){
background-color: #f9f9f9;
}
.status{
padding: 6px 12px;
border-radius:20px;
font-size:12px;
font-weight:bold;
}
.passed{
background-color: #d4edda;
color: #155724;
}
.failed{
background-color: #f8d7da;
color: #721c24;
}
.pending{
background-color: #fff3cd;
color:#856404
}
thead th:first-child{
border-top-left-radius: 15px;
}
thead th:last-child{
border-top-right-radius: 15px;
}
thead{
background-color: rgb(47,64,80);
}
.container{
background-color: white;
border-radius: 15px;
padding: 20px;
width: 100%;
max-width: 1000px;
box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
button{
padding:6px 16px;
margin:1px;
border-radius: 6px;
cursor: pointer;
border:none;
}
.fa-trash{
color: red;
}
.fa-pen{
color: blue;
}