-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (44 loc) · 950 Bytes
/
style.css
File metadata and controls
51 lines (44 loc) · 950 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
47
48
49
50
51
main{
display: grid;
grid-template-columns: 200px auto;
padding: 10px;
margin-top: 20px;
justify-content: center;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.documentation{
grid-column-start: 1;
grid-column-end: 3;
background-color: #2C3E50;
color: #FBFCFC;
}
.topics{
background-color: #E5E7E9 ;
}
nav a{
display: flex;
text-decoration: none;
color: black;
padding: 20px;
}
nav a:hover{
background-color: #2C3E50;
color: #FBFCFC;
}
.scroll{
overflow-y:scroll;
scroll-behavior: smooth;
display: block;
overflow: hidden;
background-color: #ABB2B9 ;
}
h1, p, li, h2, h3 , a{
padding-left: 20px;
}
.page{
height: 100%;
}
.page h2{
padding-top: 20px;
text-align: center;
}