forked from denoland/vscode_deno
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.css
More file actions
77 lines (72 loc) · 1.15 KB
/
welcome.css
File metadata and controls
77 lines (72 loc) · 1.15 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
/* Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. */
.Content {
font-size: 1rem;
line-height: 1.5rem;
margin: auto;
max-width: 60rem;
}
.Header {
align-items: center;
display: flex;
border-bottom: 0.0625rem solid #ccc;
margin-bottom: 2rem;
padding-bottom: 1.25rem;
}
.Header-logo {
width: 12rem;
margin-right: 3rem;
}
.Header-title {
font-size: 1.75rem;
}
.Cards {
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
.Card {
max-width: 40rem;
flex: 1;
}
.Card-inner {
display: flex;
flex: 1;
flex-direction: column;
padding: 0rem;
}
.Card-title {
font-size: 1.5rem;
font-weight: 500;
}
.Card-content {
margin: 0;
}
a:link,
a:visited {
text-decoration: none;
}
.Command:hover,
a:hover {
text-decoration: underline;
}
@media (min-width: 40rem) {
.Header-links {
list-style: none;
padding: 0;
}
.Header-links li {
float: left;
}
.Header-links li:not(:first-child):before {
content: "|";
color: #ccc;
padding: 0 1rem;
}
.Cards {
flex-direction: row;
justify-content: space-between;
}
.Card:not(:last-child) {
margin-right: 4rem;
}
}