Skip to content

Commit 0802ba7

Browse files
committed
Experienting with Cayman style
1 parent 11a820a commit 0802ba7

File tree

2 files changed

+41
-2
lines changed

2 files changed

+41
-2
lines changed

assets/css/style.scss

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+

index.md

-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ title: "MicroPython Easy Install"
99
}
1010
</style>
1111

12-
## For ESP32 Famly MCUs
13-
1412
Install the latest MicroPython release
1513
(<code>{% include mpVersion.txt %}</code>)
1614
on your MCU.

0 commit comments

Comments
 (0)