Skip to content
This repository was archived by the owner on Sep 30, 2020. It is now read-only.

Commit 95ae8dd

Browse files
authored
Merge pull request #10 from rust-lang/master
17.3.31.20.23
2 parents cded8a5 + 59895de commit 95ae8dd

File tree

4 files changed

+42
-37
lines changed

4 files changed

+42
-37
lines changed

_layouts/basic.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111

1212
<link rel="stylesheet" href="/css/bootstrap.css">
1313
<link rel="stylesheet" href="/css/style.css">
14+
{% for css_name in page.extra_css %}
15+
<link rel="stylesheet" href="/css/{{ css_name }}">
16+
{% endfor %}
1417
</head>
1518

1619
<body class="container">

css/team.css

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
.headshot {
2+
border: 1px solid #888;
3+
width: 140px;
4+
}
5+
6+
.person {
7+
display: inline-block;
8+
position: relative;
9+
margin-bottom: 20px;
10+
}
11+
.lead { font-weight: bold; }
12+
.lead .name::after { content: " (lead)"; }
13+
.details {
14+
display: none;
15+
position: absolute;
16+
bottom: 0;
17+
left: 0;
18+
right: 0;
19+
background: rgba(0, 0, 0, 0.5);
20+
color: white;
21+
font-weight: normal;
22+
}
23+
.person:hover .details {
24+
display: block;
25+
}
26+
27+
.headshots {
28+
text-align: center;
29+
margin: 0px auto;
30+
padding: 0;
31+
width: 700px;
32+
max-width: 100%;
33+
list-style: none;
34+
}

en-US/documentation.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ the errors produced by the Rust compiler.
6060

6161
[Release Notes][release_notes]. A recording of changes made during each release.
6262

63+
[Platform Support][platform_support]. List of platforms in each support tier.
64+
6365
[api]: https://doc.rust-lang.org/std/
6466
[syn]: https://doc.rust-lang.org/book/syntax-index.html
6567
[ref]: https://doc.rust-lang.org/reference.html
@@ -68,6 +70,7 @@ the errors produced by the Rust compiler.
6870
[release_notes]: https://github.com/rust-lang/rust/blob/stable/RELEASES.md
6971
[docs.rs]: https://docs.rs
7072
[crates.io]: https://crates.io
73+
[platform_support]: https://forge.rust-lang.org/platform-support.html
7174

7275
## Project policies
7376

en-US/team.md

Lines changed: 2 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,10 @@
11
---
22
layout: default
33
title: The Rust Team &middot; The Rust Programming Language
4+
extra_css:
5+
- team.css
46
---
57

6-
<style type="text/css">
7-
.headshot {
8-
border: 1px solid #888;
9-
width: 140px;
10-
}
11-
12-
.person {
13-
display: inline-block;
14-
position: relative;
15-
margin-bottom: 20px;
16-
}
17-
.lead { font-weight: bold; }
18-
.lead .name::after { content: " (lead)"; }
19-
.details {
20-
display: none;
21-
position: absolute;
22-
bottom: 0;
23-
left: 0;
24-
right: 0;
25-
background: rgba(0, 0, 0, 0.5);
26-
color: white;
27-
font-weight: normal;
28-
}
29-
.person:hover .details {
30-
display: block;
31-
}
32-
33-
.headshots {
34-
text-align: center;
35-
margin: 0px auto;
36-
padding: 0;
37-
width: 700px;
38-
max-width: 100%;
39-
list-style: none;
40-
}
41-
</style>
42-
438
# The Rust Team
449

4510
The Rust project is

0 commit comments

Comments
 (0)