-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
139 lines (116 loc) · 3.04 KB
/
about.css
File metadata and controls
139 lines (116 loc) · 3.04 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/* Embedded CSS for styling */
body {
background-color: #0F0F0F;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
}
header {
background-color: black;
color: white;
padding: 10px 0;
text-align: center;
}
header nav ul {
list-style: none;
padding: 0;
}
header nav ul li {
display: inline;
margin: 0 10px;
}
header nav ul li a {
text-decoration: none;
color: white;
}
li {
color: #fff;
font-size: 18px;
text-align: center;
}
.inventory-container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
text-align: center;
}
h1 {
text-align: center;
font-size: 28px;
color: #fff;
}
h2 {
text-align: center;
font-size: 20px;
color: #fff;
}
p, h1, h2, ul {
text-align: center;
color: #fff;
}
/* Shorten all <hr> elements */
hr {
width: 50%;
margin: 10px auto;
}
footer {
background-color: black;
color: white;
text-align: center;
padding: 10px 0;
}
footer nav ul {
list-style: none;
padding: 0;
}
footer nav ul li {
display: inline;
margin: 0 10px;
}
footer nav ul li a {
text-decoration: none;
color: white;
}
/* Style the footer links and social icons */
.footer-links ul, .social-icons ul {
list-style-type: none;
padding: 0;
}
.footer-links ul li, .social-icons ul li {
display: inline-block;
margin-right: 15px;
}
.footer-links a, .social-icons a {
text-decoration: none;
color: #fff;
}
/* Remove bullets from the left side of the list items and style the bullet points and text */
.centered-list {
list-style: none;
padding: 0;
max-width: 600px;
margin: 0 auto;
text-align: left;
}
.centered-list li {
text-align: left;
margin-left: 20px;
padding-left: 10px;
position: relative;
}
/* Increase the size of social icons */
.social-icons i {
font-size: 30px;
}
/* Change bullet color to white */
.centered-list li::before {
content: "\2022"; /* Bullet point character */
color: white;
display: inline-block;
width: 1em;
margin-left: -1em;
position: absolute;
left: 0;
top: 0;
}