-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (58 loc) · 1.3 KB
/
styles.css
File metadata and controls
62 lines (58 loc) · 1.3 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
background-color: #f4f4f4;
}
header {
background: #333;
color: white;
padding: 10px;
}
nav ul {
list-style: none;
background: #444;
padding: 10px;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
}
section {
padding: 20px;
margin: 20px;
background: white;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
footer {
background: #333;
color: white;
padding: 10px;
margin-top: 20px;
}
.centered-list {
list-style-type: disc; /* Ensures bullets appear */
list-style-position: inside; /* Keeps bullets close to text */
text-align: center; /* Centers the text */
padding: 0;
display: inline-block; /* Ensures list stays centered */
}
.centered-list li {
text-align: left; /* Aligns text properly within the centered list */
margin: 5px 0;
}
.centered-skills {
display: flex;
justify-content: center; /* Centers the entire list block */
text-align: left; /* Aligns text to the left inside the centered block */
}
.centered-skills ul {
list-style-type: disc; /* Keeps bullet points */
padding-left: 20px; /* Adjusts bullet spacing */
}