-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
99 lines (84 loc) · 1.89 KB
/
styles.css
File metadata and controls
99 lines (84 loc) · 1.89 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: 0;
padding: 0;
background-color: #f4f4f4;
min-height: 100%;
display: flex;
flex-direction: column;
font-size: 14px; /* Reduced font size for body text */
}
header {
background-color: #333;
color: white;
padding: 10px 0;
text-align: center;
}
header h1 {
font-size: 2em; /* Reduced size for the main header */
}
header p {
margin: 5px 0;
font-size: 14px; /* Reduced size for header links */
}
header p a {
color: white;
text-decoration: none;
margin: 0 10px;
}
header p a:hover {
text-decoration: underline;
}
section {
padding: 20px;
margin: 10px;
background-color: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
flex: 1;
}
h2 {
color: #333;
font-size: 1.4em; /* Reduced size for subheadings */
}
p {
font-size: 14px; /* Reduced font size for paragraphs */
line-height: 1.6;
margin-bottom: 10px;
}
ul {
list-style-type: disc;
padding-left: 20px;
font-size: 14px; /* Reduced font size for list items */
}
ul li {
margin: 8px 0;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px 0;
margin-top: auto;
}
/* Right align aggregate score and year of study */
.education-item {
display: flex;
justify-content: space-between;
align-items: center;
}
.education-item h3 {
margin-right: 20px;
font-size: 14px; /* Reduced font size for education headings */
}
.education-item p {
text-align: right;
margin: 0;
font-size: 14px; /* Reduced font size for education paragraphs */
}
/* Add styling for relevant coursework */
.relevant-coursework {
font-size: 14px; /* Reduced font size for coursework */
margin-top: 10px;
color: #555;
}