-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyles.css
More file actions
143 lines (125 loc) · 2.17 KB
/
Styles.css
File metadata and controls
143 lines (125 loc) · 2.17 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
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
/* div element ------------- */
.div_element {
border: 0;
padding: 0;
}
/* index ------------------ */
.img_index {
display: flex;
justify-content: center; /* Center the images horizontally */
}
.img_index img {
max-width: 100%;
height: auto;
width: 40px;
margin: 0 10px; /* Add some spacing between the images */
}
/* resume ------------------ */
.img_rsm {
height: auto;
width:50px;
padding: 2px 0px;
}
.table_rsm {
margin-left: 0;
margin-right: 0;
width: 100%;
border: none;
}
td:nth-child(1), th:nth-child(1) {
text-align: center;
padding: 2px 0px;
}
td:nth-child(2), th:nth-child(2) {
text-align: left;
padding: 2px 0px;
}
/* research ------------------ */
.img_res {
height: auto;
width:110px;
padding: 4px 5px;
}
.table_res {
margin-left: 0;
margin-right: 0;
width: 100%;
border: none;
}
th, td {
height:auto;
}
td:nth-child(1) {
width: 130px;
}
td:nth-child(2), th:nth-child(2) {
text-align: left;
}
/* awards ------------------ */
.img_awrds {
height: 55px;
width:auto;
padding: 0px 20px;
text-align: center;
}
.table_logo {
display: flex;
margin-left: 0;
margin-right: auto;
width: 100%;
border: none;
justify-content: center;
align-items: center;
}
th, td {
text-align: center;
height:55px;
width: auto;
padding: 10px 50px;
}
/* affiliations ---------- */
.img_affil {
height: 55px;
width:auto;
padding: 0px 20px;
}
.table_affil {
display: flex;
width: 100%;
border: none;
justify-content: center;
align-items: center;
}
th, td {
align-items: center;
padding: 10px 50px;
}
/* line -------------------- */
.line {
border-bottom: 2px solid lightgray;
width: 100%;
}
.centered-image {
display: block;
margin-left: auto;
margin-right: auto;
}
.lft-algnd {
text-align: left;
}
.skirt {
width: 100%;
height: 50px;
background-color: #01101f;
border-radius: 50px; /* To create a curved bottom */
position: relative; /* Make it positioned on the webpage */
bottom: auto; /* Adjust the position from the top */
}
footer {
background-color: #000000;
color: #ffffff;
text-align: center;
position: relative;
bottom: 0;
width: 100%;
}