-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (90 loc) · 1.7 KB
/
Copy pathstyle.css
File metadata and controls
107 lines (90 loc) · 1.7 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
105
106
107
/* Custom Stylesheet */
body {
background-color: #f5f5f5;
color: #333;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.navbar {
background-color: #222;
color: #fff;
padding: 1em 2em;
}
.navbar-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.navbar-brand {
font-size: 1.5em;
}
.navbar-menu {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
.navbar-menu li {
margin-left: 1em;
}
.navbar-menu a {
color: #fff;
text-decoration: none;
}
.navbar-menu a:hover {
text-decoration: underline;
}
.container {
width: 80%;
max-width: 1200px;
margin: 2em auto;
padding: 0 1em;
}
h2, h3, h4 {
color: #0056b3;
}
.cta-button, .learn-more-button {
background-color: #007bff;
color: #fff;
border: none;
padding: 0.75em 1.5em;
border-radius: 4px;
cursor: pointer;
font-size: 1em;
text-align: center;
display: inline-block;
transition: background-color 0.3s ease;
}
.cta-button:hover, .learn-more-button:hover {
background-color: #0056b3;
}
.profile-pic {
max-width: 120px;
border-radius: 50%;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-bottom: 1em;
}
.about-me {
display: flex;
align-items: center;
gap: 1.5em;
margin: 2em 0;
}
.about-me img {
border: 3px solid #ddd;
padding: 4px;
}
.footer {
background-color: #222;
color: #fff;
text-align: center;
padding: 1em;
}
.footer a {
color: #4db8ff;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}