-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (49 loc) · 1.24 KB
/
style.css
File metadata and controls
56 lines (49 loc) · 1.24 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
.learn-issues-extension--title {
box-sizing: border-box;
width: 100%;
max-width: 1080px;
padding: 20px;
text-align: center;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
margin: 0 auto;
color: white;
/* fallback color so the text is still readable even without the colors */
background-color: #333333;
}
.learn-issues-extension--has-no-issues .learn-issues-extension--title {
background-color: #75B74F;
}
.learn-issues-extension--has-few-issues .learn-issues-extension--title {
background-color: #f9c51a;
}
.learn-issues-extension--has-many-issues .learn-issues-extension--title {
background-color: #FF5B5B;
}
.learn-issues-extension--issue {
box-sizing: border-box;
display: flex;
align-items: center;
width: 100%;
max-width: 1080px;
padding: 15px;
margin: 0 auto;
border: 1px solid #efefef;
background-color: #f8f8f8;
color: black;
}
.learn-issues-extension--issue:last-of-type {
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
}
.learn-issues-extension--content {
box-sizing: border-box;
padding: 15px 42px 25px;
margin: 0 auto;
}
@media only screen and (min-width: 1080px) {
.learn-issues-extension--content {
padding-left: 75px;
padding-right: 75px;
}
}