-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
95 lines (78 loc) · 1.44 KB
/
Copy pathglobal.css
File metadata and controls
95 lines (78 loc) · 1.44 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
body {
margin: 0;
font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-size: 14px;
line-height: 1.5;
color: #000;
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 0.5em 0;
font-weight: 400;
line-height: 1.2;
}
h1 {
font-size: 2em;
}
a {
color: inherit;
}
code {
font-family: menlo, inconsolata, monospace;
font-size: calc(1em - 2px);
color: #555;
/* background-color: #f0f0f0; */
padding: 0.2em 0.4em;
border-radius: 2px;
font-size: 18px;
line-height: 28px;
}
.container {
max-width: 1280px;
margin: 0 auto;
width: 100%;
}
.container-fluid {
max-width: 100%;
width: 100%;
}
.d-flex {
display: flex;
}
.justify-between {
justify-content: space-between;
}
.justify-center {
justify-content: center;
}
.align-center {
align-items: center;
}
pre[class*="language-"] {
background-color: #000;
border: 0;
box-shadow: none;
padding: 1.5em;
border-radius: 6px;
}
.token.boolean, .token.number, .token.function {
color: #55b5db!important;
}
.token.punctuation {
color: white!important;
opacity: 1!important;
}
code[class*="language-"], pre[class*="language-"] {
color: #a074c4!important;
text-shadow: none!important;
}
.token.keyword, .token.property, .token.selector, .token.constant, .token.symbol, .token.builtin {
color: hsl(53, 72%, 63%)!important;
}
button {
outline: none;
}
@media (min-width: 400px) {
body {
font-size: 16px;
}
}