-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
107 lines (91 loc) · 1.55 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
/* CSS styles for the academic research website */
.fade-in {
opacity: 0;
transition: opacity 2s;
}
body {
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 0;
background-color: #fafafa;
}
header {
background-color: #f0f0f0;
padding: 20px;
text-align: center;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
header h1 {
margin: 0;
color: #333;
font-size: 32px;
font-weight: 300;
}
header h2 {
margin: 10px 0;
color: #666;
font-size: 18px;
font-weight: 300;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav ul li a {
text-decoration: none;
color: #333;
font-size: 16px;
font-weight: 300;
}
nav ul li a:hover {
color: #007bff;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
section {
padding: 40px 0;
background-color: #fff;
border: 1px solid #ddd;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
section h2 {
margin-bottom: 20px;
color: #333;
font-size: 24px;
font-weight: 300;
}
.resume-item {
margin-bottom: 20px;
}
.resume-title {
font-weight: 300;
margin-bottom: 5px;
color: #333;
font-size: 18px;
}
.resume-date {
font-style: italic;
margin-bottom: 5px;
color: #666;
font-size: 16px;
}
.resume-content {
color: #666;
font-size: 16px;
line-height: 1.5;
}
footer {
background-color: #f0f0f0;
color: #333;
text-align: center;
padding: 20px;
font-size: 14px;
}