-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
101 lines (81 loc) · 1.32 KB
/
Copy pathstyles.css
File metadata and controls
101 lines (81 loc) · 1.32 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
body {
font-family: 'Lato', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
.main-header {
background-color: #333;
padding: 20px;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 24px;
font-weight: bold;
color: #fff;
}
.nav-links {
list-style: none;
display: flex;
gap: 20px;
}
.nav-links a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
.section {
padding: 60px 20px;
max-width: 1000px;
margin: 0 auto;
}
h1 {
font-size: 2.5rem;
color: #333;
border-bottom: 2px solid #eee;
padding-bottom: 10px;
}
p, li {
font-size: 1.1rem;
line-height: 1.8;
}
.footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}
.footer p {
margin: 0;
}
.section h1 {
font-family: 'Merriweather', serif;
font-weight: 700;
text-align: center;
}
.about-section p {
text-align: justify;
}
.research-section ul {
list-style-type: square;
}
.contact-section p {
font-style: italic;
}
a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.navbar {
flex-direction: column;
}
.nav-links {
flex-direction: column;
gap: 10px;
}
}