forked from coppolaemilio/gamemaker-godot-dictionary
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.scss
67 lines (57 loc) · 890 Bytes
/
style.scss
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
---
---
@import url('https://fonts.googleapis.com/css?family=Roboto');
html {
font-family: 'Roboto', sans-serif;
}
body {
max-width: 90%;
margin: 0 auto;
font-size: 19px;
line-height: 1.5;
color: #24292e;
}
@media (min-width: 768px) {
body {
max-width: 70%;
}
}
h2 {
margin-top: 40px;
}
p img {
width: 100%;
}
hr {
border: 0;
padding: 1px;
margin: 42px 0px;
background-color: #efecec;
}
pre {
background-color: #f6f8fa;
color: #24292e;
padding: 8px;
border-left: 3px solid #7d99ff;
font-family: "Lucida Console", monospace;
overflow: auto;
}
blockquote {
background-color: #efecec;
margin: 0;
padding: 30px 30px 20px 30px;
border-left: 3px solid gray;
h2 {
margin-top: 0;
}
}
p code {
background-color: #f7f3ee;
padding: 4px;
color: #F44336;
border-radius: 3px;
}
a {
color: #0366d6;
text-decoration: none;
}