File tree 2 files changed +41
-2
lines changed
2 files changed +41
-2
lines changed 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"
9
9
}
10
10
</style >
11
11
12
- ## For ESP32 Famly MCUs
13
-
14
12
Install the latest MicroPython release
15
13
(<code >{% include mpVersion.txt %}</code >)
16
14
on your MCU.
You can’t perform that action at this time.
0 commit comments