-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (88 loc) · 1.89 KB
/
style.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
95
96
97
98
99
100
101
102
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4; /* Light gray background */
}
header {
background-color: #fff; /* White header */
color: #333;
text-align: center;
padding: 1em 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
section {
max-width: 800px;
margin: 2em auto;
padding: 2em;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1, h2 {
color: #333;
}
p {
color: #555;
line-height: 1.6;
}
a {
color: #007BFF; /* Blue link color */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.github-button {
background-color: #4CAF50; /* Dark green button */
color: #fff;
padding: 10px 15px;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
}
.contributors-section {
margin-top: 20px;
}
.contributor {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.contributor img {
border-radius: 50%;
margin-right: 10px;
max-width: 50px; /* Set maximum width for responsiveness */
height: auto; /* Maintain aspect ratio */
}
footer {
background-color: #fff; /* White footer */
color: #333;
text-align: center;
padding: 1em 0;
box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
position: fixed;
bottom: 0;
width: 100%;
}
.contributors-button {
background-color: red;
border-radius: 20px;
padding: 10px;
color: white;
border: 2px solid green;
}
.contributorsbutton {
text-align: center;
color: white;
}
.contributorsbutton a {
text-decoration: none;
}
.contributors-button:hover {
background-color: green;
border-radius: 20px;
padding: 10px;
border: 2px solid red;
}