-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (39 loc) · 782 Bytes
/
style.css
File metadata and controls
43 lines (39 loc) · 782 Bytes
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
#repos-container {
display: flex;
overflow-x: scroll;
overflow-y: hidden;
width: 100%;
height: 200px;
}
.repo-card {
position: relative;
flex: 0 0 auto;
width: 400px;
height: 200px;
margin-right: 10px;
border: 1px solid #ccc;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
border-radius: 5px;
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
background-color: white;
}
.repo-card h3 {
margin: 0;
padding: 10px;
background-color: #7c5ccd;
color: #fff;
word-break: break-all;
white-space: nowrap;
}
.repo-card p {
margin: 10px;
font-size: 14px;
}
.repo-card svg {
position: absolute;
bottom: 0px;
opacity: 0.1;
z-index: 0;
}