-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
78 lines (67 loc) · 1.15 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
}
/* Navigation Bar design */
nav {
background-color: #333;
color: white;
padding: 1rem;
}
nav ul {
list-style-type: none;
display: flex;
justify-content: space-around;
}
nav a {
color: white;
text-decoration: none;
}
nav a:hover {
text-decoration: underline;
}
/* Header design */
header {
background-color: #555;
color: white;
text-align: center;
padding: 2rem;
}
/*Design for Sections */
section {
margin: 2rem;
padding: 1rem;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h2 {
color: #333;
margin-bottom: 1rem;
}
/*Design for Footer */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1rem;
margin-top: 2rem;
}
/*github logo rendering*/
.github-logo {
width: 30px;
height: 30px;
margin-top: 10px;
filter: invert(1);
transition: transform 0.3s;
}
.github-logo:hover {
transform: scale(1.1);
}