-
Notifications
You must be signed in to change notification settings - Fork 640
/
Copy pathversion.module.css
101 lines (83 loc) · 1.52 KB
/
version.module.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
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
.crate-info {
display: flex;
flex-direction: column;
padding-bottom: 20px;
border-bottom: 5px solid var(--gray-border);
margin-bottom: 20px;
@media only screen and (min-width: 890px) {
flex-direction: row;
}
}
.docs {
@media only screen and (min-width: 890px) {
flex: 7;
padding-right: 20px;
max-width: 640px;
}
}
.about {
line-height: 180%;
margin-bottom: 40px;
> h3 {
margin-top: 0;
}
}
.readme {
margin-bottom: 20px;
}
.readme-spinner,
.no-readme {
padding: 40px 15px;
text-align: center;
font-size: 20px;
font-weight: 300;
code {
font-size: 18px;
font-weight: 500;
}
}
.readme-spinner > div {
--spinner-size: 35px;
}
.crate-downloads {
display: flex;
flex-wrap: wrap;
h3 { width: 100%; }
}
.stats {
flex-grow: 7;
display: flex;
flex-wrap: wrap;
}
.stat {
border-left: 1px solid var(--gray-border);
padding: 10px 20px;
display: flex;
flex-wrap: wrap;
flex-direction: column;
flex-grow: 1;
.num {
font-size: 160%;
font-weight: bold;
margin-bottom: 4px;
}
.num__align {
position: relative;
bottom: 0.4rem;
}
}
.stat-description {
composes: small from '../shared/typography.module.css';
}
.graph {
flex-grow: 10;
width: 100%;
margin: 30px 0;
padding-bottom: 20px;
h4 {
color: var(--main-color-light);
}
@media only percy {
display: none;
}
}