forked from angelabauer/python-coding-challenges
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMap.css
More file actions
77 lines (70 loc) · 1.16 KB
/
Copy pathMap.css
File metadata and controls
77 lines (70 loc) · 1.16 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
.map {
height: 100%;
box-sizing: border-box;
width: 0;
position: fixed;
z-index: 1;
top: 0;
right: 0;
background-color: #eee;
overflow-x: hidden;
padding-top: 60px;
transition: 0.5s;
}
.map button {
background-color: transparent;
border: none;
margin: 0;
padding: 0;
text-align: left;
display: inline-block;
}
.map a {
display: block;
}
.map a, .map button {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
transition: 0.3s;
}
.map a:hover, .offcanvas a:focus,
.map button:hover
{
color: #006400;
}
.map .close-map {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
@media screen and (max-height: 450px) {
.map {padding-top: 15px;}
.map a {font-size: 18px;}
}
.challenge-list {
border-top: 2px solid #006400;
}
.chapter {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
}
.chapter-title {
color: #006400;
font-size: 1.5rem;
padding-left: 10px;
}
.lesson-list {
list-style: none;
align-self: left;
padding-left: 5px;
margin-top: 0;
}
.lesson-list-element i {
color: #818181
}