File tree 8 files changed +71
-279
lines changed 8 files changed +71
-279
lines changed Original file line number Diff line number Diff line change 3
3
description : >-
4
4
The easiest way to program microcontrollers
5
5
site_image : " https://circuitpython.org/assets/images/CircuitPythonLogo_Black.png"
6
- hero_image : CircuitPython_Hero.jpg
7
6
timezone : America/New_York
8
7
twitter_username : circuitpython
9
- github_username : adafruit
8
+ github_username : adafruit
10
9
baseurl : " "
11
10
url : " https://circuitpython.org"
12
11
paginate : 5
@@ -39,7 +38,7 @@ collections:
39
38
40
39
jekyll_get_json :
41
40
- data : libraries
42
- json : ' https://adafruit-circuit-python.s3.amazonaws.com/adabot/web/libraries.v2.json'
41
+ json : " https://adafruit-circuit-python.s3.amazonaws.com/adabot/web/libraries.v2.json"
43
42
44
43
# ## Exclude from processing.
45
44
exclude :
Original file line number Diff line number Diff line change 40
40
</ nav >
41
41
</ div >
42
42
</ div >
43
- < div class ="bottom-bar "> </ div >
44
43
</ header >
Original file line number Diff line number Diff line change 40
40
</ ul >
41
41
</ nav >
42
42
</ div >
43
- < div class ="bottom-bar "> </ div >
44
43
</ header >
Original file line number Diff line number Diff line change 1
1
#site-header {
2
2
display : grid ;
3
- grid-template-rows : 40px 1fr 3 px ;
3
+ grid-template-rows : 40px 1fr ;
4
4
grid-column : full;
5
5
6
6
.wrapper {
13
13
height : 100px ;
14
14
border-radius : 25px ;
15
15
padding : 0 25px ;
16
- margin : 20px ;
16
+ margin : 20px 0 ;
17
17
}
18
18
19
19
a .active {
24
24
.top-navigation {
25
25
@include readable-content ;
26
26
background-color : #333 ;
27
- padding-top : 10px ;
28
27
29
28
.navigation {
30
- display : flex ;
31
- align-items : flex-start ;
32
- justify-content : flex-start ;
33
-
29
+ margin-left : 15px ;
30
+ padding : 10px ;
34
31
a {
35
32
font-size : 16px ;
36
33
color : #aaa ;
34
+ margin-right : 40px ;
37
35
38
36
& :hover {
39
37
color : #fff ;
51
49
transform : translateY (0% );
52
50
}
53
51
}
54
-
55
- & > a {
56
- margin-left : 40px ;
57
- }
58
- & > span {
59
- margin-left : 35px ;
60
- a {
61
- margin-left : 5px ;
62
- }
63
- }
64
52
}
65
53
}
66
54
69
57
display : flex ;
70
58
flex-direction : row ;
71
59
align-items : center ;
60
+
61
+ .get-started {
62
+ display : flex ;
63
+ flex : 2 1 0 ;
64
+ justify-content : end ;
65
+
66
+ a {
67
+ @include rounded-button ;
68
+ }
69
+ }
72
70
}
73
71
74
72
.site-logo {
84
82
}
85
83
}
86
84
87
- .get-started {
88
- display : flex ;
89
- flex : 2 1 0 ;
90
- justify-content : end ;
91
-
92
- a {
93
- @include rounded-button ;
94
- }
95
- }
96
-
97
85
.site-navigation {
98
86
flex : 2 1 0 ;
99
87
padding : 0 0 10px 0 ;
109
97
}
110
98
}
111
99
112
- .bottom-bar {
113
- background-color : #e71c8c ;
114
- }
115
-
116
100
@media (max-width : $screen-xs-max ) {
117
101
#site-header {
118
102
display : none !important ;
Original file line number Diff line number Diff line change 1
1
#downloads-page {
2
2
padding : 50px 0 200px 0 ;
3
3
display : grid ;
4
- grid-template-columns :
5
- [full- start] minmax (1em , 1fr )
6
- [main- start] minmax (0 , 80em ) [main- end]
7
- minmax (1em , 1fr ) [full- end];
8
- grid-row-gap : 1em ;
4
+ grid-template-columns :
5
+ [full- start] minmax (1em , 1fr )
6
+ [main- start] minmax (0 , 80em ) [main- end]
7
+ minmax (1em , 1fr ) [full- end];
8
+ grid-row-gap : 1em ;
9
9
10
- & > * {
10
+ & > * {
11
11
grid-column : main;
12
12
}
13
13
14
14
h1 {
15
-
16
15
}
17
16
18
- & > p {
17
+ & > p {
19
18
font-size : 1.2em ;
20
19
margin-top : 0 ;
21
20
}
33
32
position : relative ;
34
33
35
34
& :before {
36
- font-family : ' Font Awesome\ 5 Free' ;
35
+ font-family : " Font Awesome\ 5 Free" ;
37
36
font-size : 24px ;
38
37
font-weight : 900 ;
39
38
color : #652f8f ;
112
111
border-bottom : 1px solid $gray-border ;
113
112
padding : 20px ;
114
113
115
- & > div {
114
+ & > div {
116
115
grid-column : main;
117
116
display : grid ;
118
117
grid-template-columns : repeat (3 , minmax (200px , 1fr ));
176
175
padding-top : 75% ;
177
176
position : relative ;
178
177
width : 100% ;
179
- }
180
178
181
- img {
182
- position : absolute ;
183
- top : 50% ;
184
- left : 50% ;
185
- max-width : 100% ;
186
- max-height : 100% ;
187
- transform : translate (-50% , -50% );
179
+ img {
180
+ position : absolute ;
181
+ top : 50% ;
182
+ left : 50% ;
183
+ max-width : 100% ;
184
+ max-height : 100% ;
185
+ transform : translate (-50% , -50% );
186
+ }
188
187
}
189
188
190
189
a {
222
221
text-transform : capitalize ;
223
222
}
224
223
}
225
-
226
224
}
227
225
228
226
h3 {
You can’t perform that action at this time.
0 commit comments