-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (48 loc) · 784 Bytes
/
style.css
File metadata and controls
53 lines (48 loc) · 784 Bytes
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
h1{
text-align: center;
font-size: 50px;
margin-top: 50px;
font-family: "Playfair Display";
}
h3{
text-align: center;
font-size: 25px;
font-weight: normal;
color: #4b4b4d;
margin-bottom: 100px;
}
h1, h3{
margin: 0.5;
}
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #f0f0f0;
text-align: center;
padding: 10px 0;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
z-index: 1000;
}
.navbar ul {
list-style: none;
padding: 0;
margin: 0;
display: inline-flex;
gap: 30px;
}
.navbar a {
text-decoration: none;
color: #333;
font-weight: bold;
font-family: 'Arial', sans-serif;
font-size: 18px;
transition: color 0.3s;
}
.navbar a:hover {
color: #858a8c;
}
body {
padding-top: 60px;
}