-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgreeting.style.js
58 lines (40 loc) · 953 Bytes
/
greeting.style.js
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
import styled from "styled-components";
export const Background = styled.div`
margin-top: 2rem;
text-align: center;
background-color: var(--color-main);
height: 19rem;
width: 100%;
border-radius: 8px;
h1 {
font-family: "Prata", serif;
font-size: 3rem;
padding: 1.5rem 0 0.75rem 0;
}
p {
font-size: 1.5rem;
margin-bottom: 1.2rem;
}
button {
background-color: #1da1f2;
border: none;
border-radius: 5px;
font-size: 1.2rem;
color: white;
cursor: pointer;
padding: 0.5rem 1.5rem;
}
`;
export const TextContainer = styled.div`
display: inline-block;
padding: 2rem;
margin-top: 8rem;
border-radius: 5px;
background-color: white;
-webkit-box-shadow: 0px 5px 30px -7px rgba(173, 173, 173, 0.54);
-moz-box-shadow: 0px 5px 30px -7px rgba(173, 173, 173, 0.54);
box-shadow: 0px 5px 30px -7px rgba(173, 173, 173, 0.54);
h1 {
margin-bottom: 0.5rem;
}
`;