-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
141 lines (121 loc) · 2.2 KB
/
styles.css
File metadata and controls
141 lines (121 loc) · 2.2 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
140
141
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.navbar {
background-color: #24292e;
color: white;
padding: 10px 20px;
display: flex;
height: 40px;
justify-content: space-between;
align-items: center;
}
.search-container {
display: flex;
align-items: center;
height: 25px;
background-color: #fff;
border-radius: 6px;
overflow: hidden;
border: 1px solid #ddd;
}
.search-bar {
border: none;
padding: 8px 12px;
font-size: 1rem;
outline: none;
width: 250px;
}
.search-bar::placeholder {
color: #aaa;
}
.search-button {
background-color: #0366d6;
border: none;
color: white;
padding: 8px 12px;
cursor: pointer;
font-size: 1rem;
}
.search-button:hover {
background-color: #0353a4;
}
.navbar ul {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
.navbar ul li {
margin: 0 10px;
}
.navbar ul li a {
color: white;
text-decoration: none;
}
.tabs {
display: flex;
border-bottom: 2px solid #ddd;
background-color: #f6f8fa;
padding: 10px;
}
.tab-btn {
padding: 10px 20px;
border: none;
background: none;
font-size: 1rem;
cursor: pointer;
}
.tab-btn.active {
border-bottom: 3px solid #0366d6;
font-weight: bold;
color: #0366d6;
}
.tab-content {
padding: 20px;
}
.tab-panel {
display: none;
}
.tab-panel.active {
display: block;
}
.footer {
background-color: #24292e;
text-align: center;
padding: 8px;
font-size: 0.9rem;
color: white;
margin-top: auto;
position: absolute;
height: 35px;
width: 100%;
bottom: 0;
}
.repo-list ul {
list-style: none;
padding: 0;
}
.repo-list li {
margin: 10px 0;
border: 1px solid #ddd;
padding: 10px;
border-radius: 5px;
transition: box-shadow 0.2s;
}
.repo-list li:hover {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.repo-list li a {
text-decoration: none;
color: #0366d6;
}
.repo-list li a h3 {
margin: 0;
}
.repo-list li a p {
margin: 5px 0 0;
color: #586069;
}