-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
144 lines (119 loc) · 2.5 KB
/
styles.css
File metadata and controls
144 lines (119 loc) · 2.5 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
144
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
line-height: 1.6;
font-size: 1.2rem; /* Slightly larger base font size for easier reading */
color: #333;
}
header {
background-color: #f8f9fa;
text-align: center;
padding: 20px 0;
border-bottom: 1px solid #ddd;
}
h1 {
font-size: 2.2rem; /* Slightly larger title font */
color: #333;
}
section {
padding: 20px;
max-width: 800px;
margin: 20px auto;
}
#about {
display: flex;
align-items: center;
}
.profile {
flex: 1;
}
.profile-pic {
width: 240px; /* Slightly larger profile image */
height: 240px;
border-radius: 15px; /* Rounded corners instead of a circle */
object-fit: cover;
}
.intro {
flex: 2;
padding-left: 20px;
font-size: 1.2rem; /* Slightly larger font for intro text */
}
.intro p {
margin-bottom: 10px;
}
.research-area {
margin-bottom: 20px;
}
h2 {
font-size: 1.6rem; /* Slightly larger subheading font */
color: #555;
border-bottom: 2px solid #ddd;
padding-bottom: 10px;
margin-bottom: 20px;
}
h3 {
font-size: 1.3rem;
margin-top: 10px;
color: #444;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Hide lists by default */
.toggle-list {
display: none;
margin-top: 10px;
}
/* Add pointer style and larger triangle symbol for toggle titles */
.toggle-title {
cursor: pointer;
color: #007bff;
display: flex;
align-items: center;
font-weight: bold;
}
.triangle {
display: inline-block;
font-size: 1.2rem; /* Larger triangle */
transition: transform 0.3s ease; /* Smooth rotation */
margin-right: 8px;
}
.triangle.open {
transform: rotate(90deg); /* Rotate triangle down when expanded */
}
.toggle-title:hover {
text-decoration: underline;
}
.social-icons {
margin-top: 10px;
}
.social-icons a {
color: #333;
font-size: 1.5em;
margin-right: 15px;
transition: color 0.3s ease;
text-decoration: none;
}
.social-icons a:hover {
color: #007bff; /* Change to your preferred hover color */
}
@media (max-width: 768px) {
#about {
flex-direction: column;
text-align: center;
}
.profile-pic {
margin-bottom: 20px;
}
.intro {
padding-left: 0;
}
}