forked from lerna/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
189 lines (165 loc) · 2.71 KB
/
styles.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/**
* Colors:
*
* Dark purple: #5e0074
* Dark blue: #00045b
*
* Turquoise: #00fff0
* Light Blue: #677ef8
* Light purple: #cc00ff
*/
body {
margin: 0;
font: normal 1.2em/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
}
a {
color: #cc00ff;
}
img {
max-width: 100%;
height: auto;
}
hr {
border: 0 solid #eee;
border-top-width: 1px;
margin: 1rem 0;
}
pre, code {
font-family: monaco, Consolas, "Lucida Console", monospace;
}
code {
padding: 0.2em 0.4em;
font-size: 0.9em;
background: #f6f7f8;
color: #333;
border-radius: 0.25rem;
}
pre {
padding: 1rem;
border-radius: 0.25rem;
overflow: auto;
background: #f6f7f8;
color: #333;
}
pre code {
padding: 0;
background: transparent;
color: inherit;
border-radius: none;
}
.pre--command {
font-size: 1.4rem;
background-image: -webkit-linear-gradient(
90deg,
#5e0074 0%,
#00045b 100%
);
background-image: linear-gradient(
90deg,
#5e0074 0%,
#00045b 100%
);
color: white;
-webkit-font-smoothing: antialiased;
}
.pre--command::before {
content: "$ ";
}
.pre--centered {
text-align: center;
}
.hero {
padding: 1.5em 1em 2em;
text-align: center;
background-image: -webkit-linear-gradient(
40deg,
#00fff0 0%,
#677ef8 50%,
#cc00ff 100%
);
background-image: linear-gradient(
40deg,
#00fff0 0%,
#677ef8 50%,
#cc00ff 100%
);
background-size: 100%;
background-repeat: no-repeat;
color: white;
-webkit-font-smoothing: antialiased;
}
.hero__lead {
margin: 0;
font-size: 2rem;
font-weight: 200;
}
.hero__links {
margin: 2rem 0 0;
font-size: 1rem;
}
.hero__follow {
margin-top: 1rem;
font-weight: 300;
}
.hero__follow a {
color: inherit;
text-decoration: none;
padding-bottom: 0.2em;
border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.content {
position: relative;
max-width: 40rem;
margin: 3rem auto 7rem;
padding: 0 1.5rem;
text-align: justify;
color: #333;
}
.content__section {
position: relative;
padding: 0.5rem;
}
.content__section:target::before {
content: "";
display: block;
position: absolute;
top: 1.5rem;
bottom: 0;
left: -1.5rem;
width: 0.5rem;
background-image: -webkit-linear-gradient(
0deg,
#00fff0 0%,
#677ef8 50%,
#cc00ff 100%
);
background-image: linear-gradient(
0deg,
#00fff0 0%,
#677ef8 50%,
#cc00ff 100%
);
}
.text__important {
font-size: 1.4rem;
font-weight: 600;
}
.hr--large {
margin: 1rem 0;
}
.command {
margin: 1rem 0;
padding: 0rem 1rem;
/*background: #f6f7f8;*/
border: 3px solid #f6f7f8;
border-radius: 0.4rem;
}
h1 a,
h2 a,
h3 a {
text-decoration: none;
color: inherit;
}
.command:target {
border-color: #00fff0;
}