-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
106 lines (90 loc) · 1.72 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
line-height: 1.6;
background-color: antiquewhite;
color: #333;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgb(43, 43, 40);
padding: 10px 20px;
position: sticky;
top: 0;
z-index: 1000;
}
.navbar .logo h2 {
color: aliceblue;
}
.nav-links {
list-style: none;
display: flex;
}
.nav-links li {
margin-right: 10px;
}
.nav-links a {
color: #fff;
text-decoration: double;
font-size: 1.1em;
display: flex;
align-items: center;
transition: color 0.3s ease, background-color 0.3s ease;
padding: 5px 10px;
border-radius: 50px; /* Rounded edges */
background-color: rgb(8, 7, 6); /* Slightly darker than navbar */
}
.nav-links a i {
margin-right: 8px;
border-radius: 50%; /* Make icons round */
padding: 5px;
background-color: #E1C16E; /* Slightly transparent background for icons */
}
.nav-links a:hover {
color: #000;
background-color: #efb106; /* A bit lighter on hover */
}
/* Sections */
.section {
padding: 60px 20px;
max-width: 1200px;
margin: auto;
}
.home-section {
background-color: #ffffff;
text-align: center;
}
.resume-section {
background-color: #f47200;
}
/* Headings */
h1, h2 {
margin-bottom: 20px;
color: rgb(202, 98, 12);
}
h1 {
font-size: 2.5em;
}
h2 {
font-size: 2em;
}
/* Paragraph */
p {
font-size: 1.1em;
margin-bottom: 20px;
}
footer {
background-color: rgb(45, 43, 42);
color: #fff;
text-align: center;
padding: 20px 0;
position: relative;
bottom: 0;
width: 100%;
}