-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path7_Displaylist.css
More file actions
52 lines (45 loc) · 823 Bytes
/
7_Displaylist.css
File metadata and controls
52 lines (45 loc) · 823 Bytes
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
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
margin: 0;
padding: 20px;
}
.container {
max-width: 800px;
margin: auto;
padding: 20px;
background: #fff;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
}
.faculty-list {
list-style: none;
padding: 0;
}
.faculty-list > li {
margin-bottom: 20px;
background: #f9f9f9;
border: 1px solid #ddd;
border-radius: 5px;
padding: 15px;
}
.faculty-list h2 {
margin-top: 0;
color: #2c3e50;
font-size: 20px;
border-bottom: 2px solid #3498db;
padding-bottom: 5px;
}
.program-list {
list-style: disc;
margin-top: 10px;
padding-left: 20px;
}
.program-list li {
margin-bottom: 5px;
color: #555;
}