-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
78 lines (66 loc) · 1.2 KB
/
index.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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
section {
background-color: #fff;
padding: 20px;
margin: 20px;
border: 1px solid #ddd;
border-radius: 5px;
}
h1 {
text-align: center;
font-size: 24px;
}
h2 {
font-size: 18px;
}
h3 {
font-size: 16px;
}
/* Style the navigation table */
table {
width: 100%;
border-collapse: collapse;
}
td {
text-align: center;
padding: 10px;
border: 1px solid #556B2F;
background-color: #FFEBCD;
}
/* Style social media icons */
a img {
margin: 5px;
vertical-align: middle;
}
/* Footer styling */
footer {
text-align: center;
background-color: #333;
color: #fff;
padding: 10px;
}
/* GitHub stats table styling */
.github-stats-table {
width: fit-content;
border-collapse: collapse;
}
.github-stats-table td {
border: 1px solid #ddd;
padding: 8px;
text-align: center;
background-color: transparent;
}
/* Responsive layout adjustments */
@media (max-width: 768px) {
section {
margin: 10px;
}
h1 {
font-size: 20px;
}
}