-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNavbar.css
More file actions
104 lines (80 loc) · 1.33 KB
/
Navbar.css
File metadata and controls
104 lines (80 loc) · 1.33 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #f4f6f9;
color: #333;
line-height: 1.6;
}
header {
background-color: #2c3e50;
color: white;
text-align: center;
padding: 20px;
}
header img {
border-radius: 50%;
margin-bottom: 10px;
border: 3px solid white;
}
header h1 {
margin-bottom: 5px;
}
header p {
font-size: 14px;
}
nav {
background-color: #34495e;
padding: 10px 0;
text-align: center;
}
nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-weight: bold;
font-size: 14px;
}
nav a:hover {
color: #f1c40f;
}
main {
width: 80%;
margin: 20px auto;
}
section {
background-color: white;
padding: 20px;
margin-bottom: 20px;
border-radius: 6px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
section h2 {
margin-bottom: 10px;
color: #2c3e50;
border-bottom: 2px solid #eee;
padding-bottom: 5px;
}
ul, ol {
margin-left: 20px;
margin-top: 10px;
}
li {
margin-bottom: 5px;
}
blockquote {
margin-top: 10px;
padding: 10px;
background-color: #f9f9f9;
border-left: 4px solid #2c3e50;
font-style: italic;
}
#Contact ul {
list-style-type: none;
}
#Contact li {
margin-bottom: 8px;
}