File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ ---
3+
4+ @import " {{ site.theme }}" ;
5+
6+ @import url (' https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap' );
7+
8+ @mixin large {
9+ @media screen and (min-width : #{$large-breakpoint } ) {
10+ @content ;
11+ }
12+ }
13+
14+ @mixin medium {
15+ @media screen and (min-width : #{$medium-breakpoint } ) and (max-width : #{$large-breakpoint } ) {
16+ @content ;
17+ }
18+ }
19+
20+ @mixin small {
21+ @media screen and (max-width : #{$medium-breakpoint } ) {
22+ @content ;
23+ }
24+ }
25+ .project-name {
26+ margin-top : 0 ;
27+ margin-bottom : 0.1rem ;
28+
29+ @include large {
30+ font-size : 1.25rem ;
31+ }
32+
33+ @include medium {
34+ font-size : 1.25rem ;
35+ }
36+
37+ @include small {
38+ font-size : 1.75rem ;
39+ }
40+ }
41+
Original file line number Diff line number Diff line change @@ -9,8 +9,6 @@ title: "MicroPython Easy Install"
99 }
1010</style >
1111
12- ## For ESP32 Famly MCUs
13-
1412Install the latest MicroPython release
1513(<code >{% include mpVersion.txt %}</code >)
1614on your MCU.
You can’t perform that action at this time.
0 commit comments