-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
131 lines (128 loc) · 2.46 KB
/
main.css
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
font-family: sans-serif;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: transparent;
}
body {
margin: 0;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
font-size: 1.25rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: .5rem;
}
h3 {
font-size: 1.75rem;
font-weight: 500;
line-height: 1.2;
}
small {
font-size: 80%;
font-weight: 400;
}
pre {
font-size: 18px;
font-family: 'Montserrat', sans-serif;
letter-spacing: .5px;
}
code {
font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
font-size: 87.5%;
color: #e83e8c;
word-wrap: break-word;
}
kbd {
background-color: #eee;
border: 1px solid #b4b4b4;
border-radius: 3px;
padding: 2px 4px;
}
.p-3 {
padding: 1rem;
}
hr {
margin-top: 1rem;
margin-bottom: 1rem;
border: 0;
border-top: 1px solid rgba(0,0,0,.1);
}
.bg-head {
background: #f7f7f7;
}
.container {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
.jumbotron {
padding: 2rem 1rem;
margin-bottom: 2rem;
background-color: #40a744;
color: #fff;
}
.display-3 {
font-size: 4rem;
font-weight: 300;
line-height: 1.2;
}
.lead, .lead li {
font-size: 1.25rem;
font-weight: 300;
}
.text-muted {
color: #6c757d!important;
}
.code {
background-color: #5d5d5d;
color: #fff;
padding: 15px 0;
border-left: 10px solid #00BCD4;
margin-left: 10px;
overflow: scroll;
}
.code span {
color: #FF9800;
}
@media screen and (min-width: 576px) {
.container {
max-width: 540px;
}
.jumbotron {
padding: 4rem 2rem;
}
}
@media screen and (min-width: 768px) {
.container {
max-width: 720px;
}
}
@media screen and (min-width: 992px) {
.container {
max-width: 920px;
}
}
@media screen and (min-width: 1200px) {
.container {
max-width: 1140px;
}
}
@media screen and (max-width: 700px) {
.display-3 {
font-size: 3rem;
}
}