forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.module.css
67 lines (58 loc) · 1.05 KB
/
styles.module.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
.container {
padding: 4rem 1rem;
max-width: 50rem;
margin: 0 auto;
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.container h1 {
font-weight: 800;
}
.container p {
margin: 1.5rem 0;
line-height: 1.5;
}
.container button {
border-radius: 4px;
height: 40px;
padding: 0.5rem 1rem;
font-size: 16px;
border: none;
transition: 0.25s all ease;
background-color: #eaeaea;
font-size: 14px;
font-weight: 600;
color: #111;
}
.container button:hover {
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
}
.container a {
text-decoration: none;
color: #0070f3;
}
.inlineCode {
color: #be00ff;
font-size: 16px;
white-space: pre-wrap;
}
.inlineCode::before,
.inlineCode::after {
content: '`';
}
.code {
margin-top: 16px;
display: block;
background: #222222;
border-radius: 8px;
padding: 16px;
color: white;
font-size: 16px;
line-height: 1.4;
}
.links {
margin-top: 16px;
color: #9c9c9c;
}