forked from react/react-native-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.module.css
More file actions
64 lines (57 loc) · 1.19 KB
/
Copy pathstyles.module.css
File metadata and controls
64 lines (57 loc) · 1.19 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
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
.wrapper {
text-align: center;
overflow: hidden;
position: relative;
}
.background {
position: absolute;
width: 100%;
height: 100%;
background-image: url("/img/homepage/cta-bg-pattern.png");
background-size: cover;
background-position: center center;
opacity: 0.1;
}
.container {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1rem;
padding: 2rem;
margin: 8rem auto;
max-width: 600px;
}
.title {
font-size: 40px;
line-height: 140%;
}
.primaryButton {
background-color: var(--home-button-primary);
color: var(--home-button-primary-text);
border: none;
padding: 10px 24px;
border-radius: 99rem;
font-weight: bold;
font-size: 17px;
display: flex;
align-items: center;
justify-content: center;
gap: 0.35rem;
}
.primaryButton:hover {
background-color: var(--home-button-primary-hover);
color: var(--home-button-primary-text);
}
@media (max-width: 600px) {
.background {
display: none;
}
}