-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathHome.module.less
More file actions
62 lines (58 loc) · 908 Bytes
/
Home.module.less
File metadata and controls
62 lines (58 loc) · 908 Bytes
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
.main {
padding: 4rem 0;
min-height: 100vh;
}
.imagePlaceholder {
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
border-radius: 16px;
background: #f0f0f0;
width: 80%;
max-width: 400px;
height: 300px;
}
.title {
font-size: 4rem;
line-height: 1.15;
a {
&:hover,
&:focus,
&:active {
text-decoration: underline;
}
}
}
.description {
margin: 4rem 0;
line-height: 1.5;
}
.code {
padding: 0.75rem;
font-size: 1.1rem;
font-family:
Menlo,
Monaco,
Lucida Console,
Liberation Mono,
DejaVu Sans Mono,
Bitstream Vera Sans Mono,
Courier New,
monospace;
}
.card {
transition:
color 0.15s ease,
border-color 0.15s ease;
color: inherit;
&:hover,
&:focus,
&:active {
border-color: #0070f3;
color: #0070f3;
}
p {
line-height: 1.5;
}
}