-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.css
53 lines (45 loc) · 938 Bytes
/
popup.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
@import url("https://fonts.googleapis.com/css2?family=Merriweather&family=Open+Sans&family=Roboto&family=Roboto+Condensed&display=swap");
* {
font-family: "Roboto", sans-serif;
}
body {
border-radius: 10px;
background: #ffd000;
color: black;
}
.container {
padding: 1rem 0.5rem;
height: 500px;
width: 400px;
}
#linksList {
padding-left: 0;
}
.repo-link {
width: 100%;
list-style: none;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
padding: 10px 0;
color: black;
}
.repo-link > a:visited,
.repo-link > a {
color: black;
text-decoration: none;
}
.btn {
border: 1px solid white;
border-radius: 10px;
padding: 5px 10px;
cursor: pointer;
background-color: white;
font-size: 12px;
box-shadow: 1px 1px 5px white;
transition: 100ms;
}
.btn:hover {
transform: translateY(-1px);
box-shadow: 2px 2px 5px white;
}