This repository was archived by the owner on Sep 30, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +42
-37
lines changed Expand file tree Collapse file tree 4 files changed +42
-37
lines changed Original file line number Diff line number Diff line change 11
11
12
12
< link rel ="stylesheet " href ="/css/bootstrap.css ">
13
13
< 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 %}
14
17
</ head >
15
18
16
19
< body class ="container ">
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -60,6 +60,8 @@ the errors produced by the Rust compiler.
60
60
61
61
[ Release Notes] [ release_notes ] . A recording of changes made during each release.
62
62
63
+ [ Platform Support] [ platform_support ] . List of platforms in each support tier.
64
+
63
65
[ api ] : https://doc.rust-lang.org/std/
64
66
[ syn ] : https://doc.rust-lang.org/book/syntax-index.html
65
67
[ ref ] : https://doc.rust-lang.org/reference.html
@@ -68,6 +70,7 @@ the errors produced by the Rust compiler.
68
70
[ release_notes ] : https://github.com/rust-lang/rust/blob/stable/RELEASES.md
69
71
[ docs.rs ] : https://docs.rs
70
72
[ crates.io ] : https://crates.io
73
+ [ platform_support ] : https://forge.rust-lang.org/platform-support.html
71
74
72
75
## Project policies
73
76
Original file line number Diff line number Diff line change 1
1
---
2
2
layout : default
3
3
title : The Rust Team · The Rust Programming Language
4
+ extra_css :
5
+ - team.css
4
6
---
5
7
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
-
43
8
# The Rust Team
44
9
45
10
The Rust project is
You can’t perform that action at this time.
0 commit comments