-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
162 lines (133 loc) · 2.58 KB
/
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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
body {
font-family: 'DM Sans';
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 1rem;
}
header h1 {
margin: 0;
}
nav ul {
list-style: none;
padding: 0px;
}
/* Remove bottom margin from <h4> */
.no-margin-bottom {
margin-bottom: -40px;
}
.year-heading {
margin-top: -20px;
margin-bottom: -40px;
}
.year-heading2 {
margin-top: 20px;
margin-bottom: -40px;
}
ul.padded {
padding: 40px;
}
.navheader ul li {
display: inline;
margin-right: 1rem;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
section {
padding: 2rem 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 0 1rem;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1rem;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
.image {
width: 250px; /* Adjust the width as needed */
height: auto; /* Maintain aspect ratio */
margin-right: 10px; /* Add space between the image and text */
}
.imageresearch {
/*width: 700px; Adjust the width as needed */
height: auto; /* Maintain aspect ratio */
margin-left: auto;
margin-right: auto;
}
.column {
flex: 1; /* Equal width for both columns */
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.container2col {
max-width: 800px;
margin: 0 auto;
padding: 0 1rem;
display: flex; /* Use flexbox for layout */
align-items: center; /* Center vertically */
}
.container-image {
max-width: 800px;
margin: 0 auto;
padding: 0 1rem;
display: flex; /* Use flexbox for layout */
align-items: center; /* Center vertically */
}
/* Style for the image */
.image-image {
width: 350px; /* Adjust the width as needed */
height: auto; /* Maintain aspect ratio */
margin-left: auto;
margin-right: auto;
}
/* Style for the text container */
.text-container-image {
flex: 1; /* Allow the text container to grow and occupy remaining space */
}
/* Experience and Education Section Styles */
.experience-list ul,
.education-list ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.experience-list li,
.education-list li {
display: flex;
align-items: flex-start; /* Align items to the top */
margin-bottom: 15px;
gap: 10px; /* Space between logo and text */
}
.experience-logo,
.education-logo {
width: 50px;
height: auto;
flex-shrink: 0;
margin-right: 10px;
}
.experience-list span,
.education-list span {
display: block;
line-height: 1.4;
width: 100%; /* Ensure text takes the full width */
}