-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
94 lines (81 loc) · 1.24 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
/* General Styling */
body {
font-family: "Arial", sans-serif;
line-height: 1.6;
margin: 0 auto;
padding: 20px;
max-width: 800px;
background-color: #f9f9f9;
color: #333;
}
/* Header Styling */
header {
text-align: center;
margin-bottom: 30px;
}
header h1 {
font-size: 2.5em;
margin-bottom: 5px;
}
header p {
font-size: 1.1em;
color: #666;
}
/* Section Styling */
section {
margin: 20px 0;
padding: 15px;
background: #fff;
border-left: 5px solid #007bff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
/* Headings */
h2 {
font-size: 1.8em;
margin-bottom: 10px;
color: #007bff;
border-bottom: 1px solid #ddd;
padding-bottom: 5px;
}
h3 {
font-size: 1.4em;
margin-top: 15px;
}
/* Lists */
ul {
margin: 10px 0;
padding-left: 20px;
}
ul li {
margin-bottom: 5px;
}
/* Links */
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Skills Section */
.skills {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 10px;
}
.skill-badge {
background: #007bff;
color: white;
padding: 5px 10px;
border-radius: 5px;
font-size: 0.9em;
}
/* Footer */
footer {
text-align: center;
font-size: 0.9em;
color: #777;
margin-top: 30px;
}