-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy path_tutorial_pages.scss
More file actions
46 lines (38 loc) · 868 Bytes
/
_tutorial_pages.scss
File metadata and controls
46 lines (38 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Styles for TutorialLesson component sections.
.tutorial-lesson {
// Container for the entire tutorial lesson
.tutorial-intro {
margin: 1rem 0;
.description {
font-size: 1.25rem;
margin-bottom: 1rem;
}
.intro-video {
display: flex;
justify-content: center;
background-color: var(--site-diagram-wrap-bgColor);
padding: 1rem;
border-radius: 1rem;
margin-bottom: 1.5rem;
}
}
.tutorial-divider {
border: none;
border-top: 1px solid var(--site-inset-borderColor);
margin: 3rem 1rem;
}
img {
display:flex;
justify-self: center;
max-width: 500px;
width: 100%;
}
}
// Images are centered and have a
// max width of 500px within the /learn directory
.learn-image-wrapper {
display: block;
margin: 0 auto;
max-width: 500px;
width: 100%;
}