-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
99 lines (81 loc) · 1.49 KB
/
Copy pathstyles.css
File metadata and controls
99 lines (81 loc) · 1.49 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
98
99
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h1, h2, h3 {
color: #003366;
}
p {
margin-bottom: 20px;
}
/* Flex container for side-by-side layout */
.container {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.courses, .grade-mapping {
flex: 1 1 300px;
}
/* Table styling */
table {
border-collapse: collapse;
margin-bottom: 20px;
width: 100%;
}
th, td {
border: 1px solid #ccc;
padding: 8px;
text-align: left;
}
th {
background: #f0f0f0;
}
/* Dropdown styling */
select {
width: 100%;
max-width: 100px;
}
/* Button and result styling */
.btn {
background: #003366;
color: #fff;
border: none;
padding: 8px 16px;
cursor: pointer;
font-size: 14px;
margin-top: 5px;
}
.btn:hover {
background: #002244;
}
.result {
font-weight: bold;
margin: 10px 0;
}
/* Header rows for grouping */
.year-header {
background-color: #e6f7ff;
font-weight: bold;
text-align: center;
}
.semester-header {
background-color: #f2f2f2;
font-style: italic;
text-align: center;
}
/* Course row styling by year */
.course.year-1 {
background-color: #ffffff;
}
.course.year-2 {
background-color: #f9f9f9;
}
/* Make the grade mapping table small */
.grade-mapping table {
font-size: 12px;
width: auto;
}
.grade-mapping th, .grade-mapping td {
padding: 4px 6px;
}