-
Notifications
You must be signed in to change notification settings - Fork 398
Expand file tree
/
Copy pathreleases.css
More file actions
65 lines (56 loc) · 1.13 KB
/
releases.css
File metadata and controls
65 lines (56 loc) · 1.13 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
.release {
background: #3E74BD;
border-radius: 6px;
padding: 20px;
margin: 0 0 25px;
position: relative;
}
.release h1 {
color: #D6FFF8;
color: rgba(255,255,255,0.8);
color: #fff;
margin: 0 0 10px;
font-size: 24px;
font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-weight: 400;
}
.release .download {
background: #AEE4DB;
background: #fff;
background: rgba(255,255,255,0.8);
padding: 6px 8px;
color: rgba(20,44,147,0.84);
color: #000;
text-decoration: none;
font-size: 18px;
border-radius: 6px;
position: absolute;
right: 20px;
bottom: 20px;
}
.release ul.release-contents {
list-style-type: none;
color: rgba(255,255,255,1);
font-size: 13px;
margin: 0;
padding: 0;
}
.release .architecture {
color: rgba(255,255,255,0.7);
}
.release ul.release-info {
list-style-type: none;
color: rgba(255,255,255,0.7);
font-size: 13px;
margin: 0 0 10px;
padding: 0;
}
.release ul.release-info li {
display: inline-block;
}
.release ul.release-info li + li::before {
content: " · ";
}
.release ul.release-info a {
color: inherit;
}