-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
54 lines (45 loc) · 881 Bytes
/
styles.css
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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f9fafb;
}
header {
padding: 1rem;
text-align: center;
}
h1 {
color: #000;
font-size: 2.5rem;
}
#student-list {
list-style-type: none;
padding: 0;
}
.student {
background-color: #ffffff;
margin-bottom: 1rem;
padding: 1rem 1.5rem 1.5rem 1.5rem;
border-radius: 20px;
box-shadow: 0px 44px 84px 0px rgba(0, 0, 0, 0.05);
}
.student h2 {
color: #000;
margin: 0;
}
.student p {
margin: 0;
}
/* ADD YOUR OWN CUSTOM CSS FOR YOUR CARD HERE */
/* ASK CURSOR HOW TO WRITE THE STYLES ETC. */
footer {
text-align: center;
margin-top: 2rem;
font-size: 0.9rem;
color: #7f8c8d;
}
/* Add your custom styles below this line */