-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharray.css
More file actions
85 lines (72 loc) · 1.33 KB
/
Copy patharray.css
File metadata and controls
85 lines (72 loc) · 1.33 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
/* body {
font-family: Arial, sans-serif;
background: #f5f5f5;
padding: 20px;
} */
* {
border: none;
padding: 0px;
margin: 0px;
}
body {
font-family: "Montserrat", sans-serif;
background-color: burlywood;
}
h1 {
text-align: center;
color: #333;
}
.stats {
background-color: khaki;
padding: 20px;
margin: 20px 0;
margin-bottom: 30px;
border-radius: 12px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.stats p {
font-size: 18px;
margin: 10px 0;
}
.student-card-container {
display: grid;
grid-template-columns: auto auto;
background-color: gold;
padding: 20px;
margin: 20px 0;
border-radius: 12px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.student-card {
border: hidden;
border-radius: 12px;
padding: 20px;
margin: 15px 10px;
background-color: chocolate;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.student-card h3 {
color: #212529;
font-weight: 900;
padding-bottom: 8px;
}
.pass-card {
background-color: chocolate;
border-color: #fafafa;
}
.fail-card {
background-color: brown;
border-color: #fafafa;
text-decoration: dotted;
color: lightpink;
}
.pass {
text-align: right;
color: green;
font-weight: 800;
}
.fail {
text-align: right;
color: red;
font-weight: 800;
}